From 1f3c657c8073aec4f0b6ebac7be33b4851644745 Mon Sep 17 00:00:00 2001 From: Ben Dean-Kawamura Date: Mon, 20 Nov 2023 13:13:11 -0500 Subject: [PATCH] Manually remove loom dependency This is needed to vendor this code into moz-central, see https://github.com/mozilla/uniffi-rs/issues/1736 for details. --- Cargo.toml | 5 ----- 1 file changed, 5 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 3add8cb..ae71499 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -23,13 +23,8 @@ std = [] # Enables async receiving by implementing Future async = [] -[target.'cfg(loom)'.dependencies] -loom = { version = "0.5.3", features = ["futures"] } - [dev-dependencies] criterion = "0.3" - -[target.'cfg(not(loom))'.dev-dependencies] tokio = { version = "1", features = ["rt", "rt-multi-thread", "macros", "time"] } async-std = { version = "1", features = ["attributes"] }