gitmeta 0.1.0

Fast per-file git metadata (last-commit time/author/subject, churn, tracked/ignored) resolved by scanning a working tree once.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[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",
]