Add serde and toml for parsing the config.

This commit is contained in:
Tom Alexander
2023-10-18 20:06:30 -04:00
parent 63b0619094
commit 5f82d7a469
3 changed files with 105 additions and 1 deletions

View File

@@ -6,7 +6,11 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
# TODO: maybe error-context, suggestions, usage | env
# error-context, suggestions, usage | env
clap = { version = "4.4.6", default-features = false, features = ["std", "color", "help", "derive"] }
organic = "0.1.12"
# | alloc, rc, serde_derive, unstable
serde = { version = "1.0.189", default-features = false, features = ["std", "derive"] }
tokio = { version = "1.30.0", default-features = false, features = ["rt", "rt-multi-thread"] }
# display, parse | indexmap, preserve_order
toml = "0.8.2"