gitbutler/crates/gitbutler-branch/Cargo.toml
Kiril Videlov acee9ba5ab
move branch related modules to separate crate
Unfortunatelly diff and branch types form a cyclical dependency via the "HunkLock" type. This will have to be refactored as a followup
2024-07-09 00:10:55 +02:00

22 lines
400 B
TOML

[package]
name = "gitbutler-branch"
version = "0.0.0"
edition = "2021"
authors = ["GitButler <gitbutler@gitbutler.com>"]
publish = false
[dependencies]
anyhow = "1.0.86"
git2.workspace = true
gitbutler-core.workspace = true
itertools = "0.13"
serde = { workspace = true, features = ["std"]}
bstr = "1.9.1"
md5 = "0.7.0"
hex = "0.4.3"
tracing = "0.1.40"
[[test]]
name="branch"
path = "tests/mod.rs"