mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-03 19:07:44 +03:00
Switch from toml::from_slice to toml::from_str (#5659)
This commit is contained in:
parent
64ec0256d3
commit
e9dc9f4935
5 changed files with 25 additions and 16 deletions
|
@ -39,6 +39,6 @@ pub fn find_files(dir: &Path, filename: &str) -> Vec<PathBuf> {
|
|||
}
|
||||
|
||||
pub fn lang_config() -> LangConfig {
|
||||
let bytes = std::fs::read(path::lang_config()).unwrap();
|
||||
toml::from_slice(&bytes).unwrap()
|
||||
let text = std::fs::read_to_string(path::lang_config()).unwrap();
|
||||
toml::from_str(&text).unwrap()
|
||||
}
|
||||
|
|
|
@ -156,8 +156,8 @@ pub fn lint(file: String) -> Result<(), DynError> {
|
|||
return Ok(());
|
||||
}
|
||||
let path = path::themes().join(file.clone() + ".toml");
|
||||
let theme = std::fs::read(&path).unwrap();
|
||||
let theme: Theme = toml::from_slice(&theme).expect("Failed to parse theme");
|
||||
let theme = std::fs::read_to_string(&path).unwrap();
|
||||
let theme: Theme = toml::from_str(&theme).expect("Failed to parse theme");
|
||||
|
||||
let mut messages: Vec<String> = vec![];
|
||||
get_rules().iter().for_each(|lint| match lint {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue