[package]
name = "gix-merge"
version = "0.0.0"
repository = "https://github.com/GitoxideLabs/gitoxide"
license = "MIT OR Apache-2.0"
description = "A crate of the gitoxide project implementing merge algorithms"
authors = ["Sebastian Thiel <sebastian.thiel@icloud.com>"]
edition = "2021"
rust-version = "1.65"
[lints]
workspace = true
[lib]
doctest = false
[features]
default = ["blob"]
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-quote"]
serde = ["dep:serde", "gix-hash/serde", "gix-object/serde"]
[dependencies]
gix-hash = { version = "^0.15.0", path = "../gix-hash" }
gix-object = { version = "^0.45.0", path = "../gix-object" }
gix-filter = { version = "^0.14.0", path = "../gix-filter", optional = true }
gix-worktree = { version = "^0.37.0", path = "../gix-worktree", default-features = false, features = ["attributes"], optional = true }
gix-command = { version = "^0.3.10", path = "../gix-command", optional = true }
gix-path = { version = "^0.10.12", path = "../gix-path", optional = true }
gix-fs = { version = "^0.12.0", path = "../gix-fs", optional = true }
gix-tempfile = { version = "^15.0.0", path = "../gix-tempfile", optional = true }
gix-trace = { version = "^0.1.11", path = "../gix-trace", optional = true }
gix-quote = { version = "^0.4.13", path = "../gix-quote", optional = true }
thiserror = "1.0.63"
imara-diff = { version = "0.1.7", optional = true }
bstr = { version = "1.5.0", default-features = false }
serde = { version = "1.0.114", optional = true, default-features = false, features = ["derive"] }
document-features = { version = "0.2.0", optional = true }
[dev-dependencies]
gix-testtools = { path = "../tests/tools" }
pretty_assertions = "1.4.0"
[package.metadata.docs.rs]
all-features = true
features = ["document-features"]