gitbutler/crates/gitbutler-project/Cargo.toml
estib 4ee01031f6 gitbulter-forge crate
Create a centralized crate for forge actions that is provider agnostic.
Move the logic behind fetching the PR templates to it.
2024-10-17 18:15:08 +02:00

31 lines
880 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
gitbutler-forge.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 = "0.2.1"
[dev-dependencies]
gitbutler-testsupport.workspace = true
tempfile = "3.13"
tokio = { workspace = true, features = [ "rt-multi-thread", "rt", "macros" ] }