gitbutler/packages/tauri/Cargo.toml

76 lines
2.4 KiB
TOML
Raw Normal View History

2023-01-31 17:55:57 +03:00
[package]
2023-09-06 11:46:07 +03:00
name = "gitbutler"
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]
2023-06-16 09:46:53 +03:00
tauri-build = { version = "1.4", features = [] }
2023-01-31 17:55:57 +03:00
[dependencies]
serde = { version = "1.0", features = ["derive"] }
2023-09-05 14:01:45 +03:00
tauri = { version = "1.4", features = [ "window-maximize", "window-unmaximize", "process-relaunch", "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" }
2023-07-27 13:20:47 +03:00
notify = { version = "6.0.1" }
2023-09-01 15:39:22 +03:00
serde_json = {version = "1.0", features = [ "std", "arbitrary_precision" ] }
uuid = "1.4.1"
2023-06-07 15:26:52 +03:00
git2 = { version = "0.17.2", features = ["vendored-openssl", "vendored-libgit2"] }
filetime = "0.2.22"
2023-02-08 16:10:22 +03:00
sha2 = "0.10.6"
2023-09-01 15:39:22 +03:00
sentry = {version = "0.31", features = ["backtrace", "contexts", "panic", "transport", "anyhow", "debug-images", "reqwest", "native-tls" ] }
walkdir = "2.3.2"
anyhow = "1.0.72"
2023-09-01 15:39:22 +03:00
tempfile = "3.8"
2023-02-24 15:27:18 +03:00
reqwest = "0.11.14"
md5 = "0.7.0"
urlencoding = "2.1.3"
thiserror = "1.0.44"
2023-07-21 14:47:22 +03:00
tantivy = "0.20.2"
2023-04-21 13:40:39 +03:00
similar = { version = "2.2.1", features = ["unicode"] }
2023-08-21 12:23:21 +03:00
tokio = { version = "1.29.1", features = [ "full", "sync", "tracing" ] }
futures = "0.3"
2023-04-12 08:59:33 +03:00
serde-jsonlines = "0.4.0"
2023-04-21 16:55:54 +03:00
sentry-anyhow = "0.31.0"
sentry-rust-minidump = "0.6.4"
2023-09-07 14:48:04 +03:00
sentry-debug-images = "0.31"
zip = "0.6.5"
rusqlite = { version = "0.29.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-05-31 12:28:11 +03:00
tokio-util = "0.7.8"
diffy = "0.3.0"
2023-09-07 14:48:04 +03:00
url = "2.4"
2023-09-01 15:39:22 +03:00
ssh-key = { version = "0.6.1", features = [ "alloc", "ed25519" ] }
2023-08-03 11:27:45 +03:00
rand = "0.8.5"
tracing = "0.1.37"
tracing-subscriber = "0.3.17"
tracing-appender = "0.2.2"
2023-08-21 12:23:21 +03:00
console-subscriber = "0.1.10"
2023-09-01 15:39:22 +03:00
rustix = "0.38"
2023-08-22 16:06:03 +03:00
backoff = "0.4.0"
byteorder = "1.4.3"
num_cpus = "1.16.0"
2023-09-05 11:04:43 +03:00
resolve-path = "0.1.0"
2023-09-06 11:46:07 +03:00
posthog-rs = "0.2.2"
2023-09-06 16:05:56 +03:00
chrono = "0.4.29"
async-trait = "0.1.73"
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"]
2023-09-06 10:33:27 +03:00
# enabled debug logging
debug = []
2023-07-21 14:05:28 +03:00
# this feature enables devtools
devtools = ["tauri/devtools"]
2023-01-31 17:55:57 +03:00
# this feature is used used for production builds where `devPath` points to the filesystem
# DO NOT remove this
custom-protocol = ["tauri/custom-protocol"]
2023-07-28 09:46:35 +03:00