diff --git a/Cargo.lock b/Cargo.lock index b23ab5e..e557443 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -91,9 +91,9 @@ checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" [[package]] name = "axum" -version = "0.5.8" +version = "0.5.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8b4d4f9a5ca8b1ab8de59e663e68c6207059239373ca72980f5be7ab81231f74" +checksum = "33d590cacd53140ff87cc2e192eb22fc3dc23c5b3f93b0d4f020677f98e8c629" dependencies = [ "async-trait", "axum-core", diff --git a/server/Cargo.toml b/server/Cargo.toml index 7cf9797..9815567 100644 --- a/server/Cargo.toml +++ b/server/Cargo.toml @@ -4,7 +4,7 @@ version = "0.0.0" edition = "2021" [dependencies] -axum = { version = "0.5.8", features = ["multipart"] } +axum = { version = "0.5.9", features = ["multipart"] } axum-auth = "0.2.0" base64 = "0.13.0" byte-unit = "4.0.14" diff --git a/types/Cargo.toml b/types/Cargo.toml index 2c33910..af84f28 100644 --- a/types/Cargo.toml +++ b/types/Cargo.toml @@ -13,7 +13,7 @@ uuid = "1.1.2" anyhow = "1.0.58" serde = { version = "1.0.137", features = ["derive"] } zeroize = { version = "1.5.5", features = ["derive"] } -axum = { version = "0.5.8", optional = true } +axum = { version = "0.5.9", optional = true } toml = { version = "0.5.9", optional = true } dirs = { version = "4.0.0", optional = true } crypto-utils = { version = "0.2.0", features = ["sha"], optional = true }