Skip to content

Commit 0de5297

Browse files
authored
Upgrade dependencies. (#134)
1 parent 2e5f4df commit 0de5297

File tree

8 files changed

+25
-25
lines changed

8 files changed

+25
-25
lines changed

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.11.13", features = ["blocking", "cookies"] }
27-
thiserror = "1.0.37"
26+
reqwest = { version = "0.11.18", features = ["blocking", "cookies"] }
27+
thiserror = "1.0.43"
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 = "0.14.26", features = ["http1", "runtime", "server"] }
26-
axum = "0.6.16"
25+
hyper = { version = "0.14.27", features = ["http1", "runtime", "server"] }
26+
axum = "0.6.19"
2727
phper = { workspace = true }
28-
thiserror = "1.0.40"
29-
tokio = { version = "1.27.0", features = ["full"] }
30-
reqwest = { version = "0.11.16", features = ["blocking"] }
28+
thiserror = "1.0.43"
29+
tokio = { version = "1.29.1", features = ["full"] }
30+
reqwest = { version = "0.11.18", features = ["blocking"] }
3131

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

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.37"
27-
reqwest = { version = "0.11.13", features = ["blocking", "cookies"] }
26+
thiserror = "1.0.43"
27+
reqwest = { version = "0.11.18", 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.21"
27-
syn = { version = "1.0.103", features = ["full"] }
28-
proc-macro2 = "1.0.47"
26+
quote = "1.0.31"
27+
syn = { version = "2.0.26", features = ["full"] }
28+
proc-macro2 = "1.0.66"
2929

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

phper-sys/Cargo.toml

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

2222
[build-dependencies]
23-
bindgen = "0.63.0"
24-
cc = "1.0.77"
23+
bindgen = "0.66.1"
24+
cc = "1.0.79"

phper-test/Cargo.toml

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

2222
[dependencies]
23-
fastcgi-client = "0.8.0"
24-
libc = "0.2.137"
25-
once_cell = "1.16.0"
23+
fastcgi-client = "0.9.0"
24+
libc = "0.2.147"
25+
once_cell = "1.18.0"
2626
phper-macros = { workspace = true }
27-
tempfile = "3.3.0"
28-
tokio = { version = "1.22.0", features = ["full"] }
27+
tempfile = "3.6.0"
28+
tokio = { version = "1.29.1", features = ["full"] }
2929

3030
[package.metadata.docs.rs]
3131
rustdoc-args = ["--cfg", "docsrs"]

phper/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,12 @@ license = { workspace = true }
2323

2424
[dependencies]
2525
derive_more = "0.99.17"
26-
indexmap = "1.9.2"
27-
once_cell = "1.16.0"
26+
indexmap = "2.0.0"
27+
once_cell = "1.18.0"
2828
phper-alloc = { workspace = true }
2929
phper-macros = { workspace = true }
3030
phper-sys = { workspace = true }
31-
thiserror = "1.0.37"
31+
thiserror = "1.0.43"
3232

3333
[build-dependencies]
3434
phper-build = { workspace = true }

tests/integration/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ license = { workspace = true }
2121
crate-type = ["lib", "cdylib"]
2222

2323
[dependencies]
24-
indexmap = "1.9.2"
24+
indexmap = "2.0.0"
2525
phper = { workspace = true }
2626

2727
[dev-dependencies]

0 commit comments

Comments
 (0)