Files
uberspace-cli/Cargo.toml
Felix Förtsch f0604a4aee rewrite uberspace-cli in rust (phase 1 + 2)
single binary `uc` replaces bash asteroids script, unifies v7/v8
behind a stable interface with TOML config. implements registry CRUD,
SSH passthrough with v7/v8 translation, status collection/caching,
legacy import. 24 unit tests pass.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-04-08 11:05:35 +02:00

20 lines
365 B
TOML

[package]
name = "uc"
version = "2026.3.3"
edition = "2024"
[[bin]]
name = "uc"
path = "src/main.rs"
[dependencies]
clap = { version = "4", features = ["derive"] }
serde = { version = "1", features = ["derive"] }
toml = "0.8"
dirs = "6"
colored = "3"
chrono = { version = "0.4", default-features = false, features = ["clock"] }
[dev-dependencies]
tempfile = "3"