| 1 | [package] |
| 2 | name = "svara" |
| 3 | version = "0.4.0" |
| 4 | description = "Svara is a simple and lightweight code editor for Linux, Windows, and MacOS." |
| 5 | authors = ["mellobacon", "setoelkahfi"] |
| 6 | license = "GPL-3.0" |
| 7 | repository = "https://github.com/setoelkahfi/svara" |
| 8 | edition = "2021" |
| 9 | |
| 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 = "2", features = [] } |
| 14 | |
| 15 | [dependencies] |
| 16 | serde_json = "1.0" |
| 17 | serde = { version = "1.0", features = ["derive"] } |
| 18 | tauri = { version = "2", features = [] } |
| 19 | trash = "3.0.2" |
| 20 | encoding_rs = "0.8.32" |
| 21 | time = "0.3.28" |
| 22 | log = "^0.4" |
| 23 | infer = "0.3" |
| 24 | tokio = { version = "1", features = ["time"] } |
| 25 | tauri-plugin-pty = "0.1.0" |
| 26 | tauri-plugin-process = "2" |
| 27 | tauri-plugin-store = { version = "2" } |
| 28 | tauri-plugin-log = { version = "2" } |
| 29 | tauri-plugin-fs = { version = "2", features = ["watch"] } |
| 30 | tauri-plugin-opener = "2" |
| 31 | |
| 32 | [features] |
| 33 | # by default Tauri runs in production mode |
| 34 | # when `tauri dev` runs it is executed with `cargo run --no-default-features` if `devPath` is an URL |
| 35 | default = [ "custom-protocol" ] |
| 36 | # this feature is used used for production builds where `devPath` points to the filesystem |
| 37 | # DO NOT remove this |
| 38 | custom-protocol = [ "tauri/custom-protocol" ] |