mirror of
https://github.com/gitbutlerapp/gitbutler.git
synced 2024-12-22 09:01:45 +03:00
4ee01031f6
Create a centralized crate for forge actions that is provider agnostic. Move the logic behind fetching the PR templates to it.
31 lines
880 B
TOML
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" ] }
|