diff --git a/Cargo.lock b/Cargo.lock index b47f56cb52..f12d5af03a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1382,10 +1382,11 @@ dependencies = [ [[package]] name = "rustyline-derive" -version = "0.6.0" +version = "0.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bb35a55ab810b5c0fe31606fe9b47d1354e4dc519bec0a102655f78ea2b38057" +checksum = "107c3d5d7f370ac09efa62a78375f94d94b8a33c61d8c278b96683fb4dbf2d8d" dependencies = [ + "proc-macro2", "quote", "syn", ] diff --git a/boa_cli/Cargo.toml b/boa_cli/Cargo.toml index 55d2f24bce..b0a7265065 100644 --- a/boa_cli/Cargo.toml +++ b/boa_cli/Cargo.toml @@ -15,7 +15,7 @@ default-run = "boa" boa_engine = { path = "../boa_engine", features = ["deser", "console"], version = "0.15.0" } boa_interner = { path = "../boa_interner", version = "0.15.0" } rustyline = "9.1.2" -rustyline-derive = "0.6.0" +rustyline-derive = "0.7.0" clap = { version = "3.2.12", features = ["derive"] } serde_json = "1.0.82" colored = "2.0.0"