| 1 | [package] |
| 2 | name = "app" |
| 3 | version = "0.2.0" |
| 4 | description = "SplitFire AI" |
| 5 | authors = ["setoelkahfi@gmail.com"] |
| 6 | license = "MIT" |
| 7 | repository = "https://github.com/setoelkahfi/splitfire-desktop" |
| 8 | default-run = "app" |
| 9 | edition = "2021" |
| 10 | # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html |
| 11 | |
| 12 | [build-dependencies] |
| 13 | tauri-build = { version = "1.5", features = [] } |
| 14 | |
| 15 | [dependencies] |
| 16 | anyhow = "1" |
| 17 | chrono = "0.4.31" |
| 18 | futures = "0.3" |
| 19 | home = "0.5.4" |
| 20 | hound = "3" |
| 21 | log = "^0.4" |
| 22 | once_cell = "1.18.0" |
| 23 | reqwest = { version = "0.12", features = ["json"] } |
| 24 | ringbuf = "0.3" |
| 25 | rodio = "0.17" |
| 26 | serde = { version = "1.0", features = ["derive"] } |
| 27 | serde_json = "1" |
| 28 | serde_repr = "0.1" |
| 29 | tauri = { version = "1.7.1", features = [] } |
| 30 | tauri-plugin-log = { git = "https://github.com/tauri-apps/plugins-workspace", branch = "v1", features = ["colored"] } |
| 31 | tauri-plugin-store = { git = "https://github.com/tauri-apps/plugins-workspace", branch = "v1" } |
| 32 | url-builder = "0.1.1" |
| 33 | uri-template-system = "=0.1.0" |
| 34 | |
| 35 | # Local crates |
| 36 | crate_error_codes = { path = "./../../../lib/crate_error_codes" } |
| 37 | |
| 38 | [features] |
| 39 | # by default Tauri runs in production mode |
| 40 | # when `tauri dev` runs it is executed with `cargo run --no-default-features` if `devPath` is an URL |
| 41 | default = ["custom-protocol"] |
| 42 | # this feature is used for production builds where `devPath` points to the filesystem |
| 43 | # DO NOT remove this |
| 44 | custom-protocol = ["tauri/custom-protocol"] |