From 11466f82f74847470de741ae0b27df64e59954fb Mon Sep 17 00:00:00 2001 From: oddgrd <29732646+oddgrd@users.noreply.github.com> Date: Mon, 28 Nov 2022 19:24:46 +0100 Subject: [PATCH] feat: bump example deps --- axum/hello-world/Cargo.toml | 4 ++-- axum/websocket/Cargo.toml | 18 +++++++++--------- poem/hello-world/Cargo.toml | 2 +- poem/mongodb/Cargo.toml | 8 ++++---- poem/postgres/Cargo.toml | 6 +++--- rocket/authentication/Cargo.toml | 8 ++++---- rocket/persist/Cargo.toml | 4 ++-- rocket/postgres/Cargo.toml | 6 +++--- rocket/secrets/Cargo.toml | 4 ++-- rocket/url-shortener/Cargo.toml | 8 ++++---- salvo/hello-world/Cargo.toml | 2 +- serenity/hello-world/Cargo.toml | 4 ++-- serenity/postgres/Cargo.toml | 8 ++++---- thruster/postgres/Cargo.toml | 8 ++++---- tide/postgres/Cargo.toml | 4 ++-- tower/hello-world/Cargo.toml | 4 ++-- warp/hello-world/Cargo.toml | 2 +- 17 files changed, 50 insertions(+), 50 deletions(-) diff --git a/axum/hello-world/Cargo.toml b/axum/hello-world/Cargo.toml index 1f551d11..442605ae 100644 --- a/axum/hello-world/Cargo.toml +++ b/axum/hello-world/Cargo.toml @@ -6,6 +6,6 @@ edition = "2021" [lib] [dependencies] -axum = "0.5" +axum = "0.6.0" shuttle-service = { version = "0.7.2", features = ["web-axum"] } -sync_wrapper = "0.1" +sync_wrapper = "0.1.1" diff --git a/axum/websocket/Cargo.toml b/axum/websocket/Cargo.toml index 5a708fa5..7d889db1 100644 --- a/axum/websocket/Cargo.toml +++ b/axum/websocket/Cargo.toml @@ -6,13 +6,13 @@ edition = "2021" [lib] [dependencies] -axum = { version = "0.5", features = ["ws"] } -chrono = { version = "0.4", features = ["serde"] } -futures = "0.3" -hyper = { version = "0.14", features = ["client", "http2"] } -hyper-tls = "0.5" -serde = { version = "1.0", features = ["derive"] } -serde_json = "1.0" +axum = { version = "0.6.0", features = ["ws"] } +chrono = { version = "0.4.23", features = ["serde"] } +futures = "0.3.25" +hyper = { version = "0.14.23", features = ["client", "http2"] } +hyper-tls = "0.5.0" +serde = { version = "1.0.148", features = ["derive"] } +serde_json = "1.0.89" shuttle-service = { version = "0.7.2", features = ["web-axum"] } -sync_wrapper = "0.1" -tokio = { version = "1", features = ["full"] } +sync_wrapper = "0.1.1" +tokio = { version = "1.22.0", features = ["full"] } diff --git a/poem/hello-world/Cargo.toml b/poem/hello-world/Cargo.toml index a5cc529b..b4ebed08 100644 --- a/poem/hello-world/Cargo.toml +++ b/poem/hello-world/Cargo.toml @@ -6,5 +6,5 @@ edition = "2021" [lib] [dependencies] -poem = "1.3.35" +poem = "1.3.49" shuttle-service = { version = "0.7.2", features = ["web-poem"] } diff --git a/poem/mongodb/Cargo.toml b/poem/mongodb/Cargo.toml index ec284f2e..fe760856 100644 --- a/poem/mongodb/Cargo.toml +++ b/poem/mongodb/Cargo.toml @@ -4,9 +4,9 @@ version = "0.1.0" edition = "2021" [dependencies] -mongodb = "2.3.0" -poem = "1.3.35" -serde = { version = "1", features = ["derive"] } -serde_json = "1" +mongodb = "2.3.1" +poem = "1.3.49" +serde = { version = "1.0.148", features = ["derive"] } +serde_json = "1.0.89" shuttle-service = { version = "0.7.2", features = ["web-poem"] } shuttle-shared-db = { version = "0.7.2", features = ["mongodb"] } diff --git a/poem/postgres/Cargo.toml b/poem/postgres/Cargo.toml index c8223d3e..3cc822e9 100644 --- a/poem/postgres/Cargo.toml +++ b/poem/postgres/Cargo.toml @@ -6,8 +6,8 @@ edition = "2021" [lib] [dependencies] -poem = "1.3.35" -serde = "1.0" +poem = "1.3.49" +serde = "1.0.148" shuttle-service = { version = "0.7.2", features = ["web-poem"] } shuttle-shared-db = { version = "0.7.2", features = ["postgres"] } -sqlx = { version = "0.6", features = ["runtime-tokio-native-tls", "postgres"] } +sqlx = { version = "0.6.2", features = ["runtime-tokio-native-tls", "postgres"] } diff --git a/rocket/authentication/Cargo.toml b/rocket/authentication/Cargo.toml index 318e3622..37282f7b 100644 --- a/rocket/authentication/Cargo.toml +++ b/rocket/authentication/Cargo.toml @@ -6,9 +6,9 @@ edition = "2021" [lib] [dependencies] -chrono = "0.4" -jsonwebtoken = { version = "8", default-features = false } -lazy_static = "1.4" +chrono = "0.4.23" +jsonwebtoken = { version = "8.1.1", default-features = false } +lazy_static = "1.4.0" rocket = { version = "0.5.0-rc.2", features = ["json"] } -serde = { version = "1.0", features = ["derive"] } +serde = { version = "1.0.148", features = ["derive"] } shuttle-service = { version = "0.7.2", features = ["web-rocket"] } diff --git a/rocket/persist/Cargo.toml b/rocket/persist/Cargo.toml index 39e779f5..48527a56 100644 --- a/rocket/persist/Cargo.toml +++ b/rocket/persist/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" [lib] [dependencies] -rocket = { version = "0.5.0-rc.1", features = ["json"] } -serde = { version = "1.0", features = ["derive"] } +rocket = { version = "0.5.0-rc.2", features = ["json"] } +serde = { version = "1.0.148", features = ["derive"] } shuttle-persist = "0.7.2" shuttle-service = { version = "0.7.2", features = ["web-rocket"] } diff --git a/rocket/postgres/Cargo.toml b/rocket/postgres/Cargo.toml index 31d64bf8..c120c8fc 100644 --- a/rocket/postgres/Cargo.toml +++ b/rocket/postgres/Cargo.toml @@ -6,8 +6,8 @@ edition = "2021" [lib] [dependencies] -rocket = { version = "0.5.0-rc.1", features = ["json"] } -serde = "1.0" +rocket = { version = "0.5.0-rc.2", features = ["json"] } +serde = "1.0.148" shuttle-service = { version = "0.7.2", features = ["web-rocket"] } shuttle-shared-db = { version = "0.7.2", features = ["postgres"] } -sqlx = { version = "0.6", features = ["runtime-tokio-native-tls", "postgres"] } +sqlx = { version = "0.6.2", features = ["runtime-tokio-native-tls", "postgres"] } diff --git a/rocket/secrets/Cargo.toml b/rocket/secrets/Cargo.toml index dda655d0..3207ef81 100644 --- a/rocket/secrets/Cargo.toml +++ b/rocket/secrets/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" [lib] [dependencies] -anyhow = "1.0.62" -rocket = { version = "0.5.0-rc.1", features = ["json"] } +anyhow = "1.0.66" +rocket = { version = "0.5.0-rc.2", features = ["json"] } shuttle-secrets = "0.7.2" shuttle-service = { version = "0.7.2", features = ["web-rocket"] } diff --git a/rocket/url-shortener/Cargo.toml b/rocket/url-shortener/Cargo.toml index adcb3229..ed5245f8 100644 --- a/rocket/url-shortener/Cargo.toml +++ b/rocket/url-shortener/Cargo.toml @@ -6,10 +6,10 @@ edition = "2021" [lib] [dependencies] -nanoid = "0.4" +nanoid = "0.4.0" rocket = { version = "0.5.0-rc.2", features = ["json"] } -serde = "1.0" +serde = "1.0.148" shuttle-service = { version = "0.7.2", features = ["web-rocket"] } shuttle-shared-db = { version = "0.7.2", features = ["postgres"] } -sqlx = { version = "0.6", features = ["runtime-tokio-native-tls", "postgres"] } -url = "2.2" +sqlx = { version = "0.6.2", features = ["runtime-tokio-native-tls", "postgres"] } +url = "2.3.1" diff --git a/salvo/hello-world/Cargo.toml b/salvo/hello-world/Cargo.toml index 98f6619b..9165c116 100644 --- a/salvo/hello-world/Cargo.toml +++ b/salvo/hello-world/Cargo.toml @@ -6,5 +6,5 @@ edition = "2021" [lib] [dependencies] -salvo = "0.34.3" +salvo = "0.37.5" shuttle-service = { version = "0.7.2", features = ["web-salvo"] } diff --git a/serenity/hello-world/Cargo.toml b/serenity/hello-world/Cargo.toml index 469a8031..ad844287 100644 --- a/serenity/hello-world/Cargo.toml +++ b/serenity/hello-world/Cargo.toml @@ -6,8 +6,8 @@ edition = "2021" [lib] [dependencies] -anyhow = "1.0.62" +anyhow = "1.0.66" serenity = { version = "0.11.5", default-features = false, features = ["client", "gateway", "rustls_backend", "model"] } shuttle-secrets = "0.7.2" shuttle-service = { version = "0.7.2", features = ["bot-serenity"] } -tracing = "0.1.35" +tracing = "0.1.37" diff --git a/serenity/postgres/Cargo.toml b/serenity/postgres/Cargo.toml index ee84698b..4799078d 100644 --- a/serenity/postgres/Cargo.toml +++ b/serenity/postgres/Cargo.toml @@ -6,11 +6,11 @@ edition = "2021" [lib] [dependencies] -anyhow = "1.0.62" -serde = "1.0" +anyhow = "1.0.66" +serde = "1.0.148" serenity = { version = "0.11.5", default-features = false, features = ["client", "gateway", "rustls_backend", "model"] } shuttle-secrets = "0.7.2" shuttle-service = { version = "0.7.2", features = ["bot-serenity"] } shuttle-shared-db = { version = "0.7.2", features = ["postgres"] } -sqlx = { version = "0.6", features = ["runtime-tokio-native-tls", "postgres"] } -tracing = "0.1.35" +sqlx = { version = "0.6.2", features = ["runtime-tokio-native-tls", "postgres"] } +tracing = "0.1.37" diff --git a/thruster/postgres/Cargo.toml b/thruster/postgres/Cargo.toml index c9242c32..aaeae35c 100644 --- a/thruster/postgres/Cargo.toml +++ b/thruster/postgres/Cargo.toml @@ -8,10 +8,10 @@ crate-type = ["cdylib"] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -hyper = "0.14.20" -serde = { version = "1.0", features = ["derive"] } -serde_json = { version = "1.0" } +hyper = "0.14.23" +serde = { version = "1.0.148", features = ["derive"] } +serde_json = "1.0.89" shuttle-aws-rds = { version = "0.7.2", features = ["postgres"] } shuttle-service = { version = "0.7.2", features = ["web-thruster"] } -sqlx = { version = "0.6", features = ["runtime-tokio-native-tls", "postgres"] } +sqlx = { version = "0.6.2", features = ["runtime-tokio-native-tls", "postgres"] } thruster = { version = "1.3.0", features = ["hyper_server"] } diff --git a/tide/postgres/Cargo.toml b/tide/postgres/Cargo.toml index eaa99a61..ef4ebfb6 100644 --- a/tide/postgres/Cargo.toml +++ b/tide/postgres/Cargo.toml @@ -8,8 +8,8 @@ crate-type = ["cdylib"] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -serde = { version = "1.0", features = ["derive"] } +serde = { version = "1.0.148", features = ["derive"] } shuttle-aws-rds = { version = "0.7.2", features = ["postgres"] } shuttle-service = { version = "0.7.2", features = ["web-tide"] } -sqlx = { version = "0.6", features = ["runtime-tokio-native-tls", "postgres"] } +sqlx = { version = "0.6.2", features = ["runtime-tokio-native-tls", "postgres"] } tide = "0.16.0" diff --git a/tower/hello-world/Cargo.toml b/tower/hello-world/Cargo.toml index 678b43b6..1d150c5a 100644 --- a/tower/hello-world/Cargo.toml +++ b/tower/hello-world/Cargo.toml @@ -6,6 +6,6 @@ edition = "2021" [lib] [dependencies] -hyper = { version = "0.14", features = ["full"] } +hyper = { version = "0.14.23", features = ["full"] } shuttle-service = { version = "0.7.2", features = ["web-tower"] } -tower = { version = "0.4", features = ["full"] } +tower = { version = "0.4.13", features = ["full"] } diff --git a/warp/hello-world/Cargo.toml b/warp/hello-world/Cargo.toml index a86ecd3b..012f75c1 100644 --- a/warp/hello-world/Cargo.toml +++ b/warp/hello-world/Cargo.toml @@ -7,4 +7,4 @@ edition = "2021" [dependencies] shuttle-service = { version = "0.7.2", features = ["web-warp"] } -warp = "0.3.2" +warp = "0.3.3"