Update rustyline dev dependency

This commit is contained in:
Alex Orlenko 2022-07-25 14:14:01 +01:00
parent 3ec076693a
commit 4fc69be5f6
No known key found for this signature in database
GPG Key ID: 4C150C250863B96D
2 changed files with 2 additions and 2 deletions

View File

@ -61,7 +61,7 @@ luajit-src = { version = ">= 210.4.0, < 220.0.0", optional = true }
luau0-src = { version = "0.3.6", optional = true }
[dev-dependencies]
rustyline = "9.0"
rustyline = "10.0"
criterion = { version = "0.3.4", features = ["html_reports", "async_tokio"] }
trybuild = "1.0"
futures = "0.3.5"

View File

@ -5,7 +5,7 @@ use rustyline::Editor;
fn main() {
let lua = Lua::new();
let mut editor = Editor::<()>::new();
let mut editor = Editor::<()>::new().expect("Failed to make rustyline editor");
loop {
let mut prompt = "> ";