From c9e7b64427deccb6d6c8e6ad73b2099f3305bedf Mon Sep 17 00:00:00 2001 From: Dylan Date: Mon, 29 Apr 2024 16:46:19 -0500 Subject: [PATCH] fix wasm --- crates/hyperdrive-wasm/Cargo.toml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/crates/hyperdrive-wasm/Cargo.toml b/crates/hyperdrive-wasm/Cargo.toml index 7ce6442..bf31e48 100644 --- a/crates/hyperdrive-wasm/Cargo.toml +++ b/crates/hyperdrive-wasm/Cargo.toml @@ -21,10 +21,10 @@ wasm-bindgen-futures = "0.4.36" wasm-bindgen = { version = "0.2.86", features = ["serde-serialize"] } hex = { package = "const-hex", version = "1.6", features = ["hex"] } -fixed-point = { version = "0.1.0", path = "../../hyperdrive-rs/hyperdrive/crates/fixed-point" } -fixed-point-macros = { version = "0.1.0", path = "../../hyperdrive-rs/hyperdrive/crates/fixed-point-macros" } -hyperdrive-math = { version = "0.1.0", path = "../../hyperdrive-rs/hyperdrive/crates/hyperdrive-math" } -hyperdrive-wrappers = { version = "0.1.0", path = "../../hyperdrive-rs/hyperdrive/crates/hyperdrive-wrappers" } +fixed-point = { version = "0.1.0", path = "../../hyperdrive-rs/crates/fixed-point" } +fixed-point-macros = { version = "0.1.0", path = "../../hyperdrive-rs/crates/fixed-point-macros" } +hyperdrive-math = { version = "0.1.0", path = "../../hyperdrive-rs/crates/hyperdrive-math" } +hyperdrive-wrappers = { version = "0.1.0", path = "../../hyperdrive-rs/crates/hyperdrive-wrappers" } # The `console_error_panic_hook` crate provides better debugging of panics by # logging them with `console.error`. This is great for development, but requires