diff options
author | Blaž Hrastnik | 2021-10-22 03:07:41 +0000 |
---|---|---|
committer | Blaž Hrastnik | 2021-10-22 03:15:18 +0000 |
commit | 182a59b5528075c0171756bff71275db8a7995f0 (patch) | |
tree | 1f477382ef5ec5e6764d98d680f0fd9fc0e06fb6 /helix-view | |
parent | 3b032e8e1fd342261b153aeb375f9c0e8d882b34 (diff) |
Update to rust 1.56 + 2021 edition
Diffstat (limited to 'helix-view')
-rw-r--r-- | helix-view/Cargo.toml | 2 | ||||
-rw-r--r-- | helix-view/src/theme.rs | 1 |
2 files changed, 1 insertions, 2 deletions
diff --git a/helix-view/Cargo.toml b/helix-view/Cargo.toml index fce3fdd1..ef09b964 100644 --- a/helix-view/Cargo.toml +++ b/helix-view/Cargo.toml @@ -2,7 +2,7 @@ name = "helix-view" version = "0.4.1" authors = ["Blaž Hrastnik <blaz@mxxn.io>"] -edition = "2018" +edition = "2021" license = "MPL-2.0" description = "UI abstractions for use in backends" categories = ["editor"] diff --git a/helix-view/src/theme.rs b/helix-view/src/theme.rs index 9c33685b..757316bd 100644 --- a/helix-view/src/theme.rs +++ b/helix-view/src/theme.rs @@ -1,6 +1,5 @@ use std::{ collections::HashMap, - convert::TryFrom, path::{Path, PathBuf}, }; |