diff --git a/Cargo.lock b/Cargo.lock index f5ea1e5..a584414 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -207,9 +207,9 @@ checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" [[package]] name = "axum" -version = "0.5.15" +version = "0.5.17" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9de18bc5f2e9df8f52da03856bf40e29b747de5a84e43aefff90e3dc4a21529b" +checksum = "acee9fd5073ab6b045a275b3e709c163dd36c90685219cb21804a147b58dba43" dependencies = [ "async-trait", "axum-core", @@ -238,9 +238,9 @@ dependencies = [ [[package]] name = "axum-core" -version = "0.2.7" +version = "0.2.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e4f44a0e6200e9d11a1cdc989e4b358f6e3d354fbf48478f345a17f4e43f8635" +checksum = "37e5939e02c56fecd5c017c37df4238c0a839fa76b7f97acdd7efb804fd181cc" dependencies = [ "async-trait", "bytes", @@ -248,6 +248,8 @@ dependencies = [ "http", "http-body", "mime", + "tower-layer", + "tower-service", ] [[package]] diff --git a/cibus_bin/Cargo.toml b/cibus_bin/Cargo.toml index 94ce0ce..e45422d 100644 --- a/cibus_bin/Cargo.toml +++ b/cibus_bin/Cargo.toml @@ -7,7 +7,7 @@ edition = "2021" [dependencies] async-graphql = "4.0.6" -axum = "0.5.13" +axum = "0.5.17" tokio = {version="1.20.1", features=["full"]} uuid = {version="1.1.2", features=["v4", "fast-rng"]} sqlx = { version = "0.6", features = [ "runtime-tokio-rustls", "postgres", "migrate"] }