[package]
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]
vgi-forge = { workspace = true }
vgi-forge-github = { workspace = true }
vgi-forge-forgejo = { workspace = true }
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 }