4
0
Fork 0
mirror of https://github.com/zzzzDev4/ias-tea-axum.git synced 2025-04-21 07:41:21 +02:00

update shuttle version

This commit is contained in:
zzzz 2024-05-14 18:30:33 +02:00
parent 6f45b88108
commit d3363c1481
2 changed files with 18 additions and 17 deletions

29
Cargo.lock generated
View file

@ -1870,9 +1870,9 @@ dependencies = [
[[package]] [[package]]
name = "shuttle-axum" name = "shuttle-axum"
version = "0.44.0" version = "0.45.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "393469f82e5aa60e866035103bae24b54f9ad61caef1fc4e912c47b0170af95c" checksum = "2e42465d16ce61209859b12a52e1e85837512ae565a57c0fd6adfa883e7e6080"
dependencies = [ dependencies = [
"axum 0.7.5", "axum 0.7.5",
"shuttle-runtime", "shuttle-runtime",
@ -1880,9 +1880,9 @@ dependencies = [
[[package]] [[package]]
name = "shuttle-codegen" name = "shuttle-codegen"
version = "0.44.0" version = "0.45.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3a0ba1965be7df9f6eacf86ce8e7d13371972620f1b512afb16de0fb7f9842fb" checksum = "5c82cffdb63264eb6ef8de1b2d5203012da706d7ca575205b580e64e2ba17b9e"
dependencies = [ dependencies = [
"proc-macro-error", "proc-macro-error",
"proc-macro2", "proc-macro2",
@ -1892,9 +1892,9 @@ dependencies = [
[[package]] [[package]]
name = "shuttle-common" name = "shuttle-common"
version = "0.44.0" version = "0.45.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2f4a7cbeba0ac04ff93e60e7c9cd3fb7a1a06df108b7c6c81ec4237283189f5a" checksum = "dd2c79ce0ce842df220bb2e70545dc3df2445813f2d68bbb1a9d953ac64a78e8"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"chrono", "chrono",
@ -1919,9 +1919,9 @@ dependencies = [
[[package]] [[package]]
name = "shuttle-proto" name = "shuttle-proto"
version = "0.44.0" version = "0.45.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "aa562975ec33dfdb0535864e351f0d632af1306f877481bbc5a597bfb7b8ee2e" checksum = "d32df25e2aee2fb1a21f4a52ede41b63a37c25416b803de925cfdac4fe2882e9"
dependencies = [ dependencies = [
"futures-core", "futures-core",
"prost", "prost",
@ -1932,9 +1932,9 @@ dependencies = [
[[package]] [[package]]
name = "shuttle-runtime" name = "shuttle-runtime"
version = "0.44.0" version = "0.45.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9468e399b464fc49a9e2a89beeb29d5a685c3eb38cbdd4f7da28ae6db055ab86" checksum = "b369ec5757e3ca44f93849cd1bfee23f66c1512e091d366c58303111eab73e50"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"async-trait", "async-trait",
@ -1948,15 +1948,16 @@ dependencies = [
"strfmt", "strfmt",
"tokio", "tokio",
"tokio-stream", "tokio-stream",
"tokio-util",
"tonic", "tonic",
"tracing-subscriber", "tracing-subscriber",
] ]
[[package]] [[package]]
name = "shuttle-service" name = "shuttle-service"
version = "0.44.0" version = "0.45.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b4687d5f97c43826faf9f2fa665d475696fc71857e5960c3112664480a4a6e6c" checksum = "24e419a09a6e9bc38439ca4cb00e8aec67232abf2071ad4c55b18a9d717e634a"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"async-trait", "async-trait",
@ -1968,9 +1969,9 @@ dependencies = [
[[package]] [[package]]
name = "shuttle-shared-db" name = "shuttle-shared-db"
version = "0.44.0" version = "0.45.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f79157e7cd1e86f3661f3b45c0374ad9815fd65224b9573195ff8a9e6da2ab49" checksum = "e3879d1478ab726af83997d8573dbd93d45245eb9294bf19adb3b57a0cea41ca"
dependencies = [ dependencies = [
"async-trait", "async-trait",
"diesel-async", "diesel-async",

View file

@ -7,9 +7,9 @@ edition = "2021"
axum = "0.7.3" axum = "0.7.3"
serde = { version = "1.0.188", features = ["derive"] } serde = { version = "1.0.188", features = ["derive"] }
shuttle-axum = "0.44.0" shuttle-axum = "0.45.0"
shuttle-runtime = "0.44.0" shuttle-runtime = "0.45.0"
shuttle-shared-db = { version = "0.44.0", features = ["postgres", "sqlx"] } shuttle-shared-db = { version = "0.45.0", features = ["postgres", "sqlx"] }
sqlx = "0.7.1" sqlx = "0.7.1"
tokio = "1.28.2" tokio = "1.28.2"