gitops-agent 0.1.0

GitOps Agent - continuously monitors a remote git repository against local/any change, and performs actions (e.g. executes a provided command) - given a periodicity that is defined as a time intervals.
[package]
name = "gitops-agent"
version = "0.1.0"
edition = "2021"
authors = ["kitplummer@gmail.com"]
description = "GitOps Agent - continuously monitors a remote git repository against local/any change, and performs actions (e.g. executes a provided command) - given a periodicity that is defined as a time intervals."
repository = "https://github.com/kitplummer/goa"
homepage = "https://kitplummer.github.io/goa"
readme = "README.md"
license = "MIT"
keywords = ["gitops", "git", "ci", "automation", "devops"]
categories = ["command-line-utilities", "development-tools"]

[[bin]]
name = "goa"
path = "src/main.rs"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
log = "0.4"
env_logger = "0.11"
anyhow = "1.0"
chrono = "0.4"
clokwerk = "0.4"
git2 = "0.20"
clap = { version = "4", features = ["derive"] }
url = "2"
uuid = { version = "1", features = ["serde", "v4"] }
openssl-sys = { version = "0.9", features = ["vendored"] }
run_script = "0.11"
wait-timeout = "0.2"
reqwest = { version = "0.12", features = ["blocking", "json"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"

[dev-dependencies]
assert_cmd = "2"
predicates = "3"