| 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 = "" |
| 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 = "1.5.6", features = [] } |
| 14 | |
| 15 | [dependencies] |
| 16 | serde_json = "1.0" |
| 17 | serde = { version = "1.0", features = ["derive"] } |
| 18 | tauri = { version = "1.5.4", features = [ "process-exit", "process-relaunch", "fs-copy-file", "clipboard-read-text", "clipboard-write-text", "dialog-ask", "dialog-confirm", "dialog-open", "dialog-save", "fs-create-dir", "fs-exists", "fs-read-dir", "fs-read-file", "fs-rename-file", "fs-write-file", "path-all", "shell-open", "window-center", "window-close", "window-create", "window-hide", "window-maximize", "window-minimize", "window-print", "window-set-decorations", "window-set-focus", "window-set-fullscreen", "window-set-icon", "window-show", "window-start-dragging", "window-unmaximize", "window-unminimize"] } |
| 19 | tauri-plugin-fs-watch = { git = "https://github.com/tauri-apps/plugins-workspace", branch = "v1" } |
| 20 | trash = "3.0.2" |
| 21 | tauri-plugin-store = { git = "https://github.com/tauri-apps/plugins-workspace", branch = "v1" } |
| 22 | encoding_rs = "0.8.32" |
| 23 | tauri-plugin-log = { git = "https://github.com/tauri-apps/plugins-workspace", branch = "v1" } |
| 24 | time = "0.3.28" |
| 25 | log = "^0.4" |
| 26 | infer = "0.3" |
| 27 | tokio = { version = "1", features = ["time"] } |
| 28 | tauri-plugin-pty = "0.0.8" |
| 29 | |
| 30 | [features] |
| 31 | # by default Tauri runs in production mode |
| 32 | # when `tauri dev` runs it is executed with `cargo run --no-default-features` if `devPath` is an URL |
| 33 | default = [ "custom-protocol" ] |
| 34 | # this feature is used used for production builds where `devPath` points to the filesystem |
| 35 | # DO NOT remove this |
| 36 | custom-protocol = [ "tauri/custom-protocol" ] |