[package]
edition = "2021"
rust-version = "1.85"
name = "sylphx-cli"
version = "0.1.0"
build = false
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Sylphx Platform CLI — dogfoods the Rust Management SDK"
homepage = "https://sylphx.com"
documentation = "https://docs.rs/sylphx-cli"
readme = "README.md"
keywords = [
"sylphx",
"cli",
"paas",
]
categories = ["command-line-utilities"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/SylphxAI/platform"
[[bin]]
name = "sylphx"
path = "src/main.rs"
[[test]]
name = "cli_launch"
path = "tests/cli_launch.rs"
[dependencies.anyhow]
version = "1"
[dependencies.clap]
version = "4"
features = [
"derive",
"env",
]
[dependencies.reqwest]
version = "0.12"
features = [
"json",
"rustls-tls",
]
default-features = false
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.sylphx-sdk-core]
version = "0.1.0"
[dependencies.sylphx-sdk-management]
version = "0.1.0"
[dependencies.sylphx-wire]
version = "0.1.0"
[dependencies.tokio]
version = "1"
features = [
"rt-multi-thread",
"macros",
]
[dev-dependencies.assert_cmd]
version = "2"
[dev-dependencies.predicates]
version = "3"
[dev-dependencies.sylphx-wire-mock]
version = "0.1.0"
[dev-dependencies.tempfile]
version = "3"
[dev-dependencies.tokio]
version = "1"
features = [
"rt-multi-thread",
"macros",
"process",
]