-
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.
* Prep to release 3.7.1 * Consistify some fields and version across workspace * require only derive 3.6.8 or above to avoid ddry-run CI issue. 3.7.1 should be selected anyway * Go down to 3.7.0 - that version wasn't released yet * Add other recent changes * trailing newline * Set MSRV to 1.79 since we get compile errors on earlier versions * Add CountedInput to changelog Co-authored-by: Guillaume Thiolliere <[email protected]> * clippy * update release date --------- Co-authored-by: Guillaume Thiolliere <[email protected]>
- Loading branch information
Showing
5 changed files
with
42 additions
and
19 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,19 +1,19 @@ | ||
[package] | ||
name = "parity-scale-codec" | ||
description = "SCALE - Simple Concatenating Aggregated Little Endians" | ||
version = "3.7.0" | ||
authors = ["Parity Technologies <[email protected]>"] | ||
license = "Apache-2.0" | ||
repository = "https://github.com/paritytech/parity-scale-codec" | ||
categories = ["encoding"] | ||
edition = "2021" | ||
version.workspace = true | ||
authors.workspace = true | ||
license.workspace = true | ||
repository.workspace = true | ||
categories.workspace = true | ||
edition.workspace = true | ||
build = "build.rs" | ||
rust-version = "1.60.0" | ||
rust-version.workspace = true | ||
|
||
[dependencies] | ||
arrayvec = { version = "0.7", default-features = false } | ||
serde = { version = "1.0.215", default-features = false, optional = true } | ||
parity-scale-codec-derive = { path = "derive", version = ">= 3.6.8", default-features = false, optional = true } | ||
parity-scale-codec-derive = { path = "derive", version = "3.6.8", 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 } | ||
|
@@ -62,3 +62,12 @@ full = [] | |
|
||
[workspace] | ||
members = ["derive", "fuzzer"] | ||
|
||
[workspace.package] | ||
version = "3.7.0" | ||
authors = ["Parity Technologies <[email protected]>"] | ||
license = "Apache-2.0" | ||
repository = "https://github.com/paritytech/parity-scale-codec" | ||
categories = ["encoding"] | ||
edition = "2021" | ||
rust-version = "1.79.0" |
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,12 +1,12 @@ | ||
[package] | ||
name = "parity-scale-codec-derive" | ||
description = "Serialization and deserialization derive macro for Parity SCALE Codec" | ||
version = "3.6.8" | ||
authors = ["Parity Technologies <[email protected]>"] | ||
license = "Apache-2.0" | ||
edition = "2021" | ||
rust-version = "1.56.1" | ||
repository = "https://github.com/paritytech/parity-scale-codec" | ||
version.workspace = true | ||
authors.workspace = true | ||
license.workspace = true | ||
edition.workspace = true | ||
repository.workspace = true | ||
rust-version.workspace = true | ||
|
||
[lib] | ||
proc-macro = true | ||
|
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