From 646c3222d3550c25023c16a91cc042b845efda45 Mon Sep 17 00:00:00 2001 From: Raoul Hidalgo Charman Date: Mon, 25 Mar 2024 23:01:18 +0800 Subject: [PATCH] Remove serde-serialize feature This wasn't used and is deprecated due to causing cyclic dependency issues. --- Cargo.lock | 2 -- matchbox_socket/Cargo.toml | 4 +--- 2 files changed, 1 insertion(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index c8dd45c3..c77cd225 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -5211,8 +5211,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/matchbox_socket/Cargo.toml b/matchbox_socket/Cargo.toml index 88c37cb4..f7719731 100644 --- a/matchbox_socket/Cargo.toml +++ b/matchbox_socket/Cargo.toml @@ -50,9 +50,7 @@ ggrs = { version = "0.10", default-features = false, optional = true, features = ] } ws_stream_wasm = { version = "0.7", default-features = false } wasm-bindgen-futures = { version = "0.4", default-features = false } -wasm-bindgen = { version = "0.2", default-features = false, features = [ - "serde-serialize", -] } +wasm-bindgen = { version = "0.2", default-features = false } futures-timer = { version = "3.0", default-features = false, features = [ "wasm-bindgen", ] }