Skip to content

Commit 971f2e3

Browse files
chore: Upgrade dependencies
1 parent e9abd86 commit 971f2e3

File tree

8 files changed

+247
-323
lines changed

8 files changed

+247
-323
lines changed

Cargo.lock

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

Cargo.toml

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -51,11 +51,11 @@ cargo_metadata = "0.23.1"
5151
cargo-like-utils = "0.2"
5252
cargo-manifest = "0.19.1"
5353
clap = "4"
54-
clap-stdin = "0.7.0"
54+
clap-stdin = "0.8.0"
5555
config = "0.15.19"
56-
console = "0.16.1"
57-
convert_case = "0.8"
58-
darling = "0.21"
56+
console = "0.16.2"
57+
convert_case = "0.10"
58+
darling = "0.23"
5959
xxhash-rust = "0.8.15"
6060
elsa = "1.11.2"
6161
fixedbitset = "0.5"
@@ -75,17 +75,17 @@ hyper-util = "0.1"
7575
include_dir = "0.7.4"
7676
indexmap = "2"
7777
indicatif = "0.18.3"
78-
insta = "1.43.2"
78+
insta = "1.45.0"
7979
itertools = "0.14"
8080
jiff = "0.2.16"
8181
jiff-sqlx = "0.1.1"
8282
jsonwebtoken = { version = "10.2.0", features = ["rust_crypto"] }
8383
la-arena = "0.3"
84-
libc = "0.2.177"
84+
libc = "0.2.178"
8585
libtest-mimic = "0.8.1"
8686
liquid = "0.26.11"
8787
liquid-core = "0.26.11"
88-
matchit = "0.8.6"
88+
matchit = "0.9.0"
8989
miette = "7.6.0"
9090
mime = "0.3"
9191
num_cpus = "1.17.0"
@@ -116,16 +116,16 @@ reqwest = { version = "0.12", default-features = false, features = [
116116
"rustls-tls",
117117
] }
118118
reqwest-middleware = "0.4"
119-
reqwest-retry = "0.7.0"
119+
reqwest-retry = "0.8.0"
120120
reqwest-tracing = "0.5.8"
121121
rustls = { version = "0.23", default-features = false }
122122
rustls-platform-verifier = "0.6.2"
123123
ring = "0.17.14"
124124
rlimit = "0.10.2"
125-
ron = "0.11"
125+
ron = "0.12"
126126
rustc-hash = "2"
127127
rusqlite = "0.32"
128-
rustdoc-types = { version = "0.56.0", features = ["rustc-hash"] }
128+
rustdoc-types = { version = "0.57.0", features = ["rustc-hash"] }
129129
sanitize-filename = "0.6"
130130
self-replace = "1.5.0"
131131
secrecy = "0.10.3"
@@ -143,7 +143,7 @@ sqlx = { version = "0.8", default-features = false }
143143
socket2 = "0.6.1"
144144
static_assertions = "1.1.0"
145145
supports-color = "3.0.2"
146-
supports-hyperlinks = "3.1.0"
146+
supports-hyperlinks = "3.2.0"
147147
supports-unicode = "3.0.0"
148148
syn = "2.0"
149149
tar = "0.4.44"
@@ -152,9 +152,9 @@ terminal_size = "0.4"
152152
textwrap = "0.16.2"
153153
thiserror = "2"
154154
tokio = "1.48.0"
155-
toml = "0.9.8"
156-
toml_edit = "0.23.7"
157-
tracing = { version = "0.1.41", default-features = false }
155+
toml = "0.9.10"
156+
toml_edit = "0.24"
157+
tracing = { version = "0.1.44", default-features = false }
158158
tracing-log = "0.2"
159159
tracing_log_error = "0.1"
160160
tracing-chrome = "0.7"

compiler/pavexc/src/compiler/app.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -340,7 +340,7 @@ fn codegen_deps(package_graph: &PackageGraph) -> HashMap<String, guppy::PackageI
340340
.id();
341341
let matchit = package_graph
342342
.packages()
343-
.find(|p| p.name() == "matchit" && p.version().major == 0 && p.version().minor == 8)
343+
.find(|p| p.name() == "matchit" && p.version().major == 0 && p.version().minor == 9)
344344
.expect("Expected to find `[email protected]` in the package graph, but it was not there.")
345345
.id();
346346
let serde = package_graph

compiler/ui_tests/middlewares/middlewares_execution_order/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ pub async fn early_return_pre(spy: &Spy) -> pavex::middleware::Processing {
181181
pavex::middleware::Processing::EarlyReturn(Response::ok())
182182
}
183183

