gitbutler/crates/gitbutler-hunk-dependency/Cargo.toml
Sebastian Thiel 69979807fe
The UUID crate always needs V4, so have that feature in the workspace.
Some crates use it from the workspace as if it had that feature,
but the reason they compile is only due to compiling a crate higher
up that sets the feature, which transitively affects the crate in question.

When building `gitbutler-diff` for instance, the build will fail.
2024-11-02 14:48:18 +01:00

22 lines
575 B
TOML

[package]
name = "gitbutler-hunk-dependency"
version = "0.0.0"
edition = "2021"
authors = ["GitButler <gitbutler@gitbutler.com>"]
publish = false
[dependencies]
anyhow = "1.0.92"
git2.workspace = true
gix = { workspace = true, features = [] }
gitbutler-diff.workspace = true
gitbutler-reference.workspace = true
gitbutler-serde.workspace = true
gitbutler-stack.workspace = true
gitbutler-id.workspace = true
itertools = "0.13"
serde = { workspace = true, features = ["std"] }
bstr.workspace = true
tokio.workspace = true
uuid = { workspace = true, features = ["fast-rng"] }