2024-03-31 00:29:45 +03:00
|
|
|
[package]
|
|
|
|
name = "gitbutler-core"
|
|
|
|
version = "0.0.0"
|
|
|
|
edition = "2021"
|
|
|
|
authors = ["GitButler <gitbutler@gitbutler.com>"]
|
|
|
|
publish = false
|
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
once_cell = "1.19"
|
|
|
|
pretty_assertions = "1.4"
|
2024-04-10 14:06:49 +03:00
|
|
|
gitbutler-testsupport.workspace = true
|
2024-05-14 11:08:22 +03:00
|
|
|
gitbutler-git = { workspace = true, features = ["test-askpass-path"] }
|
2024-05-28 19:54:50 +03:00
|
|
|
glob = "0.3.1"
|
2024-03-31 00:29:45 +03:00
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
toml = "0.8.12"
|
2024-05-01 18:11:55 +03:00
|
|
|
anyhow = "1.0.82"
|
|
|
|
async-trait = "0.1.80"
|
2024-03-31 00:29:45 +03:00
|
|
|
backtrace = { version = "0.3.71", optional = true }
|
2024-04-20 11:07:27 +03:00
|
|
|
bstr = "1.9.1"
|
2024-03-31 00:29:45 +03:00
|
|
|
diffy = "0.3.0"
|
2024-05-15 18:39:00 +03:00
|
|
|
dirs = "5.0.1"
|
2024-03-31 00:29:45 +03:00
|
|
|
filetime = "0.2.23"
|
|
|
|
fslock = "0.2.1"
|
|
|
|
futures = "0.3"
|
|
|
|
git2.workspace = true
|
|
|
|
git2-hooks = "0.3"
|
2024-04-20 09:15:42 +03:00
|
|
|
gix = { workspace = true, features = ["dirwalk"] }
|
2024-03-31 00:29:45 +03:00
|
|
|
itertools = "0.12"
|
|
|
|
lazy_static = "1.4.0"
|
|
|
|
md5 = "0.7.0"
|
2024-04-20 16:18:11 +03:00
|
|
|
hex = "0.4.3"
|
2024-03-31 00:29:45 +03:00
|
|
|
rand = "0.8.5"
|
|
|
|
regex = "1.10"
|
2024-05-01 18:11:55 +03:00
|
|
|
reqwest = { version = "0.12.4", features = ["json"] }
|
2024-03-31 00:29:45 +03:00
|
|
|
resolve-path = "0.1.0"
|
|
|
|
rusqlite.workspace = true
|
2024-05-26 16:48:36 +03:00
|
|
|
serde = { workspace = true, features = ["std"]}
|
2024-05-15 16:24:08 +03:00
|
|
|
serde_json = { version = "1.0", features = [ "std", "arbitrary_precision" ] }
|
2024-03-31 00:29:45 +03:00
|
|
|
sha2 = "0.10.8"
|
2024-05-15 16:24:08 +03:00
|
|
|
ssh-key = { version = "0.6.6", features = [ "alloc", "ed25519" ] }
|
2024-03-31 00:29:45 +03:00
|
|
|
ssh2 = { version = "0.9.4", features = ["vendored-openssl"] }
|
2024-04-29 13:08:56 +03:00
|
|
|
strum = { version = "0.26", features = ["derive"] }
|
2024-03-31 00:29:45 +03:00
|
|
|
log = "^0.4"
|
2024-05-14 11:08:22 +03:00
|
|
|
tempfile = "3.10"
|
2024-03-31 00:29:45 +03:00
|
|
|
thiserror.workspace = true
|
2024-05-15 16:24:08 +03:00
|
|
|
tokio = { workspace = true, features = [ "rt-multi-thread", "rt", "macros" ] }
|
2024-03-31 00:29:45 +03:00
|
|
|
tracing = "0.1.40"
|
|
|
|
url = { version = "2.5", features = ["serde"] }
|
|
|
|
urlencoding = "2.1.3"
|
|
|
|
uuid.workspace = true
|
|
|
|
walkdir = "2.5.0"
|
|
|
|
zip = "0.6.5"
|
2024-04-04 12:56:56 +03:00
|
|
|
gitbutler-git.workspace = true
|
2024-03-31 00:29:45 +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 a URL
|
|
|
|
default = ["error-context"]
|
2024-04-04 12:56:56 +03:00
|
|
|
error-context = ["dep:backtrace"]
|