Skip to content

Commit

Permalink
Fix dependency loop with ahash on itself
Browse files Browse the repository at this point in the history
  • Loading branch information
tkmcmaster committed Jun 3, 2024
1 parent cc9964a commit 3cf8241
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion lib/config-wasm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,9 @@ config = { path = "../config" }
js-sys = "0.3"
serde = "1"
serde-wasm-bindgen = "0.6"
wasm-bindgen = { version = "0.2", features = ["serde-serialize"] }
# https://github.com/tkaitchuck/aHash/issues/95#issuecomment-1937448134
# https://github.com/rustwasm/wasm-bindgen/pull/3031#issuecomment-1442610289
wasm-bindgen = { version = "0.2" }
# Not a direct dependency but get random as of 0.2.2 throws an error on "unsupported targets"
# https://docs.rs/getrandom/0.2.2/getrandom/#unsupported-targets
# The fix is to add it as a supported target and specify the target. As of 0.2.2 both browser and nodejs use "js"
Expand Down

0 comments on commit 3cf8241

Please sign in to comment.