[package]
edition = "2021"
rust-version = "1.79"
name = "gitmeta"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Fast per-file git metadata (last-commit time/author/subject, churn, tracked/ignored) resolved by scanning a working tree once."
readme = "README.md"
keywords = [
"git",
"metadata",
"vcs",
"blame",
"churn",
]
categories = ["development-tools"]
license = "MIT"
repository = "https://github.com/richardwooding/gitmeta-rs"
[package.metadata.docs.rs]
all-features = true
[features]
default = []
tokio = ["dep:tokio"]
[lib]
name = "gitmeta"
path = "src/lib.rs"
[[test]]
name = "async_api"
path = "tests/async_api.rs"
[[test]]
name = "cache"
path = "tests/cache.rs"
[[test]]
name = "pool"
path = "tests/pool.rs"
[dependencies.jiff]
version = "0.2"
[dependencies.thiserror]
version = "2"
[dependencies.tokio]
version = "1"
features = [
"process",
"rt",
]
optional = true
[dev-dependencies.tempfile]
version = "3"
[dev-dependencies.tokio]
version = "1"
features = [
"process",
"rt",
"rt-multi-thread",
"macros",
"time",
]