gitbutler/src-tauri/Cargo.toml

65 lines
2.3 KiB
TOML
Raw Normal View History

2023-01-31 17:55:57 +03:00
[package]
name = "git-butler-tauri"
2023-01-31 17:55:57 +03:00
version = "0.0.0"
description = "A Tauri App"
authors = ["you"]
license = ""
repository = ""
2023-01-31 17:55:57 +03:00
edition = "2021"
rust-version = "1.57"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
2023-01-31 17:55:57 +03:00
[build-dependencies]
tauri-build = { version = "1.2", features = [] }
2023-01-31 17:55:57 +03:00
[dependencies]
serde = { version = "1.0", features = ["derive"] }
tauri = { version = "1.2", features = ["dialog-open", "fs-read-file", "path-all", "protocol-asset", "shell-open", "system-tray", "window-start-dragging"] }
2023-05-12 13:33:25 +03:00
tauri-plugin-window-state = { git = "https://github.com/tauri-apps/plugins-workspace", branch = "v1" }
tauri-plugin-websocket = { git = "https://github.com/tauri-apps/plugins-workspace", branch = "v1" }
tauri-plugin-log = { git = "https://github.com/tauri-apps/plugins-workspace", branch = "v1", features = ["colored"] }
2023-02-03 16:28:57 +03:00
log = "0.4.17"
2023-02-05 19:22:45 +03:00
notify = "5.1.0"
2023-02-20 14:41:01 +03:00
serde_json = {version = "1.0.92", features = [ "std", "arbitrary_precision" ] }
uuid = "1.3.2"
git2 = { version = "0.17.1", features = ["vendored-openssl", "vendored-libgit2"] }
2023-02-08 16:10:22 +03:00
filetime = "0.2.19"
sha2 = "0.10.6"
2023-04-21 16:55:54 +03:00
sentry = {version = "0.31.0", features = ["backtrace", "contexts", "panic", "transport", "anyhow", "debug-images", "reqwest", "native-tls" ] }
walkdir = "2.3.2"
anyhow = "1.0.71"
2023-02-20 11:51:13 +03:00
tempfile = "3.3.0"
2023-02-24 15:27:18 +03:00
reqwest = "0.11.14"
md5 = "0.7.0"
urlencoding = "2.1.2"
2023-02-24 18:27:28 +03:00
thiserror = "1.0.38"
2023-03-02 17:34:54 +03:00
tantivy = "0.19.2"
2023-04-21 13:40:39 +03:00
similar = { version = "2.2.1", features = ["unicode"] }
2023-03-13 14:06:29 +03:00
fslock = "0.2.1"
tokio = { version = "1.28.0", features = ["full", "sync"] }
tokio-tungstenite = "0.18.0"
2023-04-11 09:24:39 +03:00
portable-pty = { version = "0.8.0", features = [ "serde_support" ] }
bytes = "1.1.0"
futures = "0.3"
futures-util = "0.3.8"
2023-03-22 17:02:16 +03:00
timed = "0.2.1"
2023-04-12 08:59:33 +03:00
serde-jsonlines = "0.4.0"
2023-04-14 10:44:34 +03:00
crossbeam-channel = "0.5.8"
2023-04-18 17:40:08 +03:00
scopeguard = "1.1.0"
2023-04-21 16:55:54 +03:00
sentry-anyhow = "0.31.0"
sentry-rust-minidump = "0.5.1"
sentry-debug-images = "0.31.0"
zip = "0.6.5"
2023-05-22 17:18:41 +03:00
rusqlite = { version = "0.28.0", features = [ "bundled", "blob" ] }
2023-05-17 13:21:33 +03:00
refinery = { version = "0.8", features = [ "rusqlite" ] }
2023-05-17 15:01:48 +03:00
sha1 = "0.10.5"
2023-01-31 17:55:57 +03:00
[features]
# by default Tauri runs in production mode
# when `tauri dev` runs it is executed with `cargo run --no-default-features` if `devPath` is an URL
default = ["custom-protocol"]
# this feature is used used for production builds where `devPath` points to the filesystem
# DO NOT remove this
custom-protocol = ["tauri/custom-protocol"]