[package]
edition = "2024"
name = "git-stratum"
version = "0.3.2"
authors = ["Jordan Morris <165378667+jordan-314@users.noreply.github.com>"]
build = false
exclude = ["test-repos.zip"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = """
High(er) level repository for mining git repositories, this library
abstracts git2-rs for efficient processing.
"""
documentation = "https://docs.rs/git-stratum"
readme = "README.md"
keywords = [
"git",
"mining",
"repository",
"commit",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/jordan-314/git-stratum"
[lib]
name = "stratum"
path = "src/lib.rs"
[[test]]
name = "commit"
path = "tests/commit.rs"
[[test]]
name = "repository"
path = "tests/repository.rs"
[dependencies.chrono]
version = "0.4.44"
[dependencies.git-url-parse]
version = "0.6.0"
[dependencies.git2]
version = "0.20.4"
features = [
"https",
"ssh",
]
[dependencies.openssl]
version = "0.10"
features = ["vendored"]
[dependencies.regex]
version = "1.12.3"
[dependencies.thiserror]
version = "2.0.18"
[dev-dependencies.mockall]
version = "0.14.0"
[dev-dependencies.once_cell]
version = "1.21.4"
[dev-dependencies.sha1]
version = "0.10.6"
[dev-dependencies.tempfile]
version = "3.27.0"
[dev-dependencies.todo]
version = "0.3.0"
[dev-dependencies.zip]
version = "8.5.1"