Some checks failed
CI / Rustfmt (push) Successful in 51s
CI / Clippy (push) Successful in 2m8s
CI / Web Blocking Checks (push) Successful in 47s
CI / Security Blocking Checks (push) Successful in 9s
CI / Cargo Audit & Deny (push) Successful in 2m3s
CI / Web Advisory Checks (push) Successful in 25s
Publish Images And Chart / Resolve Publish Metadata (push) Successful in 1s
Publish Images And Chart / Publish init-packs (push) Failing after 11s
Publish Images And Chart / Publish init-user (push) Failing after 11s
Publish Images And Chart / Publish migrations (push) Failing after 11s
Publish Images And Chart / Publish sensor (push) Failing after 6s
Publish Images And Chart / Publish web (push) Failing after 9s
Publish Images And Chart / Publish worker (push) Failing after 7s
Publish Images And Chart / Publish api (push) Failing after 7s
Publish Images And Chart / Publish executor (push) Failing after 10s
Publish Images And Chart / Publish notifier (push) Failing after 10s
Publish Images And Chart / Publish Helm Chart (push) Has been skipped
CI / Security Advisory Checks (push) Successful in 6m20s
CI / Tests (push) Successful in 1h35m45s
76 lines
1.5 KiB
TOML
76 lines
1.5 KiB
TOML
[package]
|
|
name = "attune-cli"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
authors.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
|
|
[[bin]]
|
|
name = "attune"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
# Internal dependencies
|
|
attune-common = { path = "../common" }
|
|
|
|
# Async runtime
|
|
tokio = { workspace = true }
|
|
futures = { workspace = true }
|
|
|
|
# CLI framework
|
|
clap = { workspace = true, features = ["derive", "env", "string"] }
|
|
|
|
# HTTP client
|
|
reqwest = { workspace = true, features = ["multipart", "stream"] }
|
|
|
|
# Serialization
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
serde_yaml_ng = { workspace = true }
|
|
|
|
# Error handling
|
|
anyhow = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
|
|
# Date/Time
|
|
chrono = { workspace = true }
|
|
|
|
# Configuration
|
|
config = { workspace = true }
|
|
dirs = "6.0"
|
|
|
|
# URL encoding
|
|
urlencoding = "2.1"
|
|
url = { workspace = true }
|
|
|
|
# Archive/compression
|
|
tar = { workspace = true }
|
|
flate2 = { workspace = true }
|
|
|
|
# WebSocket client (for notifier integration)
|
|
tokio-tungstenite = { workspace = true }
|
|
|
|
# Hashing
|
|
sha2 = { workspace = true }
|
|
|
|
# Terminal UI
|
|
colored = "3.1"
|
|
comfy-table = { version = "7.2", features = ["custom_styling"] }
|
|
dialoguer = "0.12"
|
|
|
|
# Authentication
|
|
jsonwebtoken = { workspace = true }
|
|
|
|
# Logging
|
|
tracing = { workspace = true }
|
|
tracing-subscriber = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
tempfile = { workspace = true }
|
|
wiremock = "0.6"
|
|
assert_cmd = "2.2"
|
|
predicates = "3.1"
|
|
mockito = "1.7"
|
|
tokio-test = "0.4"
|