[package]
name = "gix"
repository = "https://github.com/Byron/gitoxide"
description = "Interact with git repositories just like git would"
license = "MIT/Apache-2.0"
version = "0.49.1"
authors = ["Sebastian Thiel <sebastian.thiel@icloud.com>"]
edition = "2021"
include = ["src/**/*", "LICENSE-*", "CHANGELOG.md"]
rust-version = "1.65"
[lib]
doctest = false
test = true
[[test]]
name = "gix"
path = "tests/gix.rs"
required-features = []
[[test]]
name = "gix-with-regex"
path = "tests/gix-with-regex.rs"
required-features = ["regex"]
[[example]]
name = "clone"
path = "examples/clone.rs"
required-features = ["blocking-network-client"]
[features]
default = ["max-performance-safe", "comfort"]
async-network-client = ["gix-protocol/async-client"]
async-network-client-async-std = ["async-std", "async-network-client", "gix-transport/async-std"]
blocking-network-client = ["gix-protocol/blocking-client"]
blocking-http-transport-curl = ["blocking-network-client", "gix-transport/http-client-curl"]
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", "reqwest-for-configuration-only/trust-dns"]
blocking-http-transport-reqwest-native-tls = ["blocking-http-transport-reqwest", "reqwest-for-configuration-only/default-tls" ]
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"]
comfort = ["gix-features/progress-unit-bytes", "gix-features/progress-unit-human-numbers"]
cache-efficiency-debug = ["gix-features/cache-efficiency-debug"]
max-performance-safe = [
"gix-features/parallel",
"pack-cache-lru-static",
"pack-cache-lru-dynamic",
"gix-features/fs-walkdir-parallel"
]
hp-tempfile-registry = ["gix-tempfile/hp-hashmap"]
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" ]
[dependencies]
gix-utils = { version = "^0.1.4", path = "../gix-utils" }
gix-fs = { version = "^0.4.0", path = "../gix-fs" }
gix-ref = { version = "^0.33.0", path = "../gix-ref" }
gix-discover = { version = "^0.22.0", path = "../gix-discover" }
gix-tempfile = { version = "^7.0.0", path = "../gix-tempfile", default-features = false, features = ["signals"] }
gix-lock = { version = "^7.0.0", path = "../gix-lock" }
gix-validate = { version = "^0.7.6", path = "../gix-validate" }
gix-sec = { version = "^0.8.3", path = "../gix-sec" }
gix-date = { version = "^0.7.0", path = "../gix-date" }
gix-refspec = { version = "^0.14.0", path = "../gix-refspec" }
gix-filter = { version = "^0.1.0", path = "../gix-filter" }
gix-config = { version = "^0.26.0", path = "../gix-config" }
gix-odb = { version = "^0.50.0", path = "../gix-odb" }
gix-hash = { version = "^0.11.3", path = "../gix-hash" }
gix-object = { version = "^0.33.0", path = "../gix-object" }
gix-actor = { version = "^0.24.0", path = "../gix-actor" }
gix-pack = { version = "^0.40.0", path = "../gix-pack", features = ["object-cache-dynamic"] }
gix-revision = { version = "^0.18.0", path = "../gix-revision" }
gix-negotiate = { version = "^0.5.0", path = "../gix-negotiate" }
gix-path = { version = "^0.8.3", path = "../gix-path" }
gix-url = { version = "^0.21.0", path = "../gix-url" }
gix-traverse = { version = "^0.30.0", path = "../gix-traverse" }
gix-protocol = { version = "^0.36.0", path = "../gix-protocol", optional = true }
gix-transport = { version = "^0.34.0", path = "../gix-transport", optional = true }
gix-diff = { version = "^0.33.0", path = "../gix-diff" }
gix-mailmap = { version = "^0.16.0", path = "../gix-mailmap" }
gix-features = { version = "^0.32.0", path = "../gix-features", features = ["progress", "once_cell"] }
gix-trace = { version = "^0.1.2", path = "../gix-trace" }
gix-attributes = { version = "^0.15.0", path = "../gix-attributes" }
gix-ignore = { version = "^0.5.0", path = "../gix-ignore" }
gix-glob = { version = "^0.10.0", path = "../gix-glob" }
gix-credentials = { version = "^0.17.0", path = "../gix-credentials" }
gix-prompt = { version = "^0.5.3", path = "../gix-prompt" }
gix-index = { version = "^0.21.0", path = "../gix-index" }
gix-worktree = { version = "^0.22.0", path = "../gix-worktree" }
gix-hashtable = { version = "^0.2.3", path = "../gix-hashtable" }
gix-commitgraph = { version = "^0.18.0", path = "../gix-commitgraph" }
prodash = { version = "25.0", optional = true, default-features = false, features = ["progress-tree"] }
once_cell = "1.14.0"
signal-hook = { version = "0.3.9", default-features = false }
thiserror = "1.0.26"
log = "0.4.14"
serde = { version = "1.0.114", optional = true, default-features = false, features = ["derive"]}
smallvec = "1.9.0"
async-std = { version = "1.12.0", 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 }
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"]
rustdoc-args = ["--cfg", "docsrs"]