diff --git a/Cargo.lock b/Cargo.lock index 434f2e60..7164f721 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1625,7 +1625,6 @@ dependencies = [ name = "lune-std-process" version = "0.1.1" dependencies = [ - "bstr", "bytes", "directories", "lune-utils", diff --git a/crates/lune-std-process/Cargo.toml b/crates/lune-std-process/Cargo.toml index 7af5ad26..abcbb271 100644 --- a/crates/lune-std-process/Cargo.toml +++ b/crates/lune-std-process/Cargo.toml @@ -20,7 +20,7 @@ directories = "5.0" pin-project = "1.0" os_str_bytes = { version = "7.0", features = ["conversions"] } -bstr = "1.9" +bytes = "1.6.0" tokio = { version = "1", default-features = false, features = [ "io-std", @@ -31,4 +31,3 @@ tokio = { version = "1", default-features = false, features = [ ] } lune-utils = { version = "0.1.0", path = "../lune-utils" } -bytes = "1.6.0" diff --git a/crates/lune-std-process/src/stream.rs b/crates/lune-std-process/src/stream.rs index 830e0556..12619806 100644 --- a/crates/lune-std-process/src/stream.rs +++ b/crates/lune-std-process/src/stream.rs @@ -1,4 +1,3 @@ -use bstr::BString; use bytes::BytesMut; use mlua::prelude::*; use tokio::io::{AsyncRead, AsyncReadExt, AsyncWrite, AsyncWriteExt};