runtime-cli 0.1.0

Command-line client for managing git projects on Runtime
Documentation
[package]
name = "runtime-cli"
edition.workspace = true
license.workspace = true
version.workspace = true
description = "Command-line client for managing git projects on Runtime"
repository = "https://github.com/briannadoubt/Runtime"
homepage = "https://gitruntime.com"
documentation = "https://docs.rs/runtime-cli"
readme = "README.md"
keywords = ["runtime", "git", "cli", "graphql", "devtools"]
categories = ["command-line-utilities", "development-tools"]

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

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

[dependencies]
anyhow.workspace = true
clap = { version = "4", features = ["derive", "env"] }
clap_complete = "4"
reqwest = { version = "0.12", default-features = false, features = ["json", "rustls-tls", "blocking"] }
serde = { workspace = true }
serde_json = { workspace = true }
tokio = { workspace = true }
rpassword = "7"
tempfile.workspace = true

[dev-dependencies]
runtime-api = { path = "../runtime-api" }
runtime-auth = { path = "../runtime-auth" }
runtime-domain = { path = "../runtime-domain" }
runtime-events = { path = "../runtime-events" }
runtime-git = { path = "../runtime-git" }
runtime-storage = { path = "../runtime-storage" }
axum.workspace = true
reqwest = { version = "0.12", default-features = false, features = ["json", "rustls-tls"] }
serde_json.workspace = true
tempfile.workspace = true