-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
37 lines (33 loc) · 864 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
[package]
name = "capacitor_bindings"
version = "0.12.2"
edition = "2021"
authors = ["Mark Wainwright <[email protected]>"]
description = "Capactior bindings to help you build android and ios apps with rust."
documentation = "https://docs.rs/capacitor_bindings"
repository = "https://github.com/wainwrightmark/capacitor_bindings"
readme = "README.md"
keywords = ["capacitor", "bindings", "mobile", "app", "web" ]
categories = [
# "api-bindings"
]
license = "MIT"
[dependencies]
js-sys = "0.3"
serde = { version = "1", features = ["derive"] }
serde-wasm-bindgen = "0.6"
serde_repr = "0.1"
serde_with = "3"
typed-builder = "0.20"
wasm-bindgen = { version = "0.2" }
wasm-bindgen-futures = "0.4"
[dev-dependencies]
serde_test = "1"
serde_json = "1"
[features]
web =[]
android = []
ios = []
review_plugin = []
game_plugin = []
admob_plugin = []