master
toml 27 lines 831 Bytes
Raw
1 [package]
2 name = "admob-reactjs"
3 version = "0.1.0"
4 description = "A Tauri App"
5 authors = ["you"]
6 edition = "2021"
7
8 # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
9
10 [lib]
11 # The `_lib` suffix may seem redundant but it is necessary
12 # to make the lib name unique and wouldn't conflict with the bin name.
13 # This seems to be only an issue on Windows, see https://github.com/rust-lang/cargo/issues/8519
14 name = "admob_reactjs_lib"
15 crate-type = ["staticlib", "cdylib", "rlib"]
16
17 [build-dependencies]
18 tauri-build = { version = "2", features = [] }
19
20 [dependencies]
21 tauri = { version = "2", features = [] }
22 tauri-plugin-opener = "2"
23 serde = { version = "1", features = ["derive"] }
24 serde_json = "1"
25
26 [target.'cfg(target_os = "android")'.dependencies]
27 tauri-plugin-admob = { path = "../../../" }