diff --git a/Cargo.lock b/Cargo.lock index e8326e8c2c..ce21213df0 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -56,7 +56,7 @@ version = "0.2.14" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8" dependencies = [ - "hermit-abi", + "hermit-abi 0.1.19", "libc", "winapi", ] @@ -108,7 +108,7 @@ dependencies = [ "boa_ast", "boa_engine", "boa_parser", - "clap 4.0.26", + "clap 4.0.27", "colored", "jemallocator", "phf", @@ -235,7 +235,7 @@ dependencies = [ "boa_engine", "boa_gc", "boa_parser", - "clap 4.0.26", + "clap 4.0.27", "color-eyre", "colored", "fxhash", @@ -350,14 +350,14 @@ dependencies = [ [[package]] name = "clap" -version = "4.0.26" +version = "4.0.27" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2148adefda54e14492fb9bddcc600b4344c5d1a3123bd666dcb939c6f0e0e57e" +checksum = "0acbd8d28a0a60d7108d7ae850af6ba34cf2d1257fc646980e5f97ce14275966" dependencies = [ - "atty", "bitflags", "clap_derive", "clap_lex 0.3.0", + "is-terminal", "once_cell", "strsim", "termcolor", @@ -697,7 +697,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0c93a581058d957dc4176875aad04f82f81613e6611d64aa1a9c755bdfb16711" dependencies = [ "cfg-if", - "rustix", + "rustix 0.35.13", "windows-sys", ] @@ -783,6 +783,15 @@ dependencies = [ "libc", ] +[[package]] +name = "hermit-abi" +version = "0.2.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ee512640fe35acbfb4bb779db6f0d80704c2cacfa2e39b601ef3e3f47d1ae4c7" +dependencies = [ + "libc", +] + [[package]] name = "iana-time-zone" version = "0.1.53" @@ -967,6 +976,28 @@ version = "0.7.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "59ce5ef949d49ee85593fc4d3f3f95ad61657076395cbbce23e2121fc5542074" +[[package]] +name = "io-lifetimes" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a7d367024b3f3414d8e01f437f704f41a9f64ab36f9067fa73e526ad4c763c87" +dependencies = [ + "libc", + "windows-sys", +] + +[[package]] +name = "is-terminal" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "aae5bc6e2eb41c9def29a3e0f1306382807764b9b53112030eff57435667352d" +dependencies = [ + "hermit-abi 0.2.6", + "io-lifetimes 1.0.1", + "rustix 0.36.3", + "windows-sys", +] + [[package]] name = "itertools" version = "0.10.5" @@ -1039,6 +1070,12 @@ version = "0.0.46" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d4d2456c373231a208ad294c33dc5bff30051eafd954cd4caae83a712b12854d" +[[package]] +name = "linux-raw-sys" +version = "0.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8f9f08d8963a6c613f4b1a78f4f4a4dbfadf8e6545b2d72861731e4858b8b47f" + [[package]] name = "litemap" version = "0.4.0" @@ -1173,7 +1210,7 @@ version = "1.14.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f6058e64324c71e02bc2b150e4f3bc8286db6c83092132ffa3f6b1eab0f9def5" dependencies = [ - "hermit-abi", + "hermit-abi 0.1.19", "libc", ] @@ -1513,9 +1550,23 @@ checksum = "727a1a6d65f786ec22df8a81ca3121107f235970dc1705ed681d3e6e8b9cd5f9" dependencies = [ "bitflags", "errno", - "io-lifetimes", + "io-lifetimes 0.7.5", + "libc", + "linux-raw-sys 0.0.46", + "windows-sys", +] + +[[package]] +name = "rustix" +version = "0.36.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0b1fbb4dfc4eb1d390c02df47760bb19a84bb80b301ecc947ab5406394d8223e" +dependencies = [ + "bitflags", + "errno", + "io-lifetimes 1.0.1", "libc", - "linux-raw-sys", + "linux-raw-sys 0.1.3", "windows-sys", ] diff --git a/boa_cli/Cargo.toml b/boa_cli/Cargo.toml index 97966ca111..6c93267496 100644 --- a/boa_cli/Cargo.toml +++ b/boa_cli/Cargo.toml @@ -17,7 +17,7 @@ boa_ast = { workspace = true, features = ["serde"]} boa_parser.workspace = true rustyline = "10.0.0" rustyline-derive = "0.7.0" -clap = { version = "4.0.26", features = ["derive"] } +clap = { version = "4.0.27", features = ["derive"] } serde_json = "1.0.89" colored = "2.0.0" regex = "1.7.0" diff --git a/boa_tester/Cargo.toml b/boa_tester/Cargo.toml index 10f8cf5159..b7174f417d 100644 --- a/boa_tester/Cargo.toml +++ b/boa_tester/Cargo.toml @@ -15,7 +15,7 @@ rust-version.workspace = true boa_engine = { workspace = true, features = ["intl"] } boa_gc.workspace = true boa_parser.workspace = true -clap = { version = "4.0.26", features = ["derive"] } +clap = { version = "4.0.27", features = ["derive"] } serde = { version = "1.0.147", features = ["derive"] } serde_yaml = "0.9.14" serde_json = "1.0.89"