2023-01-31 17:55:57 +03:00
|
|
|
[package]
|
2023-05-05 10:56:01 +03:00
|
|
|
name = "git-butler-tauri"
|
2023-01-31 17:55:57 +03:00
|
|
|
version = "0.0.0"
|
2023-05-05 10:56:01 +03:00
|
|
|
description = "A Tauri App"
|
|
|
|
authors = ["you"]
|
|
|
|
license = ""
|
|
|
|
repository = ""
|
2023-01-31 17:55:57 +03:00
|
|
|
edition = "2021"
|
|
|
|
rust-version = "1.57"
|
|
|
|
|
2023-05-05 10:56:01 +03:00
|
|
|
# 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]
|
2023-05-05 10:56:01 +03:00
|
|
|
tauri-build = { version = "1.2", features = [] }
|
2023-01-31 17:55:57 +03:00
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
2023-05-12 11:56:52 +03:00
|
|
|
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" ] }
|
2023-05-08 16:11:49 +03:00
|
|
|
uuid = "1.3.2"
|
2023-05-08 16:17:51 +03:00
|
|
|
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" ] }
|
2023-02-09 17:53:12 +03:00
|
|
|
walkdir = "2.3.2"
|
2023-05-12 12:52:42 +03:00
|
|
|
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"
|
2023-05-08 16:17:45 +03:00
|
|
|
tokio = { version = "1.28.0", features = ["full", "sync"] }
|
2023-04-05 11:10:07 +03:00
|
|
|
tokio-tungstenite = "0.18.0"
|
2023-04-11 09:24:39 +03:00
|
|
|
portable-pty = { version = "0.8.0", features = [ "serde_support" ] }
|
2023-04-05 11:10:07 +03:00
|
|
|
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"
|
2023-05-03 09:04:44 +03:00
|
|
|
lazy_static = "1.4.0"
|
2023-05-12 11:56:52 +03:00
|
|
|
zip = "0.6.5"
|
2023-05-17 13:21:33 +03:00
|
|
|
rusqlite = { version = "0.28.0", features = [ "bundled", "blob", "hooks" ] }
|
|
|
|
refinery = { version = "0.8", features = [ "rusqlite" ] }
|
|
|
|
r2d2 = "0.8.10"
|
|
|
|
r2d2_sqlite = { version = "0.21.0", features = ["bundled"] }
|
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"]
|