mirror of
https://github.com/gitbutlerapp/gitbutler.git
synced 2024-11-23 11:45:06 +03:00
69979807fe
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.
22 lines
575 B
TOML
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"] }
|