2024-07-08 16:33:26 +03:00
|
|
|
[package]
|
|
|
|
name = "gitbutler-project"
|
|
|
|
version = "0.0.0"
|
|
|
|
edition = "2021"
|
|
|
|
authors = ["GitButler <gitbutler@gitbutler.com>"]
|
|
|
|
publish = false
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
anyhow = "1.0.86"
|
2024-07-14 22:51:28 +03:00
|
|
|
parking_lot = { workspace = true, features = ["arc_lock"] }
|
2024-07-08 16:33:26 +03:00
|
|
|
serde = { workspace = true, features = ["std"]}
|
|
|
|
serde_json = { version = "1.0", features = [ "std", "arbitrary_precision" ] }
|
2024-07-09 12:13:39 +03:00
|
|
|
gitbutler-error.workspace = true
|
2024-07-09 12:49:12 +03:00
|
|
|
gitbutler-serde.workspace = true
|
2024-07-09 13:39:18 +03:00
|
|
|
gitbutler-id.workspace = true
|
2024-07-09 13:54:08 +03:00
|
|
|
gitbutler-storage.workspace = true
|
2024-07-08 16:33:26 +03:00
|
|
|
git2.workspace = true
|
|
|
|
gix = { workspace = true, features = ["dirwalk", "credentials", "parallel"] }
|
|
|
|
uuid.workspace = true
|
2024-08-11 15:55:00 +03:00
|
|
|
tracing.workspace = true
|
2024-07-08 16:33:26 +03:00
|
|
|
resolve-path = "0.1.0"
|
|
|
|
|
2024-07-14 22:51:28 +03:00
|
|
|
# for locking
|
2024-09-13 08:34:02 +03:00
|
|
|
fslock = "0.2.1"
|
2024-07-14 22:51:28 +03:00
|
|
|
|
2024-07-08 16:33:26 +03:00
|
|
|
[[test]]
|
|
|
|
name="project"
|
|
|
|
path = "tests/mod.rs"
|
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
gitbutler-testsupport.workspace = true
|
2024-10-03 01:37:53 +03:00
|
|
|
tempfile = "3.13"
|
2024-07-08 16:33:26 +03:00
|
|
|
tokio = { workspace = true, features = [ "rt-multi-thread", "rt", "macros" ] }
|