From f1256fb5a1fd4cc1f38b3ce0f11821f6116ddeb3 Mon Sep 17 00:00:00 2001 From: Steffen <99717310+ngutech21@users.noreply.github.com> Date: Fri, 20 Oct 2023 22:19:10 +0200 Subject: [PATCH] chore: set fixed version for core-crate --- moksha-mint/Cargo.toml | 2 +- moksha-wallet/Cargo.toml | 5 +++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/moksha-mint/Cargo.toml b/moksha-mint/Cargo.toml index 0a1d3b05..0d1233d0 100644 --- a/moksha-mint/Cargo.toml +++ b/moksha-mint/Cargo.toml @@ -35,7 +35,7 @@ tracing = "0.1.40" tracing-subscriber = "0.3.17" secp256k1 = { version = "0.27.0", features = ["rand", "serde"] } thiserror = "1.0.49" -moksha-core = { path = "../moksha-core" } +moksha-core = { path = "../moksha-core", version = "0.1.0" } rocksdb = "0.21.0" lightning-invoice = "0.24.0" reqwest = { version = "0.11.22", default-features = false, features = ["serde_json", "json", "rustls-tls-webpki-roots", "socks"] } diff --git a/moksha-wallet/Cargo.toml b/moksha-wallet/Cargo.toml index 1ce7d65a..aebf3515 100644 --- a/moksha-wallet/Cargo.toml +++ b/moksha-wallet/Cargo.toml @@ -17,7 +17,7 @@ path = "src/lib.rs" anyhow = { version = "1.0.75", features = ["backtrace"] } clap = { version = "4.4.6", features = ["derive"] } secp256k1 = { version = "0.27.0", features = ["serde"] } -moksha-core = { path = "../moksha-core" } +moksha-core = { version = "0.1.0", path = "../moksha-core" } serde_json = "1.0.107" serde = "1.0.189" rand = "0.8.5" @@ -28,7 +28,8 @@ url = "2.4.1" dirs = "5.0.1" [target.'cfg(target_family = "wasm")'.dependencies] -ring = { version = "0.16.20", features = ["wasm32_unknown_unknown_js", "wasm32_c"] } +#ring = { version = "0.16.20", features = ["wasm32_unknown_unknown_js", "wasm32_c"] } +ring = { version = "0.16.20" } gloo-net = { version = "0.4.0" } serde-wasm-bindgen = "0.6.0" wasm-bindgen = "0.2.87"