Skip to content

Commit 41e487d

Browse files
authored
Merge pull request #4 from oddgrd/feat/bump-dependencies
feat: bump example deps
2 parents a9e6c6c + 11466f8 commit 41e487d

File tree

17 files changed

+50
-50
lines changed

17 files changed

+50
-50
lines changed

axum/hello-world/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@ edition = "2021"
66
[lib]
77

88
[dependencies]
9-
axum = "0.5"
9+
axum = "0.6.0"
1010
shuttle-service = { version = "0.7.2", features = ["web-axum"] }
11-
sync_wrapper = "0.1"
11+
sync_wrapper = "0.1.1"

axum/websocket/Cargo.toml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,13 @@ edition = "2021"
66
[lib]
77

88
[dependencies]
9-
axum = { version = "0.5", features = ["ws"] }
10-
chrono = { version = "0.4", features = ["serde"] }
11-
futures = "0.3"
12-
hyper = { version = "0.14", features = ["client", "http2"] }
13-
hyper-tls = "0.5"
14-
serde = { version = "1.0", features = ["derive"] }
15-
serde_json = "1.0"
9+
axum = { version = "0.6.0", features = ["ws"] }
10+
chrono = { version = "0.4.23", features = ["serde"] }
11+
futures = "0.3.25"
12+
hyper = { version = "0.14.23", features = ["client", "http2"] }
13+
hyper-tls = "0.5.0"
14+
serde = { version = "1.0.148", features = ["derive"] }
15+
serde_json = "1.0.89"
1616
shuttle-service = { version = "0.7.2", features = ["web-axum"] }
17-
sync_wrapper = "0.1"
18-
tokio = { version = "1", features = ["full"] }
17+
sync_wrapper = "0.1.1"
18+
tokio = { version = "1.22.0", features = ["full"] }

poem/hello-world/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@ edition = "2021"
66
[lib]
77

88
[dependencies]
9-
poem = "1.3.35"
9+
poem = "1.3.49"
1010
shuttle-service = { version = "0.7.2", features = ["web-poem"] }

poem/mongodb/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ version = "0.1.0"
44
edition = "2021"
55

66
[dependencies]
7-
mongodb = "2.3.0"
8-
poem = "1.3.35"
9-
serde = { version = "1", features = ["derive"] }
10-
serde_json = "1"
7+
mongodb = "2.3.1"
8+
poem = "1.3.49"
9+
serde = { version = "1.0.148", features = ["derive"] }
10+
serde_json = "1.0.89"
1111
shuttle-service = { version = "0.7.2", features = ["web-poem"] }
1212
shuttle-shared-db = { version = "0.7.2", features = ["mongodb"] }

poem/postgres/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ edition = "2021"
66
[lib]
77

88
[dependencies]
9-
poem = "1.3.35"
10-
serde = "1.0"
9+
poem = "1.3.49"
10+
serde = "1.0.148"
1111
shuttle-service = { version = "0.7.2", features = ["web-poem"] }
1212
shuttle-shared-db = { version = "0.7.2", features = ["postgres"] }
13-
sqlx = { version = "0.6", features = ["runtime-tokio-native-tls", "postgres"] }
13+
sqlx = { version = "0.6.2", features = ["runtime-tokio-native-tls", "postgres"] }

rocket/authentication/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ edition = "2021"
66
[lib]
77

88
[dependencies]
9-
chrono = "0.4"
10-
jsonwebtoken = { version = "8", default-features = false }
11-
lazy_static = "1.4"
9+
chrono = "0.4.23"
10+
jsonwebtoken = { version = "8.1.1", default-features = false }
11+
lazy_static = "1.4.0"
1212
rocket = { version = "0.5.0-rc.2", features = ["json"] }
13-
serde = { version = "1.0", features = ["derive"] }
13+
serde = { version = "1.0.148", features = ["derive"] }
1414
shuttle-service = { version = "0.7.2", features = ["web-rocket"] }

rocket/persist/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ edition = "2021"
66
[lib]
77

88
[dependencies]
9-
rocket = { version = "0.5.0-rc.1", features = ["json"] }
10-
serde = { version = "1.0", features = ["derive"] }
9+
rocket = { version = "0.5.0-rc.2", features = ["json"] }
10+
serde = { version = "1.0.148", features = ["derive"] }
1111
shuttle-persist = "0.7.2"
1212
shuttle-service = { version = "0.7.2", features = ["web-rocket"] }

rocket/postgres/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ edition = "2021"
66
[lib]
77

88
[dependencies]
9-
rocket = { version = "0.5.0-rc.1", features = ["json"] }
10-
serde = "1.0"
9+
rocket = { version = "0.5.0-rc.2", features = ["json"] }
10+
serde = "1.0.148"
1111
shuttle-service = { version = "0.7.2", features = ["web-rocket"] }
1212
shuttle-shared-db = { version = "0.7.2", features = ["postgres"] }
13-
sqlx = { version = "0.6", features = ["runtime-tokio-native-tls", "postgres"] }
13+
sqlx = { version = "0.6.2", features = ["runtime-tokio-native-tls", "postgres"] }

rocket/secrets/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ edition = "2021"
66
[lib]
77

88
[dependencies]
9-
anyhow = "1.0.62"
10-
rocket = { version = "0.5.0-rc.1", features = ["json"] }
9+
anyhow = "1.0.66"
10+
rocket = { version = "0.5.0-rc.2", features = ["json"] }
1111
shuttle-secrets = "0.7.2"
1212
shuttle-service = { version = "0.7.2", features = ["web-rocket"] }

rocket/url-shortener/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ edition = "2021"
66
[lib]
77

88
[dependencies]
9-
nanoid = "0.4"
9+
nanoid = "0.4.0"
1010
rocket = { version = "0.5.0-rc.2", features = ["json"] }
11-
serde = "1.0"
11+
serde = "1.0.148"
1212
shuttle-service = { version = "0.7.2", features = ["web-rocket"] }
1313
shuttle-shared-db = { version = "0.7.2", features = ["postgres"] }
14-
sqlx = { version = "0.6", features = ["runtime-tokio-native-tls", "postgres"] }
15-
url = "2.2"
14+
sqlx = { version = "0.6.2", features = ["runtime-tokio-native-tls", "postgres"] }
15+
url = "2.3.1"

0 commit comments

Comments
 (0)