[package]
edition = "2021"
rust-version = "1.74"
name = "evolving"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "git for decisions — an immutable, content-addressed ledger of human-authored decisions that resurfaces when a bound check goes red"
readme = "README.md"
keywords = [
"decisions",
"cli",
"ledger",
"provenance",
"testing",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "Apache-2.0"
repository = "https://github.com/wan9yu/evolving"
[lib]
name = "ev"
path = "src/lib.rs"
[[bin]]
name = "ev"
path = "src/main.rs"
[[test]]
name = "age_staleness"
path = "tests/age_staleness.rs"
[[test]]
name = "brief"
path = "tests/brief.rs"
[[test]]
name = "capture"
path = "tests/capture.rs"
[[test]]
name = "check_run"
path = "tests/check_run.rs"
[[test]]
name = "cli"
path = "tests/cli.rs"
[[test]]
name = "counter_test_exec"
path = "tests/counter_test_exec.rs"
[[test]]
name = "dogfood_dependency_drift"
path = "tests/dogfood_dependency_drift.rs"
[[test]]
name = "dogfood_gateway_m1"
path = "tests/dogfood_gateway_m1.rs"
[[test]]
name = "dogfood_gateway_m2"
path = "tests/dogfood_gateway_m2.rs"
[[test]]
name = "events"
path = "tests/events.rs"
[[test]]
name = "from_git"
path = "tests/from_git.rs"
[[test]]
name = "golden_vectors"
path = "tests/golden_vectors.rs"
[[test]]
name = "green_exit_code"
path = "tests/green_exit_code.rs"
[[test]]
name = "list_log"
path = "tests/list_log.rs"
[[test]]
name = "offline"
path = "tests/offline.rs"
[[test]]
name = "resurface"
path = "tests/resurface.rs"
[[test]]
name = "silently_unbound"
path = "tests/silently_unbound.rs"
[[test]]
name = "state_contract"
path = "tests/state_contract.rs"
[[test]]
name = "why_reopen"
path = "tests/why_reopen.rs"
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.hex]
version = "0.4"
[dependencies.serde_json]
version = "1"
[dependencies.sha2]
version = "0.10"
[dependencies.time]
version = "0.3"
features = [
"formatting",
"parsing",
]