Skip to content

Commit

Permalink
chore: set fixed version for core-crate
Browse files Browse the repository at this point in the history
  • Loading branch information
ngutech21 committed Oct 20, 2023
1 parent 83dcf33 commit f1256fb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion moksha-mint/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"] }
Expand Down
5 changes: 3 additions & 2 deletions moksha-wallet/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand All @@ -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"
Expand Down

0 comments on commit f1256fb

Please sign in to comment.