Skip to content

Commit

Permalink
Update libraries
Browse files Browse the repository at this point in the history
  • Loading branch information
dns13 committed Dec 4, 2022
1 parent f21517e commit 03c3a38
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 40 deletions.
55 changes: 19 additions & 36 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@ atty = "0.2"
rmpv = { version = "1.0", features = ["with-serde"] }
rmp-serde = "1.1"
serde_json = "1.0"
crossterm = "0.23.0"
crossterm = "0.25"
statistical = "1.0"
textplots = "0.8"
rpassword = "6.0"
rustyline = "9.1.2"
rpassword = "7.2"
rustyline = "10.0"
dirs = "4.0"
ring = "0.16.20"
data-encoding = "2.3.2"
Expand Down
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ fn main() -> std::io::Result<()> {
.auto_add_history(false)
.build();

let mut rl = Editor::<()>::with_config(config);
let mut rl = Editor::<()>::with_config(config).unwrap();

if let Some(path) = history_path.to_str() {
match rl.load_history(path) {
Expand Down

0 comments on commit 03c3a38

Please sign in to comment.