Browse Source

Bump clap from 4.3.1 to 4.3.2 (#3005)

Bumps [clap](https://github.com/clap-rs/clap) from 4.3.1 to 4.3.2.
- [Release notes](https://github.com/clap-rs/clap/releases)
- [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md)
- [Commits](https://github.com/clap-rs/clap/compare/clap_complete-v4.3.1...v4.3.2)

---
updated-dependencies:
- dependency-name: clap
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
pull/3006/head
dependabot[bot] 1 year ago committed by GitHub
parent
commit
d13ac8c096
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 14
      Cargo.lock
  2. 2
      boa_cli/Cargo.toml
  3. 2
      boa_tester/Cargo.toml

14
Cargo.lock generated

@ -387,7 +387,7 @@ dependencies = [
"boa_interner",
"boa_parser",
"boa_runtime",
"clap 4.3.1",
"clap 4.3.2",
"colored",
"jemallocator",
"phf",
@ -575,7 +575,7 @@ dependencies = [
"bitflags 2.3.1",
"boa_engine",
"boa_gc",
"clap 4.3.1",
"clap 4.3.2",
"color-eyre",
"colored",
"comfy-table",
@ -784,9 +784,9 @@ dependencies = [
[[package]]
name = "clap"
version = "4.3.1"
version = "4.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b4ed2379f8603fa2b7509891660e802b88c70a79a6427a70abb5968054de2c28"
checksum = "401a4694d2bf92537b6867d94de48c4842089645fdcdf6c71865b175d836e9c2"
dependencies = [
"clap_builder",
"clap_derive",
@ -808,9 +808,9 @@ dependencies = [
[[package]]
name = "clap_derive"
version = "4.3.1"
version = "4.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "59e9ef9a08ee1c0e1f2e162121665ac45ac3783b0f897db7244ae75ad9a8f65b"
checksum = "b8cd2b2a819ad6eec39e8f1d6b53001af1e5469f8c177579cdaeb313115b825f"
dependencies = [
"heck",
"proc-macro2",
@ -2023,7 +2023,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3533f2d19ca2842eec28f8ba60bc6cd0053a6215e97b19ffe74256cd347e5e0f"
dependencies = [
"cached-path",
"clap 4.3.1",
"clap 4.3.2",
"crlify",
"databake",
"displaydoc",

2
boa_cli/Cargo.toml

@ -19,7 +19,7 @@ boa_gc.workspace = true
boa_interner.workspace = true
boa_runtime.workspace = true
rustyline = { version = "11.0.0", features = ["derive"]}
clap = { version = "4.3.1", features = ["derive"] }
clap = { version = "4.3.2", features = ["derive"] }
serde_json = "1.0.96"
colored = "2.0.0"
regex = "1.8.3"

2
boa_tester/Cargo.toml

@ -14,7 +14,7 @@ rust-version.workspace = true
[dependencies]
boa_engine.workspace = true
boa_gc.workspace = true
clap = { version = "4.3.1", features = ["derive"] }
clap = { version = "4.3.2", features = ["derive"] }
serde = { version = "1.0.163", features = ["derive"] }
serde_yaml = "0.9.21"
serde_json = "1.0.96"

Loading…
Cancel
Save