We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4a20157 commit ff5fdb4Copy full SHA for ff5fdb4
CHANGELOG.md
@@ -6,6 +6,9 @@
6
* The old macros can be replaced like follows: `int!(42)` -> `Int::from(42_i32)` etc.
7
* The `int!` and `uint!` macros now support arbitrary const expressions, not just literals
8
* `Int::new` and `UInt::new` are now const
9
+* Breaking: Serialization of `Int` and `UInt` now call the serialization of `i64` and `u64` directly instead of
10
+ serializing them as newtype structs, emulating `#[serde(transparent)]`.
11
+ This doesn't make a difference for `serde_json` for example, but it could make a difference for other serializers
12
13
# 0.2.2
14
0 commit comments