Some checks failed
Run Check Script / check (pull_request) Failing after 2s
- Migrate callers from SecretManager to harmony_config::get_or_prompt - Lazy-init global ConfigClient from HARMONY_SECRET_NAMESPACE - Convert remaining Secret derives to Config + #[config(secret)] - Remove deprecated SecretManager - Retry::spawn → start; drop unused import; cfg-gate nm_bond_mode - allow(deprecated) on legacy ApplicationScore examples
25 lines
649 B
TOML
25 lines
649 B
TOML
[package]
|
|
name = "example_fleet_rpi_setup"
|
|
version.workspace = true
|
|
edition = "2024"
|
|
license.workspace = true
|
|
|
|
[[bin]]
|
|
name = "fleet_rpi_setup"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
harmony = { path = "../../harmony" }
|
|
harmony-fleet-deploy = { path = "../../fleet/harmony-fleet-deploy" }
|
|
harmony_cli = { path = "../../harmony_cli" }
|
|
harmony_config = { path = "../../harmony_config" }
|
|
harmony_types = { path = "../../harmony_types" }
|
|
tokio.workspace = true
|
|
log.workspace = true
|
|
anyhow.workspace = true
|
|
clap.workspace = true
|
|
reqwest = { workspace = true }
|
|
serde = { workspace = true, features = ["derive"] }
|
|
serde_json.workspace = true
|
|
base64 = "0.22"
|