minimize library dependencies

This commit is contained in:
Sebastian Thiel 2024-03-29 17:48:54 +01:00
parent bc2fff968c
commit 3b89ed50f9
No known key found for this signature in database
GPG Key ID: 9CB5EE7895E8268B
2 changed files with 0 additions and 25 deletions

12
Cargo.lock generated
View File

@ -1912,12 +1912,9 @@ version = "0.0.0"
dependencies = [
"anyhow",
"async-trait",
"backoff",
"backtrace",
"bstr 1.9.1",
"byteorder",
"chrono",
"console-subscriber",
"diffy",
"filetime",
"fslock",
@ -1925,15 +1922,10 @@ dependencies = [
"git2",
"git2-hooks",
"gitbutler-git",
"governor",
"itertools 0.12.1",
"lazy_static",
"log",
"md5",
"nonzero_ext",
"notify",
"notify-debouncer-full",
"num_cpus",
"once_cell",
"pretty_assertions",
"r2d2",
@ -1946,7 +1938,6 @@ dependencies = [
"rusqlite",
"serde",
"serde_json",
"sha1",
"sha2",
"similar",
"slug",
@ -1955,11 +1946,8 @@ dependencies = [
"tempfile",
"thiserror",
"tokio",
"tokio-util",
"toml 0.8.12",
"tracing",
"tracing-appender",
"tracing-subscriber",
"url",
"urlencoding",
"uuid",

View File

@ -17,27 +17,18 @@ pretty_assertions = "1.4"
toml = "0.8.12"
anyhow = "1.0.81"
async-trait = "0.1.79"
backoff = "0.4.0"
backtrace = { version = "0.3.71", optional = true }
bstr = "1.9.1"
byteorder = "1.5.0"
chrono = { version = "0.4.37", features = ["serde"] }
console-subscriber = "0.2.0"
diffy = "0.3.0"
filetime = "0.2.23"
fslock = "0.2.1"
futures = "0.3"
git2.workspace = true
git2-hooks = "0.3"
governor = "0.6.3"
itertools = "0.12"
lazy_static = "1.4.0"
md5 = "0.7.0"
nonzero_ext = "0.3.0"
notify = { version = "6.0.1" }
notify-debouncer-full = "0.3.1"
num_cpus = "1.16.0"
once_cell = "1.19"
r2d2 = "0.8.10"
r2d2_sqlite = "0.22.0"
rand = "0.8.5"
@ -48,7 +39,6 @@ resolve-path = "0.1.0"
rusqlite.workspace = true
serde.workspace = true
serde_json = { version = "1.0", features = [ "std", "arbitrary_precision" ] }
sha1 = "0.10.6"
sha2 = "0.10.8"
similar = { version = "2.4.0", features = ["unicode"] }
slug = "0.1.5"
@ -57,10 +47,7 @@ ssh2 = { version = "0.9.4", features = ["vendored-openssl"] }
log = "^0.4"
thiserror.workspace = true
tokio = { workspace = true, features = [ "full", "sync" ] }
tokio-util = "0.7.10"
tracing = "0.1.40"
tracing-appender = "0.2.3"
tracing-subscriber = "0.3.17"
url = { version = "2.5", features = ["serde"] }
urlencoding = "2.1.3"
uuid.workspace = true