[package]
edition = "2021"
name = "runtime-cli"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Command-line client for managing git projects on 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",
]
license = "MIT"
repository = "https://github.com/briannadoubt/Runtime"
[lib]
name = "runtime_cli"
path = "src/lib.rs"
[[bin]]
name = "runtime"
path = "src/main.rs"
[[test]]
name = "cli_against_live_api_e2e"
path = "tests/cli_against_live_api_e2e.rs"
[[test]]
name = "package_metadata"
path = "tests/package_metadata.rs"
[dependencies.anyhow]
version = "1"
[dependencies.clap]
version = "4"
features = [
"derive",
"env",
]
[dependencies.clap_complete]
version = "4"
[dependencies.reqwest]
version = "0.12"
features = [
"json",
"rustls-tls",
"blocking",
]
default-features = false
[dependencies.rpassword]
version = "7"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.tempfile]
version = "3"
[dependencies.tokio]
version = "1"
features = [
"macros",
"process",
"rt-multi-thread",
"signal",
]
[dev-dependencies.axum]
version = "0.8"
features = ["ws"]
[dev-dependencies.reqwest]
version = "0.12"
features = [
"json",
"rustls-tls",
]
default-features = false
[dev-dependencies.serde_json]
version = "1"
[dev-dependencies.tempfile]
version = "3"