Allow specifying configuration params in env vars (#83)

This commit is contained in:
Dustin J. Mitchell
2025-02-02 22:39:45 -05:00
committed by GitHub
parent 5ffd179dcc
commit 7f51d2fa1f
6 changed files with 191 additions and 44 deletions

View File

@ -14,7 +14,7 @@ thiserror = "2.0"
futures = "^0.3.25"
serde_json = "^1.0"
serde = { version = "^1.0.147", features = ["derive"] }
clap = { version = "^4.5.6", features = ["string"] }
clap = { version = "^4.5.6", features = ["string", "env"] }
log = "^0.4.17"
env_logger = "^0.11.5"
rusqlite = { version = "0.32", features = ["bundled"] }
@ -22,3 +22,4 @@ chrono = { version = "^0.4.38", features = ["serde"] }
actix-rt = "2"
tempfile = "3"
pretty_assertions = "1"
temp-env = "0.3"