diff --git a/graphql/async_graphql/Cargo.lock b/graphql/async_graphql/Cargo.lock index d17ac333..11570958 100644 --- a/graphql/async_graphql/Cargo.lock +++ b/graphql/async_graphql/Cargo.lock @@ -195,9 +195,9 @@ checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" [[package]] name = "axum" -version = "0.7.4" +version = "0.7.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1236b4b292f6c4d6dc34604bb5120d85c3fe1d1aa596bd5cc52ca054d13e7b9e" +checksum = "3a6c9af12842a67734c9a2e355436e5d03b22383ed60cf13cd0c18fbfe3dcbcf" dependencies = [ "async-trait", "axum-core", @@ -221,7 +221,7 @@ dependencies = [ "serde_path_to_error", "serde_urlencoded", "sha1", - "sync_wrapper", + "sync_wrapper 1.0.1", "tokio", "tokio-tungstenite", "tower", @@ -245,7 +245,7 @@ dependencies = [ "mime", "pin-project-lite", "rustversion", - "sync_wrapper", + "sync_wrapper 0.1.2", "tower-layer", "tower-service", "tracing", @@ -1204,7 +1204,7 @@ dependencies = [ "serde", "serde_json", "serde_urlencoded", - "sync_wrapper", + "sync_wrapper 0.1.2", "system-configuration", "tokio", "tokio-native-tls", @@ -1451,6 +1451,12 @@ version = "0.1.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2047c6ded9c721764247e62cd3b03c09ffc529b2ba5b10ec482ae507a4a70160" +[[package]] +name = "sync_wrapper" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a7065abeca94b6a8a577f9bd45aa0867a2238b74e8eb67cf10d492bc39351394" + [[package]] name = "system-configuration" version = "0.5.1" diff --git a/graphql/async_graphql/Cargo.toml b/graphql/async_graphql/Cargo.toml index 2d42d28c..7ea7bb45 100644 --- a/graphql/async_graphql/Cargo.toml +++ b/graphql/async_graphql/Cargo.toml @@ -7,7 +7,7 @@ edition = "2021" anyhow = "1.0.82" async-graphql = "7.0.3" async-graphql-axum = "7.0.3" -axum = "0.7" +axum = "0.7.5" tokio = { version = "1", features = ["macros", "rt-multi-thread", "net", "parking_lot"] } reqwest = { version = "0.12", features = ["json"] } serde = "1"