| 1 | [package] |
| 2 | name = "streetcut" |
| 3 | version = "1.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 | # 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 = "streetcut_lib" |
| 15 | crate-type = ["staticlib", "cdylib", "rlib"] |
| 16 | |
| 17 | [dependencies] |
| 18 | dotenv_codegen = "0.15" |
| 19 | serde = { version = "1", features = ["derive"] } |
| 20 | serde_json = "1" |
| 21 | serde_qs = "0.15" |
| 22 | smbcloud-model = "0.3" |
| 23 | smbcloud-networking-account = "0.3" |
| 24 | tauri = { version = "2", features = [] } |
| 25 | tauri-plugin-haptics = "2" |
| 26 | tauri-plugin-opener = "2" |
| 27 | tauri-plugin-oauth = "2" |
| 28 | tauri-plugin-store = "2" |
| 29 | tauri-plugin-log = "2" |
| 30 | |
| 31 | [build-dependencies] |
| 32 | tauri-build = { version = "2", features = [] } |