[package]
edition = "2018"
rust-version = "1.90"
name = "gitsync"
version = "0.2.1"
authors = ["David McKay <david@rawkode.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Library that facilitates monitoring Git repositories for changes. Could enable GitOps"
readme = "README.md"
license = "MIT"
repository = "https://github.com/rawkode/gitsync"
[lib]
name = "gitsync"
path = "src/lib.rs"
[[test]]
name = "cucumber"
path = "tests/cucumber.rs"
harness = false
[dependencies.gix]
version = "0.84"
features = [
"blocking-http-transport-reqwest-rust-tls",
"blocking-network-client",
]
[dependencies.log]
version = "0.4"
[dev-dependencies.async-trait]
version = "0.1"
[dev-dependencies.cucumber]
version = "0.23"
[dev-dependencies.tempfile]
version = "3.27"
[dev-dependencies.tokio]
version = "1"
features = [
"macros",
"rt-multi-thread",
]