diff options
| author | Nathan Perry <np@nathanperry.dev> | 2024-05-08 10:28:04 -0400 |
|---|---|---|
| committer | Nathan Perry <np@nathanperry.dev> | 2024-05-08 14:16:01 -0400 |
| commit | fe467f60d99efa54f2ef64606e7d39b9b06d7294 (patch) | |
| tree | a62bb50fedb1959d1a155878f0ff0ab7b1f699b6 /Cargo.toml | |
| parent | 48aa684dece2696e21fd871eb6f3825f28fe0200 (diff) | |
update all deps
Diffstat (limited to 'Cargo.toml')
| -rw-r--r-- | Cargo.toml | 71 |
1 files changed, 36 insertions, 35 deletions
@@ -1,8 +1,8 @@ [package] name = "thulani" -version = "0.1.7" -authors = ["Nathan Perry <np@nathanperry.dev>"] -edition = "2018" +version = "0.2.0" +authors = ["Nathan Perry <np@npry.dev>"] +edition = "2021" [features] default = ["db", "games"] @@ -10,40 +10,41 @@ db = ["diesel", "postgres", "r2d2_postgres", "diesel_migrations"] games = [] [dependencies] -lazy_static = "~1.4" -anyhow = "^1.0" -thiserror = "^1.0" -log = "^0.4" -typemap = "^0.3" -url = "~1.7" -dotenv = "^0.13" -chrono = "^0.4" -time = "^0.1" -fern = { version = "^0.5", features = ["colored"] } -diesel = { version = "2.0", features = ["postgres", "chrono", "r2d2"], optional = true } -ctrlc = { version = "~3.1", features = ["termination"] } -rand = "^0.6" -either = "~1.5" -reqwest = "^0.9" -sha1 = { version = "^0.6", features = ["std"] } -regex = "~1.1" -itertools = "^0.8" -serde = { version = "~1.0", features = ["derive"] } -serde_json = "~1.0" -timeago = "^0.1" -statrs = "^0.10" -fnv = "~1.0" -pest = "~2.1" -pest_derive = "~2.1" -postgres = { version = "^0.19", optional = true, features = ["with-chrono-0_4"] } -r2d2_postgres = { version = "^0.18", optional = true } -diesel_migrations = { version = "2.0", optional = true } -envconfig = "^0.8" -envconfig_derive = "^0.8" +lazy_static = "1.4" +anyhow = "1.0" +thiserror = "1.0" +log = "0.4" +typemap = "0.3" +url = "2.5" +dotenv = "0.15" +chrono = "0.4" +time = "0.3" +fern = { version = "0.6", features = ["colored"] } +diesel = { version = "2.1", features = ["postgres", "chrono", "r2d2"], optional = true } +ctrlc = { version = "3.4", features = ["termination"] } +rand = "0.8" +either = "1.10" +reqwest = { version = "0.12", features = ["json"] } +sha1 = { version = "0.10", features = ["std"] } +regex = "1.10" +itertools = "0.12" +serde = { version = "1.0", features = ["derive"] } +serde_json = "1.0" +timeago = "0.4" +statrs = "0.16" +fnv = "1.0" +pest = "2.7" +pest_derive = "2.7" +postgres = { version = "0.19", optional = true, features = ["with-chrono-0_4"] } +r2d2_postgres = { version = "0.18", optional = true } +diesel_migrations = { version = "2.1", optional = true } +envconfig = "0.10" +envconfig_derive = "0.10" +tap = "1.0" +songbird = "0.4" [dependencies.serenity] +version = "0.12" default-features = false features = ["builder", "cache", "client", "framework", "gateway", "http", "model", "utils", "voice", "standard_framework", "rustls_backend"] -git = "https://cgit.nathanperry.dev/git/fork/serenity" -branch = "master" |
