| 1 | [package] |
| 2 | name = "tauri-on-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/tauri-on-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.5", 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"] |