gitbutler/crates/gitbutler-project/Cargo.toml
Sebastian Thiel 96e0d3e83f
add --trace to enable tracing
This is useful to get simple performance metrics.
2024-08-21 19:23:42 +02:00

34 lines
901 B
TOML

[package]
name = "gitbutler-project"
version = "0.0.0"
edition = "2021"
authors = ["GitButler <gitbutler@gitbutler.com>"]
publish = false
[dependencies]
anyhow = "1.0.86"
parking_lot = { workspace = true, features = ["arc_lock"] }
serde = { workspace = true, features = ["std"]}
serde_json = { version = "1.0", features = [ "std", "arbitrary_precision" ] }
gitbutler-error.workspace = true
gitbutler-serde.workspace = true
gitbutler-id.workspace = true
gitbutler-storage.workspace = true
git2.workspace = true
gix = { workspace = true, features = ["dirwalk", "credentials", "parallel"] }
uuid.workspace = true
tracing.workspace = true
resolve-path = "0.1.0"
# for locking
fslock.workspace = true
[[test]]
name="project"
path = "tests/mod.rs"
[dev-dependencies]
gitbutler-testsupport.workspace = true
tempfile = "3.10"
tokio = { workspace = true, features = [ "rt-multi-thread", "rt", "macros" ] }