vgi-cli 0.4.15

The `vgi` command: `vgi repo init` turns VGI commit trust on for a repository in a manual or personal-account git namespace, acting as you through `gh` (GitHub) or your own token (Forgejo) — the same bootstrap the community's bridge runs.
[package]
# `vgi` itself is taken on crates.io by an unrelated project; the binary is
# still `vgi`.
name = "vgi-cli"
description = "The `vgi` command: `vgi repo init` turns VGI commit trust on for a repository in a manual or personal-account git namespace, acting as you through `gh` (GitHub) or your own token (Forgejo) — the same bootstrap the community's bridge runs."
readme = "README.md"
keywords = ["git", "github", "forgejo", "did", "trust-registry"]
categories = ["command-line-utilities", "development-tools"]
version.workspace = true
edition.workspace = true
publish.workspace = true
rust-version.workspace = true
authors.workspace = true
license.workspace = true
repository.workspace = true

[lib]
name = "vgi_cli"
path = "src/lib.rs"

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

[dependencies]
# The plans and request shapes are the adapters' own, so what `vgi repo init`
# writes is byte-for-byte what the bridge would.
vgi-forge = { workspace = true }
vgi-forge-github = { workspace = true }
vgi-forge-forgejo = { workspace = true }
# Only for `build_resolver`: the verifier's public-hosts-only DID resolver,
# used to read the VTC's TrustRegistry referral when `--registry` is omitted.
verify-trust = { workspace = true }
anyhow = { workspace = true }
base64 = { workspace = true }
clap = { workspace = true }
reqwest = { workspace = true }
serde_json = { workspace = true }
tokio = { workspace = true, features = ["macros", "rt-multi-thread"] }
url = { workspace = true }

[dev-dependencies]
tempfile = { workspace = true }
wiremock = { workspace = true }