Skip to content

Commit da6a935

Browse files
authored
Upgrade dependencies to latest versions. (#56)
1 parent 6a0518f commit da6a935

File tree

6 files changed

+20
-20
lines changed

6 files changed

+20
-20
lines changed

examples/http-client/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,12 +29,12 @@ path = "src/_reexport.rs"
2929
crate-type = ["cdylib"]
3030

3131
[dependencies]
32-
anyhow = "1.0.58"
33-
bytes = "1.1.0"
32+
anyhow = "1.0.65"
33+
bytes = "1.2.1"
3434
indexmap = "1.9.1"
3535
phper = { version = "0.5.1", path = "../../phper" }
36-
reqwest = { version = "0.11.11", features = ["blocking", "cookies"] }
37-
thiserror = "1.0.31"
36+
reqwest = { version = "0.11.12", features = ["blocking", "cookies"] }
37+
thiserror = "1.0.37"
3838

3939
[dev-dependencies]
4040
phper-test = { version = "0.5.1", path = "../../phper-test" }

examples/http-server/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,9 @@ crate-type = ["cdylib"]
3131
[dependencies]
3232
hyper = { version = "0.14.20", features = ["http1", "runtime", "server"] }
3333
phper = { version = "0.5.1", path = "../../phper" }
34-
thiserror = "1.0.31"
35-
tokio = { version = "1.19.2", features = ["full"] }
34+
thiserror = "1.0.37"
35+
tokio = { version = "1.21.2", features = ["full"] }
3636

3737
[dev-dependencies]
3838
phper-test = { version = "0.5.1", path = "../../phper-test" }
39-
reqwest = "0.11.11"
39+
reqwest = "0.11.12"

examples/logging/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ path = "src/_reexport.rs"
2929
crate-type = ["cdylib"]
3030

3131
[dependencies]
32-
anyhow = "1.0.58"
32+
anyhow = "1.0.65"
3333
phper = { version = "0.5.1", path = "../../phper" }
3434

3535
[dev-dependencies]

phper-macros/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@ keywords = ["php", "proc-macro"]
2525
proc-macro = true
2626

2727
[dependencies]
28-
quote = "1.0.20"
29-
syn = { version = "1.0.98", features = ["full"] }
30-
proc-macro2 = "1.0.40"
28+
quote = "1.0.21"
29+
syn = { version = "1.0.101", features = ["full"] }
30+
proc-macro2 = "1.0.44"
3131

3232
[dev-dependencies]
33-
syn = { version = "1.0.98", features = ["full", "extra-traits"] }
33+
syn = { version = "1.0.101", features = ["full", "extra-traits"] }

phper-test/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,11 @@ fpm = ["fastcgi-client", "tokio/full"]
2626

2727
[dependencies]
2828
fastcgi-client = { version = "0.8.0", optional = true }
29-
libc = "0.2.126"
30-
once_cell = "1.13.0"
29+
libc = "0.2.133"
30+
once_cell = "1.15.0"
3131
phper-macros = { version = "0.5.1", path = "../phper-macros" }
3232
tempfile = "3.3.0"
33-
tokio = { version = "1.19.2", optional = true }
33+
tokio = { version = "1.21.2", optional = true }
3434

3535
[package.metadata.docs.rs]
3636
rustdoc-args = ["--cfg", "docsrs"]

phper/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,16 +24,16 @@ keywords = ["php", "binding", "extension", "module"]
2424
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
2525

2626
[dependencies]
27-
anyhow = "1.0.58"
28-
clap = { version = "3.2.8", features = ["derive"] }
29-
dashmap = "5.3.4"
27+
anyhow = "1.0.65"
28+
clap = { version = "3.2.22", features = ["derive"] }
29+
dashmap = "5.4.0"
3030
derive_more = "0.99.17"
3131
indexmap = "1.9.1"
32-
once_cell = "1.13.0"
32+
once_cell = "1.15.0"
3333
phper-alloc = { version = "0.5.1", path = "../phper-alloc" }
3434
phper-macros = { version = "0.5.1", path = "../phper-macros" }
3535
phper-sys = { version = "0.5.1", path = "../phper-sys" }
36-
thiserror = "1.0.31"
36+
thiserror = "1.0.37"
3737

3838
[build-dependencies]
3939
phper-build = { version = "0.5.1", path = "../phper-build" }

0 commit comments

Comments
 (0)