diff --git a/libraries/droplet/Cargo.lock b/libraries/droplet/Cargo.lock index a698ec9d..7f99250a 100644 --- a/libraries/droplet/Cargo.lock +++ b/libraries/droplet/Cargo.lock @@ -219,7 +219,7 @@ dependencies = [ [[package]] name = "droplet-rs" -version = "0.15.0" +version = "0.15.1" dependencies = [ "anyhow", "async-trait", diff --git a/libraries/droplet/Cargo.toml b/libraries/droplet/Cargo.toml index dbd1461d..27dab856 100644 --- a/libraries/droplet/Cargo.toml +++ b/libraries/droplet/Cargo.toml @@ -2,7 +2,7 @@ edition = "2021" authors = ["Drop-OSS"] name = "droplet-rs" -version = "0.15.0" +version = "0.15.1" license = "AGPL-3.0-only" description = "Droplet is a `napi.rs` Rust/Node.js package full of high-performance and low-level utils for Drop" diff --git a/libraries/droplet/src/main.rs b/libraries/droplet/src/main.rs index 9f163ab4..a9289652 100644 --- a/libraries/droplet/src/main.rs +++ b/libraries/droplet/src/main.rs @@ -17,7 +17,7 @@ pub async fn main() { |message| { println!("{}", message); }, - &None, + None, ) .await .unwrap(); diff --git a/libraries/droplet/src/manifest.rs b/libraries/droplet/src/manifest.rs index 9274ad2c..8f7f9e50 100644 --- a/libraries/droplet/src/manifest.rs +++ b/libraries/droplet/src/manifest.rs @@ -48,7 +48,7 @@ pub async fn generate_manifest_rusty( dir: &Path, progress_sfn: V, log_sfn: T, - reader_semaphore: &Option, + reader_semaphore: Option<&Semaphore>, ) -> anyhow::Result { let mut backend = create_backend_constructor(dir).ok_or(anyhow!("Could not create backend for path."))?()?;