Skip to content

Commit c80ba5a

Browse files
committed
Upgrade dependencies
1 parent a37d594 commit c80ba5a

File tree

12 files changed

+95
-116
lines changed

12 files changed

+95
-116
lines changed

Cargo.lock

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

examples/http-client/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ crate-type = ["lib", "cdylib"]
2323

2424
[dependencies]
2525
phper = { workspace = true }
26-
reqwest = { version = "0.12.5", features = ["blocking", "cookies"] }
27-
thiserror = "1.0.63"
26+
reqwest = { version = "0.12.12", features = ["blocking", "cookies"] }
27+
thiserror = "2.0.9"
2828

2929
[dev-dependencies]
3030
phper-test = { workspace = true }

examples/http-server/Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,13 @@ name = "http_server"
2222
crate-type = ["lib", "cdylib"]
2323

2424
[dependencies]
25-
hyper = { version = "1.4.1", features = ["http1", "server"] }
26-
axum = "0.7.5"
25+
hyper = { version = "1.5.2", features = ["http1", "server"] }
26+
axum = "0.8.1"
2727
phper = { workspace = true }
28-
thiserror = "1.0.63"
29-
tokio = { version = "1.39.2", features = ["full"] }
30-
reqwest = { version = "0.12.5", features = ["blocking"] }
28+
thiserror = "2.0.9"
29+
tokio = { version = "1.42.0", features = ["full"] }
30+
reqwest = { version = "0.12.12", features = ["blocking"] }
3131

3232
[dev-dependencies]
3333
phper-test = { workspace = true }
34-
reqwest = "0.12.5"
34+
reqwest = "0.12.12"

phper-doc/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,5 +23,5 @@ license = { workspace = true }
2323
phper = { workspace = true }
2424

2525
[dev-dependencies]
26-
thiserror = "1.0.63"
27-
reqwest = { version = "0.12.5", features = ["blocking", "cookies"] }
26+
thiserror = "2.0.9"
27+
reqwest = { version = "0.12.12", features = ["blocking", "cookies"] }

phper-macros/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@ license = { workspace = true }
2323
proc-macro = true
2424

2525
[dependencies]
26-
quote = "1.0.36"
27-
syn = { version = "2.0.72", features = ["full"] }
28-
proc-macro2 = "1.0.86"
26+
quote = "1.0.38"
27+
syn = { version = "2.0.95", features = ["full"] }
28+
proc-macro2 = "1.0.92"
2929

3030
[dev-dependencies]
31-
syn = { version = "2.0.72", features = ["full", "extra-traits"] }
31+
syn = { version = "2.0.95", features = ["full", "extra-traits"] }

phper-sys/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ repository = { workspace = true }
2020
license = { workspace = true }
2121

2222
[build-dependencies]
23-
bindgen = "0.69.4"
24-
cc = "1.1.7"
23+
bindgen = "0.71.1"
24+
cc = "1.2.7"
2525
home = "=0.5.9"
26-
regex = "1.10.6"
26+
regex = "1.11.1"

0 commit comments

Comments
 (0)