mirror of
https://github.com/lune-org/lune.git
synced 2024-12-12 13:00:37 +00:00
Fix lints
This commit is contained in:
parent
4e68c64daf
commit
7e9aaeafe6
3 changed files with 6 additions and 7 deletions
|
@ -74,7 +74,6 @@ dunce = "1.0"
|
|||
lz4_flex = "0.11"
|
||||
path-clean = "1.0"
|
||||
pin-project = "1.0"
|
||||
os_str_bytes = "6.4"
|
||||
urlencoding = "2.1"
|
||||
|
||||
### RUNTIME
|
||||
|
@ -83,6 +82,7 @@ tracing = "0.1"
|
|||
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
||||
mlua = { version = "0.9.1", features = ["luau", "luau-jit", "serialize"] }
|
||||
tokio = { version = "1.24", features = ["full", "tracing"] }
|
||||
os_str_bytes = { version = "6.4", features = ["conversions"] }
|
||||
|
||||
### SERDE
|
||||
|
||||
|
|
|
@ -38,9 +38,8 @@ pub async fn find_lune_scripts(in_home_dir: bool) -> Result<Vec<(String, String)
|
|||
bail!("Failed to cast path to string slice.")
|
||||
};
|
||||
|
||||
let init_file_path = match discover_script_path(dir_path, in_home_dir) {
|
||||
Ok(init_file) => init_file,
|
||||
_ => continue,
|
||||
let Ok(init_file_path) = discover_script_path(dir_path, in_home_dir) else {
|
||||
continue;
|
||||
};
|
||||
|
||||
let contents = fs::read(init_file_path).await?;
|
||||
|
|
|
@ -99,7 +99,7 @@ fn process_env_get<'lua>(
|
|||
Some(value) => {
|
||||
let raw_value = RawOsString::new(value);
|
||||
Ok(LuaValue::String(
|
||||
lua.create_string(raw_value.as_raw_bytes())?,
|
||||
lua.create_string(raw_value.to_raw_bytes())?,
|
||||
))
|
||||
}
|
||||
None => Ok(LuaValue::Nil),
|
||||
|
@ -152,8 +152,8 @@ fn process_env_iter<'lua>(
|
|||
let raw_key = RawOsString::new(key);
|
||||
let raw_value = RawOsString::new(value);
|
||||
Ok((
|
||||
LuaValue::String(lua.create_string(raw_key.as_raw_bytes())?),
|
||||
LuaValue::String(lua.create_string(raw_value.as_raw_bytes())?),
|
||||
LuaValue::String(lua.create_string(raw_key.to_raw_bytes())?),
|
||||
LuaValue::String(lua.create_string(raw_value.to_raw_bytes())?),
|
||||
))
|
||||
}
|
||||
None => Ok((LuaValue::Nil, LuaValue::Nil)),
|
||||
|
|
Loading…
Reference in a new issue