diff options
author | Vika <vika@fireburn.ru> | 2024-08-01 22:50:28 +0300 |
---|---|---|
committer | Vika <vika@fireburn.ru> | 2024-08-02 16:13:39 +0300 |
commit | 2318a33f9b359ae27b52cd9a19db1f6782d8dae3 (patch) | |
tree | 5f4dc1ad73d5c4104679a1976781861ec23cb20e /util | |
parent | 61a6bf6b80aea18d8b7af159d504004a29e50576 (diff) | |
download | kittybox-2318a33f9b359ae27b52cd9a19db1f6782d8dae3.tar.zst |
Upgrade dependencies and fix deprecated functionality
I think I managed to not lose any functionality from my dependencies. sqlparser remains unupgraded, but that's mostly because it is only used in one example and it's not worth it to upgrade right now.
Diffstat (limited to 'util')
-rw-r--r-- | util/Cargo.toml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/util/Cargo.toml b/util/Cargo.toml index 0425849..3d8327c 100644 --- a/util/Cargo.toml +++ b/util/Cargo.toml @@ -11,8 +11,8 @@ fs = ["rand", "tokio", "tokio/fs"] [dependencies] serde = { version = "^1.0.170", features = ["derive"] } serde_json = "^1.0.64" -axum-core = "^0.3.4" -http = "^0.2.7" +axum-core = "^0.4.3" +http = "^1.0" async-trait = "^0.1.50" futures-util = "^0.3.14" uuid = "^1.3.3" @@ -24,6 +24,6 @@ version = "^1.16.1" features = ["tracing"] optional = true [dependencies.sqlx] -version = "0.7" +version = "0.8" features = ["json"] optional = true \ No newline at end of file |