[package] name = "wfectl" version.workspace = true edition.workspace = true license.workspace = true repository.workspace = true homepage.workspace = true description = "Command-line client for wfe-server" [[bin]] name = "wfectl" path = "src/main.rs" [dependencies] # `wfectl validate` compiles YAML locally so users get instant feedback # without a server round-trip. Enable the full executor feature set so every # step type the server supports is also recognized by the CLI. wfe-yaml = { workspace = true, features = ["rustlang", "buildkit", "containerd", "kubernetes", "deno"] } wfe-server-protos = { workspace = true } tonic = { version = "0.14", features = ["tls-native-roots"] } tokio = { workspace = true } tokio-stream = { workspace = true } clap = { version = "4", features = ["derive", "env"] } serde = { workspace = true } serde_json = { workspace = true } serde_yaml = { workspace = true } toml = "0.8" reqwest = { workspace = true, features = ["rustls-tls"] } tracing = { workspace = true } tracing-subscriber = { workspace = true } chrono = { workspace = true } dirs = "5" sha2 = "0.10" base64 = "0.22" rand = "0.8" url = { workspace = true } prost-types = "0.14" prost = "0.14" comfy-table = "7" indicatif = "0.17" hyper = { version = "1", features = ["server", "http1"] } hyper-util = { version = "0.1", features = ["tokio"] } http-body-util = "0.1" anyhow = "1" thiserror = { workspace = true } futures = { workspace = true } [dev-dependencies] pretty_assertions = { workspace = true } tokio = { workspace = true, features = ["test-util"] } tempfile = { workspace = true } wiremock = { workspace = true } wfe-core = { workspace = true, features = ["test-support"] } wfe = { path = "../wfe" }