feature/share-libs
toml 27 lines 919 Bytes
Raw
1 [package]
2 name = "tower-of-bazel"
3 version = "0.1.0"
4 description = "Tauri on Bazel with NextJS 14."
5 authors = ["Seto Elkahfi"]
6 license = "GNU GENERAL PUBLIC LICENSE"
7 repository = "https://github.com/setoelkahfi/tower-of-bazel"
8 edition = "2021"
9 rust-version = "1.77"
10
11 # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
12
13 [build-dependencies]
14 tauri-build = { version = "1.5", features = [] }
15
16 [dependencies]
17 serde_json = "1.0"
18 serde = { version = "1.0", features = ["derive"] }
19 tauri = { version = "1.7.1", features = ["shell-open"] }
20
21 [features]
22 # by default Tauri runs in production mode
23 # when `tauri dev` runs it is executed with `cargo run --no-default-features` if `devPath` is an URL
24 default = ["custom-protocol"]
25 # this feature is used used for production builds where `devPath` points to the filesystem
26 # DO NOT remove this
27 custom-protocol = ["tauri/custom-protocol"]