fix: disables serde-serializer feature from wasm-bindgen dep #83
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
👋🏼 hi! i hope this unannounced PR is fine.
this looks to disable the
serde-serialize
feature from thewasm-bindgen
dep onsauron-core
, which looks like was added about 3 years ago and is now unused. the reason for this is to break a possible dependency cycle as explained in rustwasm/wasm-bindgen#2770. i'm a bit of a novice when it comes to rust, but from what i can tell there are no uses ofinto_serde
(https://github.com/rustwasm/wasm-bindgen/blob/a03d23bd16cb9b1706a71f20ba062e5532b369ec/src/lib.rs#L249-L258) orfrom_serde
anymore (https://github.com/rustwasm/wasm-bindgen/blob/a03d23bd16cb9b1706a71f20ba062e5532b369ec/src/lib.rs#L218-L224).ran
just test-all
and all passed on a darwin arm64 host ✅