Skip to content

Commit dde27c4

Browse files
committed
Update dependencies.
1 parent 2e76332 commit dde27c4

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

examples/http-client/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ crate-type = ["cdylib"]
2121
[dependencies]
2222
anyhow = "1.0.58"
2323
bytes = "1.1.0"
24-
indexmap = "1.9.0"
24+
indexmap = "1.9.1"
2525
phper = { version = "0.4.0-alpha.3", path = "../../phper" }
2626
reqwest = { version = "0.11.11", features = ["blocking", "cookies"] }
2727
thiserror = "1.0.31"

examples/http-server/Cargo.toml

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

2121
[dependencies]
22-
hyper = { version = "0.14.19", features = ["http1", "runtime", "server"] }
22+
hyper = { version = "0.14.20", features = ["http1", "runtime", "server"] }
2323
phper = { version = "0.4.0-alpha.3", path = "../../phper" }
2424
thiserror = "1.0.31"
2525
tokio = { version = "1.19.2", features = ["full"] }

phper-test/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ fpm = ["fastcgi-client", "tokio/full"]
1717
[dependencies]
1818
fastcgi-client = { version = "0.7.0", optional = true }
1919
libc = "0.2.126"
20-
once_cell = "1.12.0"
20+
once_cell = "1.13.0"
2121
phper-macros = { version = "0.4.0-alpha.3", path = "../phper-macros" }
2222
tempfile = "3.3.0"
2323
tokio = { version = "1.19.2", optional = true }

phper/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@ keywords = ["php", "binding", "extension", "module"]
1515

1616
[dependencies]
1717
anyhow = "1.0.58"
18-
clap = { version = "3.2.5", features = ["derive"] }
18+
clap = { version = "3.2.8", features = ["derive"] }
1919
dashmap = "5.3.4"
2020
derive_more = "0.99.17"
21-
indexmap = "1.9.0"
22-
once_cell = "1.12.0"
21+
indexmap = "1.9.1"
22+
once_cell = "1.13.0"
2323
phper-alloc = { version = "0.4.0-alpha.3", path = "../phper-alloc" }
2424
phper-macros = { version = "0.4.0-alpha.3", path = "../phper-macros" }
2525
phper-sys = { version = "0.4.0-alpha.3", path = "../phper-sys" }

tests/integration/Cargo.toml

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

1919
[dependencies]
20-
indexmap = "1.9.0"
20+
indexmap = "1.9.1"
2121
phper = { version = "0.4.0-alpha.3", path = "../../phper" }
2222

2323
[dev-dependencies]

0 commit comments

Comments
 (0)