sylphx-cli 0.1.3

Sylphx Platform CLI — dogfoods the Rust Management SDK
[package]
name = "sylphx-cli"
version = "0.1.3"
edition.workspace = true
rust-version.workspace = true
license = "MIT OR Apache-2.0"
publish = true
description = "Sylphx Platform CLI — dogfoods the Rust Management SDK"
repository = "https://github.com/SylphxAI/platform"
homepage = "https://sylphx.com"
documentation = "https://docs.rs/sylphx-cli"
readme = "README.md"
keywords = ["sylphx", "cli", "paas"]
categories = ["command-line-utilities"]

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

[dependencies]
sylphx-sdk-management = { path = "../sylphx-sdk-management", version = "0.1.3" }
sylphx-sdk-core = { path = "../sylphx-sdk-core", version = "0.1.1" }
sylphx-wire = { path = "../sylphx-wire", version = "0.1.3" }
clap = { version = "4", features = ["derive", "env"] }
reqwest = { version = "0.12", default-features = false, features = ["json", "rustls-tls"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
tokio = { version = "1", features = ["rt-multi-thread", "macros"] }
anyhow = "1"
dirs = "5"

[dev-dependencies]
sylphx-wire-mock = { path = "../sylphx-wire-mock", version = "0.1.2" }
assert_cmd = "2"
predicates = "3"
tempfile = "3"
tokio = { version = "1", features = ["rt-multi-thread", "macros", "process"] }