- Added "env" feature to clap for env var support in CLI args - Added rust-toolchain.toml to force MSVC target on Windows Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
23 lines
570 B
TOML
23 lines
570 B
TOML
[package]
|
|
name = "reckue-agent"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[[bin]]
|
|
name = "reckue-agent"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
tokio = { version = "1", features = ["full"] }
|
|
tokio-tungstenite = { version = "0.24", features = ["native-tls"] }
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
uuid = { version = "1", features = ["v4"] }
|
|
tracing = "0.1"
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
|
portable-pty = "0.8"
|
|
futures-util = "0.3"
|
|
url = "2"
|
|
native-tls = "0.2"
|
|
clap = { version = "4", features = ["derive", "env"] }
|