aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
authorlukeflo2025-02-21 20:17:27 +0100
committerlukeflo2025-02-21 20:17:27 +0100
commitddb6326c1896b82b759d930fb08ea46a820e275a (patch)
tree8fd4db8081770e0c4b4bdbf3c680c48637da8a03 /Cargo.toml
parentf60be8b6b1e5987613081c9ad8d63a26a1a1bac9 (diff)
downloadbibiman-ddb6326c1896b82b759d930fb08ea46a820e275a.tar.gz
bibiman-ddb6326c1896b82b759d930fb08ea46a820e275a.zip
parse config file
+ set default values for config fields + merge fields named in the config file with default values + values from file take precedence over default values + to accomplish this, all config values are wrapped in `Option<T>`
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml2
1 files changed, 1 insertions, 1 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 971df49..c2f42a0 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -27,7 +27,7 @@ rand = "0.8"
itertools = "0.13.0"
lexopt = "0.3.0"
nucleo-matcher = "0.3.1"
-ratatui = { version = "0.29.0", features = ["unstable-rendered-line-info"]}
+ratatui = { version = "0.29.0", features = ["unstable-rendered-line-info", "serde"]}
signal-hook = "0.3.17"
tokio = { version = "1.39.3", features = ["full"] }
tokio-util = "0.7.12"