aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
authorMax Audron <audron@cocaine.farm>2021-10-16 13:49:23 +0200
committerMax Audron <audron@cocaine.farm>2021-10-16 13:53:22 +0200
commit7cbe1e70e440c29375425182e661ea9ff7bd6300 (patch)
treede36d71d9167eed333f9a216f2d1588941b528c0 /Cargo.toml
parentmove bot initialization out of macro (diff)
rework configuration to allow extensibility by hooksconfig-rework
Diffstat (limited to '')
-rw-r--r--Cargo.toml7
1 files changed, 4 insertions, 3 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 6d2f5e3..e0f9d2a 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -12,14 +12,15 @@ irc-proto = "0.15"
sasl = "0.5"
base64 = "0.13"
-serde = { version = "1.0", features = ["derive"] }
-serde_json = "1.0"
+figment = { version = "0.10", features = ["env", "toml"] }
+serde = { version = "1", features = ["derive"] }
+serde_json = "1"
toml = "0.5"
anyhow = "1"
futures = "0.3"
-tokio = { version = "1.5.0", features = ["full", "rt-multi-thread"] }
+tokio = { version = "1", features = ["full", "rt-multi-thread"] }
tracing = "0.1"
tracing-subscriber = "0.2"