cargo upgrade --workspace

This commit is contained in:
Bryan Stitt 2023-01-20 15:51:19 -08:00
parent 6ffdcd42e3
commit e89126cff8
2 changed files with 5 additions and 5 deletions

8
Cargo.lock generated

@ -342,9 +342,9 @@ checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
[[package]] [[package]]
name = "axum" name = "axum"
version = "0.6.2" version = "0.6.3"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1304eab461cf02bd70b083ed8273388f9724c549b316ba3d1e213ce0e9e7fb7e" checksum = "678c5130a507ae3a7c797f9a17393c14849300b8440eac47cdb90a5bdcb3a543"
dependencies = [ dependencies = [
"async-trait", "async-trait",
"axum-core", "axum-core",
@ -389,9 +389,9 @@ dependencies = [
[[package]] [[package]]
name = "axum-core" name = "axum-core"
version = "0.3.1" version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f487e40dc9daee24d8a1779df88522f159a54a980f99cfbe43db0be0bd3444a8" checksum = "1cae3e661676ffbacb30f1a824089a8c9150e71017f7e1e38f2aa32009188d34"
dependencies = [ dependencies = [
"async-trait", "async-trait",
"bytes", "bytes",

@ -22,7 +22,7 @@ thread-fast-rng = { path = "../thread-fast-rng" }
anyhow = { version = "1.0.68", features = ["backtrace"] } anyhow = { version = "1.0.68", features = ["backtrace"] }
arc-swap = "1.6.0" arc-swap = "1.6.0"
argh = "0.1.10" argh = "0.1.10"
axum = { version = "0.6.2", features = ["headers", "ws"] } axum = { version = "0.6.3", features = ["headers", "ws"] }
axum-client-ip = "0.3.1" axum-client-ip = "0.3.1"
axum-macros = "0.3.1" axum-macros = "0.3.1"
# TODO: import chrono from sea-orm so we always have the same version # TODO: import chrono from sea-orm so we always have the same version