From d1cb7cc11405d043be646dcf410aeda3394e7635 Mon Sep 17 00:00:00 2001 From: Pierre Tondereau Date: Tue, 14 Jun 2022 10:45:27 +0200 Subject: [PATCH 1/2] Update dependancies. --- Cargo.toml | 4 ++-- crates/cli/Cargo.toml | 2 +- crates/macros/Cargo.toml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 37c0b6e..c37aed2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -13,7 +13,7 @@ exclude = ["/.github", "/.crates", "/guide"] [dependencies] bitflags = "1.2.1" -parking_lot = "0.11.2" +parking_lot = "0.12.1" cfg-if = "1.0" once_cell = "1.8.0" anyhow = { version = "1", optional = true } @@ -32,7 +32,7 @@ skeptic = "0.13" [target.'cfg(windows)'.build-dependencies] ureq = { version = "2.4", features = ["native-tls", "gzip"], default-features = false } native-tls = "0.2" -zip = "0.5" +zip = "0.6" [features] closure = [] diff --git a/crates/cli/Cargo.toml b/crates/cli/Cargo.toml index 23b9c81..4b370e5 100644 --- a/crates/cli/Cargo.toml +++ b/crates/cli/Cargo.toml @@ -15,7 +15,7 @@ ext-php-rs = { version = ">=0.7.1", path = "../../" } clap = { version = "3.1", features = ["derive"] } anyhow = "1" -dialoguer = "0.9" +dialoguer = "0.10" libloading = "0.7" cargo_metadata = "0.14" semver = "1.0" diff --git a/crates/macros/Cargo.toml b/crates/macros/Cargo.toml index 75770b7..5742f6a 100644 --- a/crates/macros/Cargo.toml +++ b/crates/macros/Cargo.toml @@ -13,7 +13,7 @@ proc-macro = true [dependencies] syn = { version = "1.0.68", features = ["full", "extra-traits", "printing"] } -darling = "0.12" +darling = "0.14" ident_case = "1.0.1" quote = "1.0.9" proc-macro2 = "1.0.26" From f6207e033c483f4494e7dae8860cbd7a3d45d64d Mon Sep 17 00:00:00 2001 From: Pierre Tondereau Date: Tue, 14 Jun 2022 11:26:11 +0200 Subject: [PATCH 2/2] Update clap. --- crates/cli/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/cli/Cargo.toml b/crates/cli/Cargo.toml index 4b370e5..e06958b 100644 --- a/crates/cli/Cargo.toml +++ b/crates/cli/Cargo.toml @@ -13,7 +13,7 @@ categories = ["api-bindings", "command-line-interface"] [dependencies] ext-php-rs = { version = ">=0.7.1", path = "../../" } -clap = { version = "3.1", features = ["derive"] } +clap = { version = ">=3.2.5", features = ["derive"] } anyhow = "1" dialoguer = "0.10" libloading = "0.7"