diff options
| author | Nathan Perry <np@nathanperry.dev> | 2024-08-16 06:40:25 -0400 |
|---|---|---|
| committer | Nathan Perry <np@nathanperry.dev> | 2024-08-16 06:40:25 -0400 |
| commit | 5a2dc4070c1d14f22a7671c6f82ca2f4578369bd (patch) | |
| tree | 4dfa57f42a6cca70f1cac5363b7b547e46318c26 /Cargo.toml | |
| parent | 728d951b87ae9ba15ca1453d24ce9ce618badd5a (diff) | |
rework logging to use tracing via grate
Diffstat (limited to 'Cargo.toml')
| -rw-r--r-- | Cargo.toml | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -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 |