184-
#[pavex::pre_process]
184+
#[pavex::pre_process(id = "FAILING_PRE")]
185185
pub async fn failing_pre_(spy: &Spy) -> Result<pavex::middleware::Processing, pavex::Error> {
186186
spy.push("failing_pre".to_string()).await;
187187
Err(pavex::Error::new("failing_pre"))

compiler/ui_tests/workspace_hack/Cargo.toml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,30 +16,42 @@ publish = false
1616
### BEGIN HAKARI SECTION
1717
[dependencies]
1818
futures-core = { version = "0.3" }
19+
getrandom = { version = "0.2", default-features = false, features = ["std"] }
20+
log = { version = "0.4", default-features = false, features = ["std"] }
1921
memchr = { version = "2" }
22+
once_cell = { version = "1" }
2023
pavex = { path = "../../../runtime/pavex" }
2124
percent-encoding = { version = "2" }
2225
proc-macro2 = { version = "1", features = ["span-locations"] }
2326
quote = { version = "1" }
2427
reqwest = { version = "0.12", features = ["json", "rustls-tls"] }
28+
rustls = { version = "0.23", default-features = false, features = ["logging", "ring", "std", "tls12"] }
2529
serde = { version = "1", features = ["alloc", "derive", "rc"] }
30+
serde_core = { version = "1", features = ["alloc", "rc"] }
2631
serde_json = { version = "1", features = ["raw_value", "unbounded_depth"] }
2732
smallvec = { version = "1", default-features = false, features = ["const_new", "serde"] }
2833
stable_deref_trait = { version = "1" }
34+
subtle = { version = "2" }
2935
syn = { version = "2", features = ["extra-traits", "fold", "full", "visit", "visit-mut"] }
3036
tokio = { version = "1", features = ["full"] }
3137

3238
[build-dependencies]
3339
futures-core = { version = "0.3" }
40+
getrandom = { version = "0.2", default-features = false, features = ["std"] }
41+
log = { version = "0.4", default-features = false, features = ["std"] }
3442
memchr = { version = "2" }
43+
once_cell = { version = "1" }
3544
percent-encoding = { version = "2" }
3645
proc-macro2 = { version = "1", features = ["span-locations"] }
3746
quote = { version = "1" }
3847
reqwest = { version = "0.12", features = ["json", "rustls-tls"] }
48+
rustls = { version = "0.23", default-features = false, features = ["logging", "ring", "std", "tls12"] }
3949
serde = { version = "1", features = ["alloc", "derive", "rc"] }
50+
serde_core = { version = "1", features = ["alloc", "rc"] }
4051
serde_json = { version = "1", features = ["raw_value", "unbounded_depth"] }
4152
smallvec = { version = "1", default-features = false, features = ["const_new", "serde"] }
4253
stable_deref_trait = { version = "1" }
54+
subtle = { version = "2" }
4355
syn = { version = "2", features = ["extra-traits", "fold", "full", "visit", "visit-mut"] }
4456
tokio = { version = "1", features = ["full"] }
4557

examples/realworld/server_sdk/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ biscotti = { version = "0.4", default-features = false }
1818
http = { version = "1", default-features = false }
1919
hyper = { version = "1", default-features = false }
2020
jsonwebtoken = { version = "8", default-features = false }
21-
matchit = { version = "0.8", default-features = false }
21+
matchit = { version = "0.9", default-features = false }
2222
pavex = { version = "0.2", path = "../../../runtime/pavex", default-features = false }
2323
pavex_tracing = { version = "0.2", path = "../../../runtime/pavex_tracing", default-features = false }
2424
serde = { version = "1", default-features = false }

examples/starter/server_sdk/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ clippy = { all = "allow" }
1919
app = { version = "0.1", path = "../app", default-features = false }
2020
http = { version = "1", default-features = false }
2121
hyper = { version = "1", default-features = false }
22-
matchit = { version = "0.8", default-features = false }
22+
matchit = { version = "0.9", default-features = false }
2323
pavex = { version = "0.2", path = "../../../runtime/pavex", default-features = false }
2424
pavex_tracing = { version = "0.2", path = "../../../runtime/pavex_tracing", default-features = false }
2525
serde = { version = "1", default-features = false }

px_workspace_hack/Cargo.toml

Lines changed: 6 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ clap_builder = { version = "4", default-features = false, features = ["color", "
2626
console = { version = "0.16" }
2727
crossbeam-utils = { version = "0.8" }
2828
crypto-common = { version = "0.1", default-features = false, features = ["getrandom", "std"] }
29-
darling_core = { version = "0.21", default-features = false, features = ["suggestions"] }
29+
darling_core = { version = "0.23", default-features = false, features = ["suggestions"] }
3030
digest = { version = "0.10", features = ["mac", "oid", "std"] }
3131
either = { version = "1", features = ["serde", "use_std"] }
3232
fastrand = { version = "2" }
@@ -60,12 +60,11 @@ percent-encoding = { version = "2" }
6060
petgraph = { version = "0.8", default-features = false, features = ["graphmap", "stable_graph", "std"] }
6161
proc-macro2 = { version = "1", features = ["span-locations"] }
6262
quote = { version = "1" }
63-
rand = { version = "0.8" }
6463
rand_core = { version = "0.6", default-features = false, features = ["std"] }
6564
regex-automata = { version = "0.4", default-features = false, features = ["dfa-build", "dfa-onepass", "hybrid", "meta", "nfa", "perf", "std", "unicode"] }
6665
regex-syntax = { version = "0.8" }
6766
reqwest = { version = "0.12", default-features = false, features = ["json", "rustls-tls"] }
68-
rustls-pki-types = { version = "1", features = ["std"] }
67+
rustls-pki-types = { version = "1", default-features = false, features = ["std"] }
6968
semver = { version = "1", features = ["serde"] }
7069
serde = { version = "1", features = ["alloc", "derive", "rc"] }
7170
serde_core = { version = "1", features = ["alloc", "rc"] }
@@ -85,8 +84,7 @@ syn = { version = "2", features = ["extra-traits", "fold", "full", "visit", "vis
8584
textwrap = { version = "0.16" }
8685
time = { version = "0.3", features = ["formatting", "local-offset", "macros", "parsing"] }
8786
tokio = { version = "1", features = ["fs", "io-util", "macros", "net", "rt-multi-thread", "sync", "time"] }
88-
toml-274715c4dabd11b0 = { package = "toml", version = "0.9", features = ["preserve_order"] }
89-
toml-c38e5c1d305a1b54 = { package = "toml", version = "0.8", features = ["preserve_order"] }
87+
toml = { version = "0.9", features = ["preserve_order"] }
9088
toml_datetime = { version = "0.7", features = ["serde"] }
9189
toml_parser = { version = "1" }
9290
toml_writer = { version = "1" }
@@ -107,7 +105,7 @@ clap_builder = { version = "4", default-features = false, features = ["color", "
107105
console = { version = "0.16" }
108106
crossbeam-utils = { version = "0.8" }
109107
crypto-common = { version = "0.1", default-features = false, features = ["getrandom", "std"] }
110-
darling_core = { version = "0.21", default-features = false, features = ["suggestions"] }
108+
darling_core = { version = "0.23", default-features = false, features = ["suggestions"] }
111109
digest = { version = "0.10", features = ["mac", "oid", "std"] }
112110
either = { version = "1", features = ["serde", "use_std"] }
113111
fastrand = { version = "2" }
@@ -141,12 +139,11 @@ percent-encoding = { version = "2" }
141139
petgraph = { version = "0.8", default-features = false, features = ["graphmap", "stable_graph", "std"] }
142140
proc-macro2 = { version = "1", features = ["span-locations"] }
143141
quote = { version = "1" }
144-
rand = { version = "0.8" }
145142
rand_core = { version = "0.6", default-features = false, features = ["std"] }
146143
regex-automata = { version = "0.4", default-features = false, features = ["dfa-build", "dfa-onepass", "hybrid", "meta", "nfa", "perf", "std", "unicode"] }
147144
regex-syntax = { version = "0.8" }
148145
reqwest = { version = "0.12", default-features = false, features = ["json", "rustls-tls"] }
149-
rustls-pki-types = { version = "1", features = ["std"] }
146+
rustls-pki-types = { version = "1", default-features = false, features = ["std"] }
150147
semver = { version = "1", features = ["serde"] }
151148
serde = { version = "1", features = ["alloc", "derive", "rc"] }
152149
serde_core = { version = "1", features = ["alloc", "rc"] }
@@ -168,8 +165,7 @@ syn = { version = "2", features = ["extra-traits", "fold", "full", "visit", "vis
168165
textwrap = { version = "0.16" }
169166
time = { version = "0.3", features = ["formatting", "local-offset", "macros", "parsing"] }
170167
tokio = { version = "1", features = ["fs", "io-util", "macros", "net", "rt-multi-thread", "sync", "time"] }
171-
toml-274715c4dabd11b0 = { package = "toml", version = "0.9", features = ["preserve_order"] }
172-
toml-c38e5c1d305a1b54 = { package = "toml", version = "0.8", features = ["preserve_order"] }
168+
toml = { version = "0.9", features = ["preserve_order"] }
173169
toml_datetime = { version = "0.7", features = ["serde"] }
174170
toml_parser = { version = "1" }
175171
toml_writer = { version = "1" }

0 commit comments

Comments
 (0)