feat(rust): add configuration parsing and an error type

This commit is contained in:
Reed Krantz
2026-02-18 19:37:30 -06:00
parent 4365e9f739
commit 2f6157b062
4 changed files with 72 additions and 5 deletions

View File

@@ -6,7 +6,13 @@ edition = "2024"
[dependencies]
tokio = { version = "*", features = ["full"] }
serde = { version = "*", features = ["derive"] }
either = { version = "*", features = ["serde"] }
thiserror = "*"
clap = { version = "*", features = ["derive"] }
anyhow = "*"
tracing = "*"
tracing-subscriber = "*"
clap = { version = "*", features = ["derive"] }
figment = { version = "*", features = ["toml", "env", "json"] }