[package]
name = "gix"
repository = "https://github.com/Byron/gitoxide"
description = "Interact with git repositories just like git would"
license = "MIT OR Apache-2.0"
version = "0.56.0"
authors = ["Sebastian Thiel <sebastian.thiel@icloud.com>"]
edition = "2021"
include = ["src/**/*", "LICENSE-*"]
rust-version = "1.65"
[lib]
doctest = false
test = true
[[example]]
name = "clone"
path = "examples/clone.rs"
required-features = ["blocking-network-client"]
[features]
default = ["max-performance-safe", "comfort", "basic", "extras"]
basic = ["blob-diff", "revision", "index"]
extras = ["worktree-stream", "worktree-archive", "revparse-regex", "mailmap", "excludes", "attributes", "worktree-mutation", "credentials", "interrupt", "status"]
comfort = ["gix-features/progress-unit-bytes", "gix-features/progress-unit-human-numbers"]
status = ["gix-status"]
interrupt = ["dep:signal-hook", "gix-tempfile/signals"]
index = ["dep:gix-index"]
credentials = ["dep:gix-credentials", "dep:gix-prompt", "dep:gix-negotiate"]
worktree-mutation = ["attributes", "dep:gix-worktree-state"]
excludes = ["dep:gix-ignore", "dep:gix-worktree", "index"]
attributes = ["excludes", "dep:gix-filter", "dep:gix-pathspec", "dep:gix-attributes", "dep:gix-submodule", "gix-worktree?/attributes", "dep:gix-command"]
mailmap = ["dep:gix-mailmap"]
revision = ["gix-revision/describe", "index"]
revparse-regex = ["regex", "revision"]
blob-diff = ["gix-diff/blob", "attributes"]
worktree-stream = ["gix-worktree-stream", "attributes"]
worktree-archive = ["gix-archive", "worktree-stream", "attributes"]
async-network-client = ["gix-protocol/async-client", "gix-pack/streaming-input", "attributes", "credentials"]
async-network-client-async-std = ["async-std", "async-network-client", "gix-transport/async-std"]
blocking-network-client = ["gix-protocol/blocking-client", "gix-pack/streaming-input", "attributes", "credentials"]
blocking-http-transport-curl = ["blocking-network-client", "gix-transport/http-client-curl"]
blocking-http-transport-curl-rustls = ["blocking-http-transport-curl", "dep:curl-for-configuration-only", "curl-for-configuration-only?/rustls"]
blocking-http-transport-reqwest = ["blocking-network-client", "gix-transport/http-client-reqwest"]
blocking-http-transport-reqwest-rust-tls = ["blocking-http-transport-reqwest", "reqwest-for-configuration-only/rustls-tls" ]
blocking-http-transport-reqwest-rust-tls-trust-dns = ["blocking-http-transport-reqwest", "reqwest-for-configuration-only/rustls-tls", "reqwest-for-configuration-only/trust-dns"]
blocking-http-transport-reqwest-native-tls = ["blocking-http-transport-reqwest", "reqwest-for-configuration-only/default-tls" ]
max-performance-safe = [
"parallel",
"pack-cache-lru-static",
"pack-cache-lru-dynamic",
"gix-features/fs-walkdir-parallel"
]
hp-tempfile-registry = ["gix-tempfile/hp-hashmap"]
parallel = ["gix-features/parallel"]
pack-cache-lru-static = ["gix-pack/pack-cache-lru-static"]
pack-cache-lru-dynamic = ["gix-pack/pack-cache-lru-dynamic"]
max-performance = [ "max-performance-safe", "gix-features/zlib-ng", "fast-sha1" ]
fast-sha1 = [ "gix-features/fast-sha1" ]
verbose-object-parsing-errors = ["gix-object/verbose-object-parsing-errors"]
serde = [ "dep:serde",
"gix-pack/serde",
"gix-object/serde",
"gix-protocol?/serde",
"gix-transport?/serde",
"gix-ref/serde",
"gix-odb/serde",
"gix-index?/serde",
"gix-mailmap?/serde",
"gix-url/serde",
"gix-attributes?/serde",
"gix-ignore?/serde",
"gix-revision/serde",
"gix-worktree?/serde",
"gix-commitgraph/serde",
"gix-credentials?/serde"]
progress-tree = ["prodash/progress-tree"]
cache-efficiency-debug = ["gix-features/cache-efficiency-debug"]
[dependencies]
gix-macros = { version = "^0.1.1", path = "../gix-macros" }
gix-utils = { version = "^0.1.6", path = "../gix-utils" }
gix-fs = { version = "^0.8.1", path = "../gix-fs" }
gix-ref = { version = "^0.39.0", path = "../gix-ref" }
gix-discover = { version = "^0.27.0", path = "../gix-discover" }
gix-tempfile = { version = "^11.0.0", path = "../gix-tempfile", default-features = false }
gix-lock = { version = "^11.0.0", path = "../gix-lock" }
gix-validate = { version = "^0.8.1", path = "../gix-validate" }
gix-sec = { version = "^0.10.1", path = "../gix-sec" }
gix-date = { version = "^0.8.1", path = "../gix-date" }
gix-refspec = { version = "^0.20.0", path = "../gix-refspec" }
gix-filter = { version = "^0.7.0", path = "../gix-filter", optional = true }
gix-config = { version = "^0.32.0", path = "../gix-config" }
gix-odb = { version = "^0.55.0", path = "../gix-odb" }
gix-hash = { version = "^0.13.2", path = "../gix-hash" }
gix-object = { version = "^0.39.0", path = "../gix-object" }
gix-actor = { version = "^0.28.1", path = "../gix-actor" }
gix-pack = { version = "^0.45.0", path = "../gix-pack", default-features = false, features = ["object-cache-dynamic"] }
gix-revision = { version = "^0.24.0", path = "../gix-revision", default-features = false }
gix-revwalk = { version = "^0.10.0", path = "../gix-revwalk" }
gix-negotiate = { version = "^0.10.0", path = "../gix-negotiate", optional = true }
gix-path = { version = "^0.10.1", path = "../gix-path" }
gix-url = { version = "^0.25.2", path = "../gix-url" }
gix-traverse = { version = "^0.35.0", path = "../gix-traverse" }
gix-diff = { version = "^0.38.0", path = "../gix-diff", default-features = false }
gix-mailmap = { version = "^0.20.1", path = "../gix-mailmap", optional = true }
gix-features = { version = "^0.36.1", path = "../gix-features", features = ["progress", "once_cell"] }
gix-trace = { version = "^0.1.4", path = "../gix-trace" }
gix-glob = { version = "^0.14.1", path = "../gix-glob" }
gix-credentials = { version = "^0.22.0", path = "../gix-credentials", optional = true }
gix-prompt = { version = "^0.8.0", path = "../gix-prompt", optional = true }
gix-index = { version = "^0.27.0", path = "../gix-index", optional = true }
gix-attributes = { version = "^0.20.1", path = "../gix-attributes", optional = true }
gix-ignore = { version = "^0.9.1", path = "../gix-ignore", optional = true }
gix-worktree = { version = "^0.28.0", path = "../gix-worktree", optional = true, default-features = false }
gix-worktree-state = { version = "^0.5.0", path = "../gix-worktree-state", optional = true }
gix-hashtable = { version = "^0.4.1", path = "../gix-hashtable" }
gix-commitgraph = { version = "^0.22.1", path = "../gix-commitgraph" }
gix-pathspec = { version = "^0.4.1", path = "../gix-pathspec", optional = true }
gix-submodule = { version = "^0.6.0", path = "../gix-submodule", optional = true }
gix-status = { version = "^0.3.0", path = "../gix-status", optional = true }
gix-command = { version = "^0.3.0", path = "../gix-command", optional = true }
gix-worktree-stream = { version = "^0.7.0", path = "../gix-worktree-stream", optional = true }
gix-archive = { version = "^0.7.0", path = "../gix-archive", default-features = false, optional = true }
gix-protocol = { version = "^0.42.0", path = "../gix-protocol", optional = true }
gix-transport = { version = "^0.39.0", path = "../gix-transport", optional = true }
prodash = { workspace = true, optional = true, features = ["progress-tree"] }
once_cell = "1.14.0"
signal-hook = { version = "0.3.9", default-features = false, optional = true }
thiserror = "1.0.26"
serde = { version = "1.0.114", optional = true, default-features = false, features = ["derive"]}
smallvec = "1.9.0"
async-std = { version = "1.12.0", optional = true }
curl-for-configuration-only = { package = "curl", version = "0.4", optional = true }
regex = { version = "1.6.0", optional = true, default-features = false, features = ["std"] }
reqwest-for-configuration-only = { package = "reqwest", version = "0.11.13", default-features = false, optional = true }
parking_lot = "0.12.1"
document-features = { version = "0.2.0", optional = true }
[target.'cfg(target_vendor = "apple")'.dependencies]
unicode-normalization = { version = "0.1.19", default-features = false }
[dev-dependencies]
gix-testtools = { path = "../tests/tools" }
is_ci = "1.1.1"
anyhow = "1"
walkdir = "2.3.2"
serial_test = { version = "2.0.0", default-features = false }
async-std = { version = "1.12.0", features = ["attributes"] }
[package.metadata.docs.rs]
features = ["document-features", "max-performance", "blocking-network-client", "blocking-http-transport-curl", "serde"]