Skip to content
This repository was archived by the owner on Sep 10, 2024. It is now read-only.

Commit 3024744

Browse files
committed
Bump Rust dependencies
1 parent cc10270 commit 3024744

File tree

21 files changed

+459
-421
lines changed

21 files changed

+459
-421
lines changed

Cargo.lock

Lines changed: 399 additions & 362 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ resolver = "2"
55

66
# Updated in the CI with a `sed` command
77
package.version = "0.6.1"
8+
89
package.license = "Apache-2.0"
910
package.authors = ["Quentin Gliech <[email protected]>"]
1011
package.edition = "2021"
@@ -46,7 +47,7 @@ version = "0.8.5"
4647

4748
# Serialization and deserialization
4849
[workspace.dependencies.serde]
49-
version = "1.0.192"
50+
version = "1.0.193"
5051
features = ["derive"] # Most of the time, if we need serde, we need derive
5152

5253
# JSON serialization and deserialization
@@ -75,7 +76,7 @@ default-features = false
7576

7677
# URL manipulation
7778
[workspace.dependencies.url]
78-
version = "2.4.1"
79+
version = "2.5.0"
7980
features = ["serde"]
8081

8182
# ULID support

crates/axum-utils/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,12 @@ async-trait = "0.1.74"
1212
axum = { version = "0.6.20", features = ["headers"] }
1313
axum-extra = { version = "0.8.0", features = ["cookie-private", "cookie-key-expansion"] }
1414
chrono.workspace = true
15-
data-encoding = "2.4.0"
16-
futures-util = "0.3.28"
15+
data-encoding = "2.5.0"
16+
futures-util = "0.3.29"
1717
headers = "0.3.9"
1818
http.workspace = true
1919
http-body = "0.4.5"
20-
icu_locid = "1.3.2"
20+
icu_locid = "1.4.0"
2121
mime = "0.3.17"
2222
rand.workspace = true
2323
sentry = { version = "0.31.8", default-features = false }

