| 1 | [package] |
| 2 | name = "not-wallet" |
| 3 | version = "0.0.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 | name = "not_wallet_lib" |
| 12 | crate-type = ["staticlib", "cdylib", "rlib"] |
| 13 | |
| 14 | [build-dependencies] |
| 15 | tauri-build = { version = "2.0.0-beta", features = [] } |
| 16 | |
| 17 | [dependencies] |
| 18 | tauri = { version = "2.0.0-beta", features = [] } |
| 19 | tauri-plugin-shell = "2.0.0-beta" |
| 20 | serde_json = "1.0" |
| 21 | |
| 22 | [features] |
| 23 | # this feature is used for production builds or when `devPath` points to the filesystem |
| 24 | # DO NOT REMOVE!! |
| 25 | custom-protocol = ["tauri/custom-protocol"] |