mirror of
https://github.com/gitbutlerapp/gitbutler.git
synced 2024-12-15 03:41:55 +03:00
39 lines
860 B
TOML
39 lines
860 B
TOML
[package]
|
|
name = "gitbutler-branch"
|
|
version = "0.0.0"
|
|
edition = "2021"
|
|
authors = ["GitButler <gitbutler@gitbutler.com>"]
|
|
publish = false
|
|
|
|
[dependencies]
|
|
tracing = "0.1.40"
|
|
anyhow = "1.0.86"
|
|
git2.workspace = true
|
|
tokio.workspace = true
|
|
gitbutler-core.workspace = true
|
|
gitbutler-oplog.workspace = true
|
|
gitbutler-branchstate.workspace = true
|
|
serde = { workspace = true, features = ["std"]}
|
|
bstr = "1.9.1"
|
|
diffy = "0.3.0"
|
|
hex = "0.4.3"
|
|
regex = "1.10"
|
|
git2-hooks = "0.3"
|
|
url = { version = "2.5.2", features = ["serde"] }
|
|
md5 = "0.7.0"
|
|
futures = "0.3"
|
|
itertools = "0.13"
|
|
|
|
[[test]]
|
|
name="branches"
|
|
path = "tests/virtual_branches/mod.rs"
|
|
|
|
[dev-dependencies]
|
|
once_cell = "1.19"
|
|
pretty_assertions = "1.4"
|
|
gitbutler-testsupport.workspace = true
|
|
gitbutler-git = { workspace = true, features = ["test-askpass-path"] }
|
|
glob = "0.3.1"
|
|
serial_test = "3.1.1"
|
|
tempfile = "3.10"
|