Skip to content

Commit

Permalink
Update URLs
Browse files Browse the repository at this point in the history
  • Loading branch information
RReverser committed Dec 2, 2023
1 parent 3412dbd commit 6a4a00e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ authors = ["Ingvar Stepanyan <me@rreverser.com>"]
edition = "2018"
readme = "README.md"
license = "MIT"
repository = "https://github.com/cloudflare/serde-wasm-bindgen"
repository = "https://github.com/RReverser/serde-wasm-bindgen"
description = "Native Serde adapter for wasm-bindgen"
categories = ["development-tools::ffi", "wasm", "encoding"]
keywords = ["serde", "serialization", "javascript", "wasm", "webassembly"]
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -160,5 +160,5 @@ There's no built-in type generation in this crate, but you can [tsify](https://g
## License

Licensed under the MIT license. See the
[LICENSE](https://github.com/cloudflare/serde-wasm-bindgen/blob/master/LICENSE)
[LICENSE](https://github.com/RReverser/serde-wasm-bindgen/blob/master/LICENSE)
file for details.
2 changes: 1 addition & 1 deletion src/de.rs
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,7 @@ impl<'de> de::Deserializer<'de> for Deserializer {
} else if self.value.is_object() &&
// The only reason we want to support objects here is because serde uses
// `deserialize_any` for internally tagged enums
// (see https://github.com/cloudflare/serde-wasm-bindgen/pull/4#discussion_r352245020).
// (see https://github.com/RReverser/serde-wasm-bindgen/pull/4#discussion_r352245020).
//
// We expect such enums to be represented via plain JS objects, so let's explicitly
// exclude Sets, Maps and any other iterables. These should be deserialized via concrete
Expand Down

0 comments on commit 6a4a00e

Please sign in to comment.