diff --git a/rln-wasm/Cargo.toml b/rln-wasm/Cargo.toml index 95bc14e..6b61812 100644 --- a/rln-wasm/Cargo.toml +++ b/rln-wasm/Cargo.toml @@ -13,7 +13,7 @@ default = ["console_error_panic_hook"] [dependencies] rln = { path = "../rln", default-features = false, features = ["wasm"] } num-bigint = { version = "0.4", default-features = false, features = ["rand", "serde"] } -wasmer = { version = "2.3", default-features = false, features = ["sys"] } +wasmer = { version = "2.3", default-features = false, features = ["js", "std"] } web-sys = {version = "0.3", features=["console"]} getrandom = { version = "0.2.7", default-features = false, features = ["js"] } wasm-bindgen = "0.2.63" diff --git a/rln/Cargo.toml b/rln/Cargo.toml index 94da4c7..f4cf2dc 100644 --- a/rln/Cargo.toml +++ b/rln/Cargo.toml @@ -22,7 +22,6 @@ ark-groth16 = { version = "=0.4.0", features = ["parallel"], default-features = ark-relations = { version = "=0.4.0", default-features = false, features = [ "std" ] } ark-serialize = { version = "=0.4.1", default-features = false } ark-circom = { git = "https://github.com/gakonst/ark-circom", default-features = false, features = ["circom-2"] } -rkyv = "0.7.40" # WASM wasmer = { version = "2.3.0", default-features = false }