diff --git a/Cargo.lock b/Cargo.lock index ab39463133..a7880291aa 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1953,8 +1953,6 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4be2531df63900aeb2bca0daaaddec08491ee64ceecbee5076636a3b026795a8" dependencies = [ "cfg-if", - "serde", - "serde_json", "wasm-bindgen-macro", ] diff --git a/src/core/Cargo.toml b/src/core/Cargo.toml index 7823a100e1..20bc6261e6 100644 --- a/src/core/Cargo.toml +++ b/src/core/Cargo.toml @@ -36,7 +36,6 @@ csv = "1.3.0" enum_dispatch = "0.3.13" finch = { version = "0.6.0", optional = true } fixedbitset = "0.4.0" -getrandom = { version = "0.2", features = ["js"] } getset = "0.1.1" histogram = "0.11.0" itertools = "0.13.0" @@ -99,7 +98,8 @@ skip_feature_sets = [ [target.'cfg(all(target_arch = "wasm32", target_os="unknown"))'.dependencies] js-sys = "0.3.68" web-sys = { version = "0.3.69", features = ["console", "File", "FileReaderSync"] } -wasm-bindgen = { version = "0.2.89", features = ["serde-serialize"] } +wasm-bindgen = "0.2.89" +getrandom = { version = "0.2", features = ["js"] } [target.'cfg(all(target_arch = "wasm32"))'.dependencies] chrono = { version = "0.4.32", features = ["wasmbind"] }