master
toml 25 lines 610 Bytes
Raw
1 [package]
2 name = "tauri-app"
3 version = "0.0.0"
4 description = "A Tauri App"
5 authors = ["you"]
6 license = ""
7 repository = ""
8 edition = "2021"
9 rust-version = "1.70"
10
11 [lib]
12 name = "tauri_app_lib"
13 crate-type = ["staticlib", "cdylib", "lib"]
14
15 # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
16
17 [build-dependencies]
18 tauri-build = { version = "2", default-features = false , features = [] }
19
20 [dependencies]
21 tauri = { version = "2", features = [] }
22 tauri-plugin-devtools = "2"
23
24 [target.'cfg(target_os = "android")'.dependencies]
25 tauri-plugin-admob = { path = "../../../" }