-
Notifications
You must be signed in to change notification settings - Fork 94
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix stack overflow when decoding big array newtypes wrapped in a
Box
(
#462) * Fix stack overflow when decoding big array newtypes wrapped in a `Box` * Bump version to 3.6.2 * Update changelog * Fix indentation * Add an extra assert to make sure the number of non-ZST fields is correct * Add even more tests * Add release date to changelog
- Loading branch information
Showing
8 changed files
with
221 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
[package] | ||
name = "parity-scale-codec" | ||
description = "SCALE - Simple Concatenating Aggregated Little Endians" | ||
version = "3.6.1" | ||
version = "3.6.2" | ||
authors = ["Parity Technologies <[email protected]>"] | ||
license = "Apache-2.0" | ||
repository = "https://github.com/paritytech/parity-scale-codec" | ||
|
@@ -12,7 +12,7 @@ rust-version = "1.60.0" | |
[dependencies] | ||
arrayvec = { version = "0.7", default-features = false } | ||
serde = { version = "1.0.164", optional = true } | ||
parity-scale-codec-derive = { path = "derive", version = ">= 3.6.1", default-features = false, optional = true } | ||
parity-scale-codec-derive = { path = "derive", version = ">= 3.6.2", default-features = false, optional = true } | ||
bitvec = { version = "1", default-features = false, features = [ "alloc" ], optional = true } | ||
bytes = { version = "1", default-features = false, optional = true } | ||
byte-slice-cast = { version = "1.2.2", default-features = false } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
[package] | ||
name = "parity-scale-codec-derive" | ||
description = "Serialization and deserialization derive macro for Parity SCALE Codec" | ||
version = "3.6.1" | ||
version = "3.6.2" | ||
authors = ["Parity Technologies <[email protected]>"] | ||
license = "Apache-2.0" | ||
edition = "2021" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters