fix: improper trait bounds

This commit is contained in:
Erica Marigold 2024-01-04 18:28:04 +05:30
parent 207de2f09c
commit a5d118db4b
No known key found for this signature in database
GPG key ID: 2768CC0C23D245D1

View file

@ -1,9 +1,5 @@
use console::Style;
use std::{
env,
path::{Path, PathBuf},
process::ExitCode,
};
use std::{env, path::Path, process::ExitCode};
use tokio::{
fs::{self, OpenOptions},
io::AsyncWriteExt,
@ -17,7 +13,7 @@ use mlua::Compiler as LuaCompiler;
then writes it to an output file, with the required permissions.
*/
#[allow(clippy::similar_names)]
pub async fn build_standalone<T: AsRef<Path> + Into<PathBuf>>(
pub async fn build_standalone<T: AsRef<Path>>(
script_path: String,
output_path: T,
code: impl AsRef<[u8]>,