diff --git a/mutiny-core/Cargo.toml b/mutiny-core/Cargo.toml index 7a8f85cfe..e34d11b09 100644 --- a/mutiny-core/Cargo.toml +++ b/mutiny-core/Cargo.toml @@ -17,9 +17,9 @@ lnurl-rs = { version = "0.2.7", default-features = false, features = ["async", " cfg-if = "1.0.0" bip39 = { version = "2.0.0" } bitcoin = { version = "0.29.2", default-features = false, features = ["serde", "secp-recovery", "rand"] } -bdk = { version = "1.0.0-alpha.1", default-features = false } -bdk_esplora = { version = "0.3.0", default-features = false, features = ["async-https"] } -bdk_chain = { version = "0.5.0", default-features = false, features = ["hashbrown"] } +bdk = { version = "=1.0.0-alpha.1", default-features = false } +bdk_esplora = { version = "=0.3.0", default-features = false, features = ["async-https"] } +bdk_chain = { version = "=0.5.0", default-features = false, features = ["hashbrown"] } bdk-macros = "0.6.0" getrandom = { version = "0.2" } serde = { version = "^1.0", features = ["derive"] } diff --git a/mutiny-core/src/lib.rs b/mutiny-core/src/lib.rs index 13bbe37c7..25a8d6ca5 100644 --- a/mutiny-core/src/lib.rs +++ b/mutiny-core/src/lib.rs @@ -7,7 +7,6 @@ clippy::arc_with_non_send_sync, type_alias_bounds )] -#![feature(async_fn_in_trait)] extern crate core; // background file is mostly an LDK copy paste diff --git a/mutiny-wasm/src/lib.rs b/mutiny-wasm/src/lib.rs index 29c9ebf29..60cea72eb 100644 --- a/mutiny-wasm/src/lib.rs +++ b/mutiny-wasm/src/lib.rs @@ -4,7 +4,6 @@ clippy::extra_unused_type_parameters, clippy::arc_with_non_send_sync )] -#![feature(async_fn_in_trait)] extern crate mutiny_core;