-
Notifications
You must be signed in to change notification settings - Fork 431
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Bump version number to `3.2.0` * Update release notes * Remove reverted fix from changelog
- Loading branch information
Showing
36 changed files
with
89 additions
and
70 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
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,6 +1,6 @@ | ||
[package] | ||
name = "ink_allocator" | ||
version = "3.1.0" | ||
version = "3.2.0" | ||
authors = ["Parity Technologies <[email protected]>", "Robin Freyler <[email protected]>"] | ||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "ink_engine" | ||
version = "3.1.0" | ||
version = "3.2.0" | ||
authors = ["Parity Technologies <[email protected]>", "Michael Müller <[email protected]>"] | ||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "ink_env" | ||
version = "3.1.0" | ||
version = "3.2.0" | ||
authors = ["Parity Technologies <[email protected]>", "Robin Freyler <[email protected]>"] | ||
edition = "2021" | ||
|
||
|
@@ -15,10 +15,10 @@ categories = ["no-std", "embedded"] | |
include = ["Cargo.toml", "src/**/*.rs", "README.md", "LICENSE"] | ||
|
||
[dependencies] | ||
ink_metadata = { version = "3.1.0", path = "../metadata/", default-features = false, features = ["derive"], optional = true } | ||
ink_allocator = { version = "3.1.0", path = "../allocator/", default-features = false } | ||
ink_primitives = { version = "3.1.0", path = "../primitives/", default-features = false } | ||
ink_prelude = { version = "3.1.0", path = "../prelude/", default-features = false } | ||
ink_metadata = { version = "3.2.0", path = "../metadata/", default-features = false, features = ["derive"], optional = true } | ||
ink_allocator = { version = "3.2.0", path = "../allocator/", default-features = false } | ||
ink_primitives = { version = "3.2.0", path = "../primitives/", default-features = false } | ||
ink_prelude = { version = "3.2.0", path = "../prelude/", default-features = false } | ||
|
||
scale = { package = "parity-scale-codec", version = "3", default-features = false, features = ["derive", "full"] } | ||
derive_more = { version = "0.99", default-features = false, features = ["from", "display"] } | ||
|
@@ -32,7 +32,7 @@ static_assertions = "1.1" | |
rlibc = "1" | ||
|
||
[target.'cfg(not(target_arch = "wasm32"))'.dependencies] | ||
ink_engine = { version = "3.1.0", path = "../engine/", optional = true } | ||
ink_engine = { version = "3.2.0", path = "../engine/", optional = true } | ||
|
||
# Hashes for the off-chain environment. | ||
sha2 = { version = "0.10", optional = 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "ink_lang" | ||
version = "3.1.0" | ||
version = "3.2.0" | ||
authors = ["Parity Technologies <[email protected]>", "Robin Freyler <[email protected]>"] | ||
edition = "2021" | ||
|
||
|
@@ -15,19 +15,19 @@ categories = ["no-std", "embedded"] | |
include = ["Cargo.toml", "src/**/*.rs", "README.md", "LICENSE"] | ||
|
||
[dependencies] | ||
ink_env = { version = "3.1.0", path = "../env", default-features = false } | ||
ink_storage = { version = "3.1.0", path = "../storage", default-features = false } | ||
ink_primitives = { version = "3.1.0", path = "../primitives", default-features = false } | ||
ink_metadata = { version = "3.1.0", path = "../metadata", default-features = false, optional = true } | ||
ink_prelude = { version = "3.1.0", path = "../prelude", default-features = false } | ||
ink_lang_macro = { version = "3.1.0", path = "macro", default-features = false } | ||
ink_env = { version = "3.2.0", path = "../env", default-features = false } | ||
ink_storage = { version = "3.2.0", path = "../storage", default-features = false } | ||
ink_primitives = { version = "3.2.0", path = "../primitives", default-features = false } | ||
ink_metadata = { version = "3.2.0", path = "../metadata", default-features = false, optional = true } | ||
ink_prelude = { version = "3.2.0", path = "../prelude", default-features = false } | ||
ink_lang_macro = { version = "3.2.0", path = "macro", default-features = false } | ||
|
||
scale = { package = "parity-scale-codec", version = "3", default-features = false, features = ["derive", "full"] } | ||
derive_more = { version = "0.99", default-features = false, features = ["from"] } | ||
|
||
[dev-dependencies] | ||
ink_lang_ir = { version = "3.1.0", path = "ir" } | ||
ink_metadata = { version = "3.1.0", default-features = false, path = "../metadata" } | ||
ink_lang_ir = { version = "3.2.0", path = "ir" } | ||
ink_metadata = { version = "3.2.0", default-features = false, path = "../metadata" } | ||
|
||
trybuild = { version = "1.0.60", features = ["diff"] } | ||
# Required for the doctest of `env_access::EnvAccess::instantiate_contract` | ||
|
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,6 +1,6 @@ | ||
[package] | ||
name = "ink_lang_codegen" | ||
version = "3.1.0" | ||
version = "3.2.0" | ||
authors = ["Parity Technologies <[email protected]>", "Robin Freyler <[email protected]>"] | ||
edition = "2021" | ||
|
||
|
@@ -18,7 +18,7 @@ include = ["Cargo.toml", "src/**/*.rs", "README.md", "LICENSE"] | |
name = "ink_lang_codegen" | ||
|
||
[dependencies] | ||
ir = { version = "3.1.0", package = "ink_lang_ir", path = "../ir", default-features = false } | ||
ir = { version = "3.2.0", package = "ink_lang_ir", path = "../ir", default-features = false } | ||
quote = "1" | ||
syn = { version = "1.0", features = ["parsing", "full", "extra-traits"] } | ||
proc-macro2 = "1.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,6 +1,6 @@ | ||
[package] | ||
name = "ink_lang_ir" | ||
version = "3.1.0" | ||
version = "3.2.0" | ||
authors = ["Parity Technologies <[email protected]>", "Robin Freyler <[email protected]>"] | ||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "ink_lang_macro" | ||
version = "3.1.0" | ||
version = "3.2.0" | ||
authors = ["Parity Technologies <[email protected]>", "Robin Freyler <[email protected]>"] | ||
edition = "2021" | ||
|
||
|
@@ -15,19 +15,19 @@ categories = ["no-std", "embedded"] | |
include = ["Cargo.toml", "src/**/*.rs", "README.md", "LICENSE"] | ||
|
||
[dependencies] | ||
ink_lang_ir = { version = "3.1.0", path = "../ir", default-features = false } | ||
ink_lang_codegen = { version = "3.1.0", path = "../codegen", default-features = false } | ||
ink_primitives = { version = "3.1.0", path = "../../primitives/", default-features = false } | ||
ink_lang_ir = { version = "3.2.0", path = "../ir", default-features = false } | ||
ink_lang_codegen = { version = "3.2.0", path = "../codegen", default-features = false } | ||
ink_primitives = { version = "3.2.0", path = "../../primitives/", default-features = false } | ||
|
||
scale = { package = "parity-scale-codec", version = "3", default-features = false, features = ["derive"] } | ||
syn = "1" | ||
proc-macro2 = "1" | ||
|
||
[dev-dependencies] | ||
ink_metadata = { version = "3.1.0", path = "../../metadata/" } | ||
ink_env = { version = "3.1.0", path = "../../env/" } | ||
ink_storage = { version = "3.1.0", path = "../../storage/" } | ||
ink_lang = { version = "3.1.0", path = ".." } | ||
ink_metadata = { version = "3.2.0", path = "../../metadata/" } | ||
ink_env = { version = "3.2.0", path = "../../env/" } | ||
ink_storage = { version = "3.2.0", path = "../../storage/" } | ||
ink_lang = { version = "3.2.0", path = ".." } | ||
scale-info = { version = "2", default-features = false, features = ["derive"] } | ||
|
||
[lib] | ||
|
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,6 +1,6 @@ | ||
[package] | ||
name = "ink_metadata" | ||
version = "3.1.0" | ||
version = "3.2.0" | ||
authors = ["Parity Technologies <[email protected]>", "Robin Freyler <[email protected]>"] | ||
edition = "2021" | ||
|
||
|
@@ -15,8 +15,8 @@ categories = ["no-std", "embedded"] | |
include = ["Cargo.toml", "src/**/*.rs", "README.md", "LICENSE"] | ||
|
||
[dependencies] | ||
ink_prelude = { version = "3.1.0", path = "../prelude/", default-features = false } | ||
ink_primitives = { version = "3.1.0", path = "../primitives/", default-features = false } | ||
ink_prelude = { version = "3.2.0", path = "../prelude/", default-features = false } | ||
ink_primitives = { version = "3.2.0", path = "../primitives/", default-features = false } | ||
|
||
serde = { version = "1.0", default-features = false, features = ["derive", "alloc"] } | ||
impl-serde = "0.3.1" | ||
|
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,6 +1,6 @@ | ||
[package] | ||
name = "ink_prelude" | ||
version = "3.1.0" | ||
version = "3.2.0" | ||
authors = ["Parity Technologies <[email protected]>", "Robin Freyler <[email protected]>"] | ||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "ink_primitives" | ||
version = "3.1.0" | ||
version = "3.2.0" | ||
authors = ["Parity Technologies <[email protected]>", "Robin Freyler <[email protected]>"] | ||
edition = "2021" | ||
|
||
|
@@ -15,7 +15,7 @@ categories = ["no-std", "embedded"] | |
include = ["/Cargo.toml", "src/**/*.rs", "/README.md", "/LICENSE"] | ||
|
||
[dependencies] | ||
ink_prelude = { version = "3.1.0", path = "../prelude/", default-features = false } | ||
ink_prelude = { version = "3.2.0", path = "../prelude/", default-features = false } | ||
scale = { package = "parity-scale-codec", version = "3", default-features = false, features = ["derive", "full"] } | ||
scale-info = { version = "2", default-features = false, features = ["derive"], optional = true } | ||
cfg-if = "1" | ||
|
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,6 +1,6 @@ | ||
[package] | ||
name = "ink_storage" | ||
version = "3.1.0" | ||
version = "3.2.0" | ||
authors = ["Parity Technologies <[email protected]>", "Robin Freyler <[email protected]>"] | ||
edition = "2021" | ||
|
||
|
@@ -15,11 +15,11 @@ categories = ["no-std", "embedded"] | |
include = ["Cargo.toml", "src/**/*.rs", "README.md", "LICENSE"] | ||
|
||
[dependencies] | ||
ink_env = { version = "3.1.0", path = "../env/", default-features = false } | ||
ink_metadata = { version = "3.1.0", path = "../metadata/", default-features = false, features = ["derive"], optional = true } | ||
ink_primitives = { version = "3.1.0", path = "../primitives/", default-features = false } | ||
ink_storage_derive = { version = "3.1.0", path = "derive", default-features = false } | ||
ink_prelude = { version = "3.1.0", path = "../prelude/", default-features = false } | ||
ink_env = { version = "3.2.0", path = "../env/", default-features = false } | ||
ink_metadata = { version = "3.2.0", path = "../metadata/", default-features = false, features = ["derive"], optional = true } | ||
ink_primitives = { version = "3.2.0", path = "../primitives/", default-features = false } | ||
ink_storage_derive = { version = "3.2.0", path = "derive", default-features = false } | ||
ink_prelude = { version = "3.2.0", path = "../prelude/", default-features = false } | ||
|
||
scale = { package = "parity-scale-codec", version = "3", default-features = false, features = ["derive", "full"] } | ||
derive_more = { version = "0.99", default-features = false, features = ["from", "display"] } | ||
|
@@ -33,7 +33,7 @@ quickcheck_macros = "1.0" | |
itertools = "0.10" | ||
paste = "1.0" | ||
|
||
ink_lang = { version = "3.1.0", path = "../lang/", default-features = false } | ||
ink_lang = { version = "3.2.0", path = "../lang/", default-features = false } | ||
|
||
[features] | ||
default = ["std"] | ||
|
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,6 +1,6 @@ | ||
[package] | ||
name = "ink_storage_derive" | ||
version = "3.1.0" | ||
version = "3.2.0" | ||
authors = ["Parity Technologies <[email protected]>", "Robin Freyler <[email protected]>"] | ||
edition = "2021" | ||
|
||
|
@@ -25,8 +25,8 @@ synstructure = "0.12.4" | |
|
||
[dev-dependencies] | ||
scale = { package = "parity-scale-codec", version = "3", default-features = false, features = ["derive", "full"] } | ||
ink_env = { version = "3.1.0", path = "../../env" } | ||
ink_primitives = { version = "3.1.0", path = "../../primitives" } | ||
ink_metadata = { version = "3.1.0", path = "../../metadata" } | ||
ink_prelude = { version = "3.1.0", path = "../../prelude/" } | ||
ink_storage = { version = "3.1.0", path = ".." } | ||
ink_env = { version = "3.2.0", path = "../../env" } | ||
ink_primitives = { version = "3.2.0", path = "../../primitives" } | ||
ink_metadata = { version = "3.2.0", path = "../../metadata" } | ||
ink_prelude = { version = "3.2.0", path = "../../prelude/" } | ||
ink_storage = { version = "3.2.0", path = ".." } |
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,6 +1,6 @@ | ||
[package] | ||
name = "contract_terminate" | ||
version = "3.1.0" | ||
version = "3.2.0" | ||
authors = ["Parity Technologies <[email protected]>"] | ||
edition = "2021" | ||
publish = 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,6 +1,6 @@ | ||
[package] | ||
name = "contract_transfer" | ||
version = "3.1.0" | ||
version = "3.2.0" | ||
authors = ["Parity Technologies <[email protected]>"] | ||
edition = "2021" | ||
publish = 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,6 +1,6 @@ | ||
[package] | ||
name = "delegator" | ||
version = "3.1.0" | ||
version = "3.2.0" | ||
authors = ["Parity Technologies <[email protected]>"] | ||
edition = "2021" | ||
publish = 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,6 +1,6 @@ | ||
[package] | ||
name = "accumulator" | ||
version = "3.1.0" | ||
version = "3.2.0" | ||
authors = ["Parity Technologies <[email protected]>"] | ||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "adder" | ||
version = "3.1.0" | ||
version = "3.2.0" | ||
authors = ["Parity Technologies <[email protected]>"] | ||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "subber" | ||
version = "3.1.0" | ||
version = "3.2.0" | ||
authors = ["Parity Technologies <[email protected]>"] | ||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "dns" | ||
version = "3.1.0" | ||
version = "3.2.0" | ||
authors = ["Parity Technologies <[email protected]>"] | ||
edition = "2021" | ||
publish = 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,6 +1,6 @@ | ||
[package] | ||
name = "erc1155" | ||
version = "3.1.0" | ||
version = "3.2.0" | ||
authors = ["Parity Technologies <[email protected]>"] | ||
edition = "2021" | ||
publish = 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,6 +1,6 @@ | ||
[package] | ||
name = "erc20" | ||
version = "3.1.0" | ||
version = "3.2.0" | ||
authors = ["Parity Technologies <[email protected]>"] | ||
edition = "2021" | ||
publish = 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,6 +1,6 @@ | ||
[package] | ||
name = "erc721" | ||
version = "3.1.0" | ||
version = "3.2.0" | ||
authors = ["Parity Technologies <[email protected]>"] | ||
edition = "2021" | ||
publish = 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,6 +1,6 @@ | ||
[package] | ||
name = "flipper" | ||
version = "3.1.0" | ||
version = "3.2.0" | ||
authors = ["Parity Technologies <[email protected]>"] | ||
edition = "2021" | ||
publish = 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,6 +1,6 @@ | ||
[package] | ||
name = "incrementer" | ||
version = "3.1.0" | ||
version = "3.2.0" | ||
authors = ["Parity Technologies <[email protected]>"] | ||
edition = "2021" | ||
publish = 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,6 +1,6 @@ | ||
[package] | ||
name = "multisig" | ||
version = "3.1.0" | ||
version = "3.2.0" | ||
authors = ["Parity Technologies <[email protected]>"] | ||
edition = "2021" | ||
publish = 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,6 +1,6 @@ | ||
[package] | ||
name = "rand_extension" | ||
version = "3.1.0" | ||
version = "3.2.0" | ||
authors = ["Parity Technologies <[email protected]>"] | ||
edition = "2021" | ||
publish = 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,6 +1,6 @@ | ||
[package] | ||
name = "trait_erc20" | ||
version = "3.1.0" | ||
version = "3.2.0" | ||
authors = ["Parity Technologies <[email protected]>"] | ||
edition = "2021" | ||
publish = 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,6 +1,6 @@ | ||
[package] | ||
name = "trait_flipper" | ||
version = "3.1.0" | ||
version = "3.2.0" | ||
authors = ["Parity Technologies <[email protected]>"] | ||
edition = "2021" | ||
publish = false | ||
|
Oops, something went wrong.