crates/cli/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@ itertools = "0.11.0"
2020
listenfd = "1.0.1"
2121
rand.workspace = true
2222
rand_chacha = "0.3.1"
23-
rustls = "0.21.8"
23+
rustls = "0.21.9"
2424
serde_json.workspace = true
25-
serde_yaml = "0.9.25"
26-
sqlx = { version = "0.7.2", features = ["runtime-tokio-rustls", "postgres"] }
25+
serde_yaml = "0.9.27"
26+
sqlx = { version = "0.7.3", features = ["runtime-tokio-rustls", "postgres"] }
2727
tokio = { version = "1.34.0", features = ["full"] }
2828
tower = "0.4.13"
2929
tower-http = { version = "0.4.4", features = ["fs"] }
@@ -45,8 +45,8 @@ opentelemetry_sdk = { version = "0.21.1", features = ["trace", "metrics", "rt-to
4545
opentelemetry-zipkin = { version = "0.19.0", default-features = false }
4646
prometheus = "0.13.3"
4747
sentry = { version = "0.31.8", default-features = false, features = ["backtrace", "contexts", "panic", "tower"] }
48-
sentry-tracing = "0.31.7"
49-
sentry-tower = { version = "0.31.7", features = ["http"] }
48+
sentry-tracing = "0.31.8"
49+
sentry-tower = { version = "0.31.8", features = ["http"] }
5050

5151
mas-config = { path = "../config" }
5252
mas-data-model = { path = "../data-model" }

crates/config/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ anyhow.workspace = true
1717

1818
camino = { workspace = true, features = ["serde1"] }
1919
chrono.workspace = true
20-
figment = { version = "0.10.11", features = ["env", "yaml", "test"] }
20+
figment = { version = "0.10.12", features = ["env", "yaml", "test"] }
2121
ipnetwork = { version = "0.20.0", features = ["serde", "schemars"] }
2222
schemars = { version = "0.8.16", features = ["url", "chrono"] }
2323
ulid.workspace = true

crates/email/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,6 @@ headers = "0.3.9"
1616
mas-templates = { path = "../templates" }
1717

1818
[dependencies.lettre]
19-
version = "0.11.1"
19+
version = "0.11.2"
2020
default-features = false
2121
features = ["tokio1-rustls-tls", "hostname", "builder", "tracing", "pool", "smtp-transport", "sendmail-transport"]

crates/graphql/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ repository.workspace = true
99

1010
[dependencies]
1111
anyhow.workspace = true
12-
async-graphql = { version = "6.0.10", features = ["chrono", "url"] }
12+
async-graphql = { version = "6.0.11", features = ["chrono", "url"] }
1313
async-trait = "0.1.74"
1414
chrono.workspace = true
15-
lettre = { version = "0.11.1", default-features = false }
15+
lettre = { version = "0.11.2", default-features = false }
1616
serde.workspace = true
1717
thiserror.workspace = true
1818
tokio = { version = "1.34.0", features = ["sync"] }

crates/handlers/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ repository.workspace = true
1010
[dependencies]
1111
# Async runtime
1212
tokio = { version = "1.34.0", features = ["macros"] }
13-
futures-util = "0.3.28"
13+
futures-util = "0.3.29"
1414

1515
# Logging and tracing
1616
tracing.workspace = true
@@ -30,13 +30,13 @@ axum = "0.6.20"
3030
axum-macros = "0.3.8"
3131
axum-extra = { version = "0.8.0", features = ["cookie-private"] }
3232

33-
async-graphql = { version = "6.0.10", features = ["tracing", "apollo_tracing"] }
33+
async-graphql = { version = "6.0.11", features = ["tracing", "apollo_tracing"] }
3434

3535
# Emails
36-
lettre = { version = "0.11.1", default-features = false, features = ["builder"] }
36+
lettre = { version = "0.11.2", default-features = false, features = ["builder"] }
3737

3838
# Database access
39-
sqlx = { version = "0.7.2", features = ["runtime-tokio-rustls", "postgres"] }
39+
sqlx = { version = "0.7.3", features = ["runtime-tokio-rustls", "postgres"] }
4040

4141
# Various structure (de)serialization
4242
serde.workspace = true
@@ -54,7 +54,7 @@ zeroize = "1.7.0"
5454
base64ct = "1.6.0"
5555
camino.workspace = true
5656
chrono.workspace = true
57-
psl = "2.1.4"
57+
psl = "2.1.12"
5858
time = "0.3.30"
5959
url.workspace = true
6060
mime = "0.3.17"

crates/http/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,15 @@ repository.workspace = true
1010
[dependencies]
1111
axum = { version = "0.6.20", optional = true }
1212
bytes = "1.5.0"
13-
futures-util = "0.3.28"
13+
futures-util = "0.3.29"
1414
headers = "0.3.9"
1515
http.workspace = true
1616
http-body = "0.4.5"
1717
hyper = "0.14.27"
18-
hyper-rustls = { version = "0.24.1", features = ["http1", "http2"], default-features = false, optional = true }
18+
hyper-rustls = { version = "0.24.2", features = ["http1", "http2"], default-features = false, optional = true }
1919
once_cell = "1.18.0"
2020
opentelemetry.workspace = true
21-
rustls = { version = "0.21.8", optional = true }
21+
rustls = { version = "0.21.9", optional = true }
2222
rustls-native-certs = { version = "0.6.3", optional = true }
2323
serde.workspace = true
2424
serde_json.workspace = true
@@ -29,7 +29,7 @@ tower = { version = "0.4.13", features = [] }
2929
tower-http = { version = "0.4.4", features = ["cors"] }
3030
tracing.workspace = true
3131
tracing-opentelemetry.workspace = true
32-
webpki-roots = { version = "0.25.2", optional = true }
32+
webpki-roots = { version = "0.25.3", optional = true }
3333

3434
mas-tower = { path = "../tower" }
3535

crates/i18n/Cargo.toml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,16 @@ repository.workspace = true
99

1010
[dependencies]
1111
camino.workspace = true
12-
icu_list = { version = "1.3.2", features = ["compiled_data", "std"] }
13-
icu_locid = { version = "1.3.2", features = ["std",] }
14-
icu_locid_transform = { version = "1.3.2", features = ["compiled_data", "std"] }
15-
icu_plurals = { version = "1.3.2", features = ["compiled_data", "std"] }
16-
icu_provider = { version = "1.3.2", features = ["std", "sync"] }
17-
icu_provider_adapters = { version = "1.3.2", features = ["std"] }
12+
icu_list = { version = "1.4.0", features = ["compiled_data", "std"] }
13+
icu_locid = { version = "1.4.0", features = ["std",] }
14+
icu_locid_transform = { version = "1.4.0", features = ["compiled_data", "std"] }
15+
icu_plurals = { version = "1.4.0", features = ["compiled_data", "std"] }
16+
icu_provider = { version = "1.4.0", features = ["std", "sync"] }
17+
icu_provider_adapters = { version = "1.4.0", features = ["std"] }
1818
pad = "0.1.6"
1919
pest = "2.7.5"
20-
pest_derive = "2.7.4"
20+
pest_derive = "2.7.5"
2121
serde.workspace = true
2222
serde_json.workspace = true
2323
thiserror.workspace = true
24-
writeable = "0.5.3"
24+
writeable = "0.5.4"

0 commit comments

Comments
 (0)