-
-
Notifications
You must be signed in to change notification settings - Fork 19
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
build: target wasm32-unknown-unknown failed on 0.11.0-beta.1 #66
Comments
in bp-core |
rust-bitcoin/rust-secp256k1@023d50b
|
temp solution Patch the secp256k1 crate with the latest version, or publish secp256k1 with a new version v0.28.1 bp-core = { version = "~0.11.0-beta.1" }
[target.'cfg(target_arch = "wasm32")'.dependencies]
wasm-bindgen = "0.2"
rand = { version = "0.8.4", optional = true }
getrandom = { version = "0.2", features = ["js"] }
[patch.crates-io]
secp256k1 = { git = "https://github.com/rust-bitcoin/rust-secp256k1/", features = ["alloc"]} The chain of crates being called: |
Thank you for the investigation. It seems to be an upstream issue. Is it filed in |
will do. |
Fixed in #72 |
cargo new demo
Cargo.toml
cargo build --target wasm32-unknown-unknown Finished dev [unoptimized + debuginfo] target(s) in 9.02s
Cargo.toml
The text was updated successfully, but these errors were encountered: