lints.workspace = true
[package]
name = "gix-diff"
version = "0.58.0"
repository = "https://github.com/GitoxideLabs/gitoxide"
license = "MIT OR Apache-2.0"
description = "Calculate differences between various git objects"
authors = ["Sebastian Thiel <sebastian.thiel@icloud.com>"]
edition = "2021"
include = ["src/**/*", "LICENSE-*"]
rust-version = "1.82"
autotests = false
[features]
default = ["blob", "index"]
blob = [
"dep:imara-diff",
"dep:gix-filter",
"dep:gix-worktree",
"dep:gix-path",
"dep:gix-fs",
"dep:gix-command",
"dep:gix-tempfile",
"dep:gix-trace",
"dep:gix-traverse"
]
blob-experimental = ["dep:imara-diff-v2"]
index = ["dep:gix-index", "dep:gix-pathspec", "dep:gix-attributes"]
serde = ["dep:serde", "gix-hash/serde", "gix-object/serde", "gix-index?/serde"]
wasm = ["dep:getrandom"]
[lib]
doctest = false
[dependencies]
gix-index = { version = "^0.46.0", path = "../gix-index", optional = true }
gix-pathspec = { version = "^0.15.0", path = "../gix-pathspec", optional = true }
gix-attributes = { version = "^0.30.0", path = "../gix-attributes", optional = true }
gix-hash = { version = "^0.22.0", path = "../gix-hash" }
gix-object = { version = "^0.55.0", path = "../gix-object" }
gix-filter = { version = "^0.25.0", path = "../gix-filter", optional = true }
gix-worktree = { version = "^0.47.0", path = "../gix-worktree", default-features = false, features = ["attributes"], optional = true }
gix-command = { version = "^0.7.0", path = "../gix-command", optional = true }
gix-path = { version = "^0.11.0", path = "../gix-path", optional = true }
gix-fs = { version = "^0.19.0", path = "../gix-fs", optional = true }
gix-tempfile = { version = "^21.0.0", path = "../gix-tempfile", optional = true }
gix-trace = { version = "^0.1.17", path = "../gix-trace", optional = true }
gix-traverse = { version = "^0.52.0", path = "../gix-traverse", optional = true }
thiserror = "2.0.17"
imara-diff = { version = "0.1.8", optional = true }
imara-diff-v2 = { version = "0.2.0", optional = true, package = "imara-diff" }
serde = { version = "1.0.114", optional = true, default-features = false, features = ["derive"] }
getrandom = { version = "0.2.8", optional = true, default-features = false, features = ["js"] }
bstr = { version = "1.12.0", default-features = false }
document-features = { version = "0.2.0", optional = true }
[package.metadata.docs.rs]
all-features = true
features = ["document-features"]