mirror of
https://github.com/gitbutlerapp/gitbutler.git
synced 2024-11-28 13:26:16 +03:00
96e0d3e83f
This is useful to get simple performance metrics.
34 lines
901 B
TOML
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" ] }
|