Skip to content

Commit c1052b7

Browse files
committed
Update dependencies.
1 parent 167605c commit c1052b7

File tree

8 files changed

+28
-28
lines changed

8 files changed

+28
-28
lines changed

examples/http-client/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@ license = "MulanPSL-2.0"
1313
crate-type = ["cdylib"]
1414

1515
[dependencies]
16-
anyhow = "1.0.40"
17-
bytes = "1.0.1"
18-
indexmap = "1.6.2"
16+
anyhow = "1.0.58"
17+
bytes = "1.1.0"
18+
indexmap = "1.9.0"
1919
phper = { version = "0.4.0-alpha.2", path = "../../phper" }
20-
reqwest = { version = "0.11.3", features = ["blocking", "cookies"] }
21-
thiserror = "1.0.24"
20+
reqwest = { version = "0.11.11", features = ["blocking", "cookies"] }
21+
thiserror = "1.0.31"
2222

2323
[dev-dependencies]
2424
phper-test = { version = "0.4.0-alpha.2", path = "../../phper-test" }

examples/http-server/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@ license = "MulanPSL-2.0"
1313
crate-type = ["cdylib"]
1414

1515
[dependencies]
16-
hyper = { version = "0.14.8", features = ["http1", "runtime", "server"] }
16+
hyper = { version = "0.14.19", features = ["http1", "runtime", "server"] }
1717
phper = { version = "0.4.0-alpha.2", path = "../../phper" }
18-
thiserror = "1.0.24"
19-
tokio = { version = "1.6.0", features = ["full"] }
18+
thiserror = "1.0.31"
19+
tokio = { version = "1.19.2", features = ["full"] }
2020

2121
[dev-dependencies]
2222
phper-test = { version = "0.4.0-alpha.2", path = "../../phper-test" }
23-
reqwest = "0.11.3"
23+
reqwest = "0.11.11"

examples/logging/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ license = "MulanPSL-2.0"
1313
crate-type = ["cdylib"]
1414

1515
[dependencies]
16-
anyhow = "1.0.57"
16+
anyhow = "1.0.58"
1717
phper = { version = "0.4.0-alpha.2", path = "../../phper" }
1818

1919
[dev-dependencies]

phper-macros/Cargo.toml

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

1717
[dependencies]
18-
quote = "1.0.2"
19-
syn = { version = "1.0.11", features = ["full"] }
20-
proc-macro2 = "1.0.6"
18+
quote = "1.0.20"
19+
syn = { version = "1.0.98", features = ["full"] }
20+
proc-macro2 = "1.0.40"
2121

2222
[dev-dependencies]
23-
syn = { version = "1.0.11", features = ["full", "extra-traits"] }
23+
syn = { version = "1.0.98", features = ["full", "extra-traits"] }

phper-sys/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,5 @@ license = "MulanPSL-2.0"
1010
keywords = ["php", "binding"]
1111

1212
[build-dependencies]
13-
bindgen = "0.58.1"
14-
cc = "1.0.61"
13+
bindgen = "0.60.1"
14+
cc = "1.0.73"

phper-test/Cargo.toml

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

1717
[dependencies]
1818
fastcgi-client = { version = "0.7.0", optional = true }
19-
libc = "0.2.97"
20-
once_cell = "1.5.2"
19+
libc = "0.2.126"
20+
once_cell = "1.12.0"
2121
phper-macros = { version = "0.4.0-alpha.2", path = "../phper-macros" }
22-
tempfile = "3.1.0"
23-
tokio = { version = "1.7.0", optional = true }
22+
tempfile = "3.3.0"
23+
tokio = { version = "1.19.2", optional = true }
2424

2525
[package.metadata.docs.rs]
2626
rustdoc-args = ["--cfg", "docsrs"]

phper/Cargo.toml

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

1616
[dependencies]
17-
anyhow = "1.0.40"
18-
clap = { version = "3.0.10", features = ["derive"] }
19-
dashmap = "4.0.2"
20-
derive_more = "0.99.13"
21-
indexmap = "1.6.2"
22-
once_cell = "1.7.2"
17+
anyhow = "1.0.58"
18+
clap = { version = "3.2.5", features = ["derive"] }
19+
dashmap = "5.3.4"
20+
derive_more = "0.99.17"
21+
indexmap = "1.9.0"
22+
once_cell = "1.12.0"
2323
phper-alloc = { version = "0.4.0-alpha.2", path = "../phper-alloc" }
2424
phper-macros = { version = "0.4.0-alpha.2", path = "../phper-macros" }
2525
phper-sys = { version = "0.4.0-alpha.2", path = "../phper-sys" }
26-
thiserror = "1.0.10"
26+
thiserror = "1.0.31"
2727

2828
[build-dependencies]
2929
phper-build = { version = "0.4.0-alpha.2", path = "../phper-build" }

tests/integration/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ license = "MulanPSL-2.0"
1313
crate-type = ["cdylib"]
1414

1515
[dependencies]
16-
indexmap = "1.6.2"
16+
indexmap = "1.9.0"
1717
phper = { version = "0.4.0-alpha.2", path = "../../phper" }
1818

1919
[dev-dependencies]

0 commit comments

Comments
 (0)