2023-01-31 17:55:57 +03:00
|
|
|
[package]
|
|
|
|
name = "git-butler-tauri"
|
|
|
|
version = "0.0.0"
|
|
|
|
description = "A Tauri App"
|
|
|
|
authors = ["you"]
|
|
|
|
license = ""
|
|
|
|
repository = ""
|
|
|
|
edition = "2021"
|
|
|
|
rust-version = "1.57"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[build-dependencies]
|
|
|
|
tauri-build = { version = "1.2", features = [] }
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
2023-03-01 14:06:11 +03:00
|
|
|
tauri = { version = "1.2", features = ["dialog-open", "path-all", "protocol-asset", "shell-open", "system-tray", "window-start-dragging"] }
|
2023-02-03 16:30:15 +03:00
|
|
|
tauri-plugin-window-state = { git = "https://github.com/tauri-apps/plugins-workspace", branch = "dev" }
|
2023-04-06 12:04:44 +03:00
|
|
|
tauri-plugin-websocket = { git = "https://github.com/tauri-apps/plugins-workspace", branch = "dev" }
|
2023-02-03 16:28:57 +03:00
|
|
|
tauri-plugin-log = { git = "https://github.com/tauri-apps/plugins-workspace", branch = "dev", features = ["colored"] }
|
|
|
|
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-02-05 19:22:45 +03:00
|
|
|
uuid = "1.3.0"
|
2023-02-14 17:20:00 +03:00
|
|
|
git2 = { version = "0.16.1", features = ["vendored-openssl", "vendored-libgit2"] }
|
2023-02-08 16:10:22 +03:00
|
|
|
filetime = "0.2.19"
|
|
|
|
sha2 = "0.10.6"
|
2023-02-09 14:14:49 +03:00
|
|
|
sentry-tauri = "0.1.0"
|
|
|
|
sentry = "0.27"
|
2023-02-09 17:53:12 +03:00
|
|
|
walkdir = "2.3.2"
|
2023-02-14 15:11:41 +03:00
|
|
|
anyhow = "1.0.69"
|
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-03-07 16:03:43 +03:00
|
|
|
similar = "2.2.1"
|
2023-03-13 14:06:29 +03:00
|
|
|
fslock = "0.2.1"
|
2023-04-05 11:10:07 +03:00
|
|
|
tokio = { version = "1.26.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" ] }
|
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-13 14:37:46 +03:00
|
|
|
tokio-util = "0.7.7"
|
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"]
|