diff --git a/Cargo.toml b/Cargo.toml index 5f34fc8..54d8c21 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -63,7 +63,7 @@ luajit-src = { version = ">= 210.4.0, < 220.0.0", optional = true } luau0-src = { version = "0.5.0", optional = true } [dev-dependencies] -rustyline = "10.0" +rustyline = "11.0" criterion = { version = "0.4", features = ["html_reports", "async_tokio"] } trybuild = "1.0" futures = "0.3.5" diff --git a/examples/repl.rs b/examples/repl.rs index b4b0936..8f2cc77 100644 --- a/examples/repl.rs +++ b/examples/repl.rs @@ -5,7 +5,7 @@ use rustyline::Editor; fn main() { let lua = Lua::new(); - let mut editor = Editor::<()>::new().expect("Failed to make rustyline editor"); + let mut editor = Editor::<(), _>::new().expect("Failed to make rustyline editor"); loop { let mut prompt = "> "; @@ -19,7 +19,7 @@ fn main() { match lua.load(&line).eval::() { Ok(values) => { - editor.add_history_entry(line); + editor.add_history_entry(line).unwrap(); println!( "{}", values