Introduce a new config struct the lives above the raw disk implementation.

This should let us include values that would not be written to disk like the folder containing the config.
This commit is contained in:
Tom Alexander
2023-10-18 21:25:37 -04:00
parent 6668af2025
commit 672ca07a0e
6 changed files with 52 additions and 15 deletions

View File

@@ -11,6 +11,6 @@ clap = { version = "4.4.6", default-features = false, features = ["std", "color"
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"] }
tokio = { version = "1.30.0", default-features = false, features = ["rt", "rt-multi-thread", "fs", "io-util"] }
# display, parse | indexmap, preserve_order
toml = "0.8.2"