aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
authorNathan Perry <np@nathanperry.dev>2024-08-16 06:40:25 -0400
committerNathan Perry <np@nathanperry.dev>2024-08-16 06:40:25 -0400
commit5a2dc4070c1d14f22a7671c6f82ca2f4578369bd (patch)
tree4dfa57f42a6cca70f1cac5363b7b547e46318c26 /Cargo.toml
parent728d951b87ae9ba15ca1453d24ce9ce618badd5a (diff)
rework logging to use tracing via grate
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml5
1 files changed, 3 insertions, 2 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 8ccd283..fbac972 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -27,6 +27,7 @@ windows_autostart_postgres = []
[workspace.dependencies]
lazy_static = "1.4"
rand = "0.8"
+grate = { git = "https://pub.npry.dev/grate" }
thulani_calc.path = "calc"
@@ -34,15 +35,14 @@ thulani_calc.path = "calc"
lazy_static.workspace = true
rand.workspace = true
thulani_calc.workspace = true
+grate.workspace = true
anyhow = "1.0"
thiserror = "1.0"
-log = "0.4"
url = "2.5"
dotenv = "0.15"
chrono = "0.4"
time = "0.3"
-fern = { version = "0.6", features = ["colored"] }
reqwest = { version = "0.11", features = ["json"] }
sha1 = { version = "0.10", features = ["std"] }
regex = "1.10"
@@ -72,6 +72,7 @@ diesel_async_migrations = { version = "0.12", optional = true }
tokio-postgres = { version = "0.7", optional = true, features = ["with-chrono-0_4"] }
deadpool-postgres = { version = "0.13", optional = true }
+
[dependencies.serenity]
version = "0.12"
default-features = false