lints.workspace = true
[package]
name = "gix-odb"
version = "0.64.0"
repository = "https://github.com/GitoxideLabs/gitoxide"
authors = ["Sebastian Thiel <sebastian.thiel@icloud.com>"]
license = "MIT OR Apache-2.0"
description = "Implements various git object databases"
edition = "2021"
include = ["src/**/*", "LICENSE-*"]
rust-version = "1.65"
autotests = false
[lib]
doctest = false
[features]
serde = ["dep:serde", "gix-hash/serde", "gix-object/serde", "gix-pack/serde"]
[dependencies]
gix-features = { version = "^0.39.0", path = "../gix-features", features = ["rustsha1", "walkdir", "zlib", "crc32"] }
gix-hashtable = { version = "^0.6.0", path = "../gix-hashtable" }
gix-hash = { version = "^0.15.0", path = "../gix-hash" }
gix-date = { version = "^0.9.1", path = "../gix-date" }
gix-path = { version = "^0.10.12", path = "../gix-path" }
gix-quote = { version = "^0.4.13", path = "../gix-quote" }
gix-object = { version = "^0.45.0", path = "../gix-object" }
gix-pack = { version = "^0.54.0", path = "../gix-pack", default-features = false }
gix-fs = { version = "^0.12.0", path = "../gix-fs" }
serde = { version = "1.0.114", optional = true, default-features = false, features = ["derive"] }
tempfile = "3.10.0"
thiserror = "1.0.26"
parking_lot = { version = "0.12.0" }
arc-swap = "1.5.0"
document-features = { version = "0.2.0", optional = true }
[package.metadata.docs.rs]
features = ["document-features", "serde"]