-
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 to rc5 * Add release notes
- Loading branch information
Michael Müller
authored
Sep 9, 2021
1 parent
61a6d6a
commit 5514f43
Showing
28 changed files
with
156 additions
and
142 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.0.0-rc4" | ||
version = "3.0.0-rc5" | ||
authors = ["Parity Technologies <[email protected]>", "Robin Freyler <[email protected]>"] | ||
edition = "2018" | ||
|
||
|
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.0.0-rc4" | ||
version = "3.0.0-rc5" | ||
authors = ["Parity Technologies <[email protected]>", "Michael Müller <[email protected]>"] | ||
edition = "2018" | ||
|
||
|
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.0.0-rc4" | ||
version = "3.0.0-rc5" | ||
authors = ["Parity Technologies <[email protected]>", "Robin Freyler <[email protected]>"] | ||
edition = "2018" | ||
|
||
|
@@ -15,11 +15,11 @@ categories = ["no-std", "embedded"] | |
include = ["Cargo.toml", "src/**/*.rs", "README.md", "LICENSE"] | ||
|
||
[dependencies] | ||
ink_engine = { version = "3.0.0-rc4", path = "../engine/", default-features = false, optional = true } | ||
ink_metadata = { version = "3.0.0-rc4", path = "../metadata/", default-features = false, features = ["derive"], optional = true } | ||
ink_allocator = { version = "3.0.0-rc4", path = "../allocator/", default-features = false } | ||
ink_primitives = { version = "3.0.0-rc4", path = "../primitives/", default-features = false } | ||
ink_prelude = { version = "3.0.0-rc4", path = "../prelude/", default-features = false } | ||
ink_engine = { version = "3.0.0-rc5", path = "../engine/", default-features = false, optional = true } | ||
ink_metadata = { version = "3.0.0-rc5", path = "../metadata/", default-features = false, features = ["derive"], optional = true } | ||
ink_allocator = { version = "3.0.0-rc5", path = "../allocator/", default-features = false } | ||
ink_primitives = { version = "3.0.0-rc5", path = "../primitives/", default-features = false } | ||
ink_prelude = { version = "3.0.0-rc5", path = "../prelude/", default-features = false } | ||
|
||
scale = { package = "parity-scale-codec", version = "2.1", default-features = false, features = ["derive", "full"] } | ||
derive_more = { version = "0.99", default-features = false, features = ["from", "display"] } | ||
|
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.0.0-rc4" | ||
version = "3.0.0-rc5" | ||
authors = ["Parity Technologies <[email protected]>", "Robin Freyler <[email protected]>"] | ||
edition = "2018" | ||
|
||
|
@@ -15,12 +15,12 @@ categories = ["no-std", "embedded"] | |
include = ["Cargo.toml", "src/**/*.rs", "README.md", "LICENSE"] | ||
|
||
[dependencies] | ||
ink_env = { version = "3.0.0-rc4", path = "../env", default-features = false } | ||
ink_storage = { version = "3.0.0-rc4", path = "../storage", default-features = false } | ||
ink_primitives = { version = "3.0.0-rc4", path = "../primitives", default-features = false } | ||
ink_metadata = { version = "3.0.0-rc4", path = "../metadata", default-features = false, optional = true } | ||
ink_prelude = { version = "3.0.0-rc4", path = "../prelude", default-features = false } | ||
ink_lang_macro = { version = "3.0.0-rc4", path = "macro", default-features = false } | ||
ink_env = { version = "3.0.0-rc5", path = "../env", default-features = false } | ||
ink_storage = { version = "3.0.0-rc5", path = "../storage", default-features = false } | ||
ink_primitives = { version = "3.0.0-rc5", path = "../primitives", default-features = false } | ||
ink_metadata = { version = "3.0.0-rc5", path = "../metadata", default-features = false, optional = true } | ||
ink_prelude = { version = "3.0.0-rc5", path = "../prelude", default-features = false } | ||
ink_lang_macro = { version = "3.0.0-rc5", path = "macro", default-features = false } | ||
|
||
scale = { package = "parity-scale-codec", version = "2.1", default-features = false, features = ["derive", "full"] } | ||
derive_more = { version = "0.99", default-features = false, features = ["from"] } | ||
|
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.0.0-rc4" | ||
version = "3.0.0-rc5" | ||
authors = ["Parity Technologies <[email protected]>", "Robin Freyler <[email protected]>"] | ||
edition = "2018" | ||
|
||
|
@@ -18,7 +18,7 @@ include = ["Cargo.toml", "src/**/*.rs", "README.md", "LICENSE"] | |
name = "ink_lang_codegen" | ||
|
||
[dependencies] | ||
ir = { version = "3.0.0-rc4", package = "ink_lang_ir", path = "../ir", default-features = false } | ||
ir = { version = "3.0.0-rc5", 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.0.0-rc4" | ||
version = "3.0.0-rc5" | ||
authors = ["Parity Technologies <[email protected]>", "Robin Freyler <[email protected]>"] | ||
edition = "2018" | ||
|
||
|
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.0.0-rc4" | ||
version = "3.0.0-rc5" | ||
authors = ["Parity Technologies <[email protected]>", "Robin Freyler <[email protected]>"] | ||
edition = "2018" | ||
|
||
|
@@ -15,20 +15,20 @@ categories = ["no-std", "embedded"] | |
include = ["Cargo.toml", "src/**/*.rs", "README.md", "LICENSE"] | ||
|
||
[dependencies] | ||
ink_lang_ir = { version = "3.0.0-rc4", path = "../ir", default-features = false } | ||
ink_lang_codegen = { version = "3.0.0-rc4", path = "../codegen", default-features = false } | ||
ink_primitives = { version = "3.0.0-rc4", path = "../../primitives/", default-features = false } | ||
ink_lang_ir = { version = "3.0.0-rc5", path = "../ir", default-features = false } | ||
ink_lang_codegen = { version = "3.0.0-rc5", path = "../codegen", default-features = false } | ||
ink_primitives = { version = "3.0.0-rc5", path = "../../primitives/", default-features = false } | ||
|
||
scale = { package = "parity-scale-codec", version = "2.1", default-features = false, features = ["derive"] } | ||
syn = "1" | ||
proc-macro2 = "1" | ||
|
||
[dev-dependencies] | ||
ink_metadata = { version = "3.0.0-rc4", path = "../../metadata/" } | ||
ink_env = { version = "3.0.0-rc4", path = "../../env/" } | ||
ink_storage = { version = "3.0.0-rc4", path = "../../storage/" } | ||
ink_lang = { version = "3.0.0-rc4", path = ".." } | ||
ink_prelude = { version = "3.0.0-rc4", path = "../../prelude/" } | ||
ink_metadata = { version = "3.0.0-rc5", path = "../../metadata/" } | ||
ink_env = { version = "3.0.0-rc5", path = "../../env/" } | ||
ink_storage = { version = "3.0.0-rc5", path = "../../storage/" } | ||
ink_lang = { version = "3.0.0-rc5", path = ".." } | ||
ink_prelude = { version = "3.0.0-rc5", path = "../../prelude/" } | ||
|
||
trybuild = "1.0.24" | ||
scale-info = { version = "0.6", default-features = false, features = ["derive"] } | ||
|
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.0.0-rc4" | ||
version = "3.0.0-rc5" | ||
authors = ["Parity Technologies <[email protected]>", "Robin Freyler <[email protected]>"] | ||
edition = "2018" | ||
|
||
|
@@ -15,8 +15,8 @@ categories = ["no-std", "embedded"] | |
include = ["Cargo.toml", "src/**/*.rs", "README.md", "LICENSE"] | ||
|
||
[dependencies] | ||
ink_prelude = { version = "3.0.0-rc4", path = "../prelude/", default-features = false } | ||
ink_primitives = { version = "3.0.0-rc4", path = "../primitives/", default-features = false } | ||
ink_prelude = { version = "3.0.0-rc5", path = "../prelude/", default-features = false } | ||
ink_primitives = { version = "3.0.0-rc5", 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.0.0-rc4" | ||
version = "3.0.0-rc5" | ||
authors = ["Parity Technologies <[email protected]>", "Robin Freyler <[email protected]>"] | ||
edition = "2018" | ||
|
||
|
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.0.0-rc4" | ||
version = "3.0.0-rc5" | ||
authors = ["Parity Technologies <[email protected]>", "Robin Freyler <[email protected]>"] | ||
edition = "2018" | ||
|
||
|
@@ -15,7 +15,7 @@ categories = ["no-std", "embedded"] | |
include = ["/Cargo.toml", "src/**/*.rs", "/README.md", "/LICENSE"] | ||
|
||
[dependencies] | ||
ink_prelude = { version = "3.0.0-rc4", path = "../prelude/", default-features = false } | ||
ink_prelude = { version = "3.0.0-rc5", path = "../prelude/", default-features = false } | ||
scale = { package = "parity-scale-codec", version = "2.1", default-features = false, features = ["derive", "full"] } | ||
scale-info = { version = "0.6", default-features = false, features = ["derive"], 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_storage" | ||
version = "3.0.0-rc4" | ||
version = "3.0.0-rc5" | ||
authors = ["Parity Technologies <[email protected]>", "Robin Freyler <[email protected]>"] | ||
edition = "2018" | ||
|
||
|
@@ -15,11 +15,11 @@ categories = ["no-std", "embedded"] | |
include = ["Cargo.toml", "src/**/*.rs", "README.md", "LICENSE"] | ||
|
||
[dependencies] | ||
ink_env = { version = "3.0.0-rc4", path = "../env/", default-features = false } | ||
ink_metadata = { version = "3.0.0-rc4", path = "../metadata/", default-features = false, features = ["derive"], optional = true } | ||
ink_primitives = { version = "3.0.0-rc4", path = "../primitives/", default-features = false } | ||
ink_storage_derive = { version = "3.0.0-rc4", path = "derive", default-features = false } | ||
ink_prelude = { version = "3.0.0-rc4", path = "../prelude/", default-features = false } | ||
ink_env = { version = "3.0.0-rc5", path = "../env/", default-features = false } | ||
ink_metadata = { version = "3.0.0-rc5", path = "../metadata/", default-features = false, features = ["derive"], optional = true } | ||
ink_primitives = { version = "3.0.0-rc5", path = "../primitives/", default-features = false } | ||
ink_storage_derive = { version = "3.0.0-rc5", path = "derive", default-features = false } | ||
ink_prelude = { version = "3.0.0-rc5", path = "../prelude/", default-features = false } | ||
|
||
scale = { package = "parity-scale-codec", version = "2.1", default-features = false, features = ["derive", "full"] } | ||
derive_more = { version = "0.99", default-features = false, features = ["from", "display"] } | ||
|
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.0.0-rc4" | ||
version = "3.0.0-rc5" | ||
authors = ["Parity Technologies <[email protected]>", "Robin Freyler <[email protected]>"] | ||
edition = "2018" | ||
|
||
|
@@ -25,7 +25,7 @@ synstructure = "0.12.4" | |
|
||
[dev-dependencies] | ||
scale = { package = "parity-scale-codec", version = "2.1", default-features = false, features = ["derive", "full"] } | ||
ink_env = { version = "3.0.0-rc4", path = "../../env" } | ||
ink_primitives = { version = "3.0.0-rc4", path = "../../primitives" } | ||
ink_metadata = { version = "3.0.0-rc4", path = "../../metadata" } | ||
ink_storage = { version = "3.0.0-rc4", path = ".." } | ||
ink_env = { version = "3.0.0-rc5", path = "../../env" } | ||
ink_primitives = { version = "3.0.0-rc5", path = "../../primitives" } | ||
ink_metadata = { version = "3.0.0-rc5", path = "../../metadata" } | ||
ink_storage = { version = "3.0.0-rc5", 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,15 +1,15 @@ | ||
[package] | ||
name = "contract_terminate" | ||
version = "3.0.0-rc4" | ||
version = "3.0.0-rc5" | ||
authors = ["Parity Technologies <[email protected]>"] | ||
edition = "2018" | ||
|
||
[dependencies] | ||
ink_primitives = { version = "3.0.0-rc4", path = "../../crates/primitives", default-features = false } | ||
ink_metadata = { version = "3.0.0-rc4", path = "../../crates/metadata", default-features = false, features = ["derive"], optional = true } | ||
ink_env = { version = "3.0.0-rc4", path = "../../crates/env", default-features = false } | ||
ink_storage = { version = "3.0.0-rc4", path = "../../crates/storage", default-features = false } | ||
ink_lang = { version = "3.0.0-rc4", path = "../../crates/lang", default-features = false } | ||
ink_primitives = { version = "3.0.0-rc5", path = "../../crates/primitives", default-features = false } | ||
ink_metadata = { version = "3.0.0-rc5", path = "../../crates/metadata", default-features = false, features = ["derive"], optional = true } | ||
ink_env = { version = "3.0.0-rc5", path = "../../crates/env", default-features = false } | ||
ink_storage = { version = "3.0.0-rc5", path = "../../crates/storage", default-features = false } | ||
ink_lang = { version = "3.0.0-rc5", path = "../../crates/lang", default-features = false } | ||
|
||
scale = { package = "parity-scale-codec", version = "2.1", default-features = false, features = ["derive"] } | ||
scale-info = { version = "0.6", default-features = false, features = ["derive"], 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,16 +1,16 @@ | ||
[package] | ||
name = "contract_transfer" | ||
version = "3.0.0-rc4" | ||
version = "3.0.0-rc5" | ||
authors = ["Parity Technologies <[email protected]>"] | ||
edition = "2018" | ||
|
||
[dependencies] | ||
ink_primitives = { version = "3.0.0-rc4", path = "../../crates/primitives", default-features = false } | ||
ink_metadata = { version = "3.0.0-rc4", path = "../../crates/metadata", default-features = false, features = ["derive"], optional = true } | ||
ink_env = { version = "3.0.0-rc4", path = "../../crates/env", default-features = false, features = [ "ink-debug" ] } | ||
ink_storage = { version = "3.0.0-rc4", path = "../../crates/storage", default-features = false } | ||
ink_lang = { version = "3.0.0-rc4", path = "../../crates/lang", default-features = false } | ||
ink_prelude = { version = "3.0.0-rc4", path = "../../crates/prelude", default-features = false } | ||
ink_primitives = { version = "3.0.0-rc5", path = "../../crates/primitives", default-features = false } | ||
ink_metadata = { version = "3.0.0-rc5", path = "../../crates/metadata", default-features = false, features = ["derive"], optional = true } | ||
ink_env = { version = "3.0.0-rc5", path = "../../crates/env", default-features = false, features = [ "ink-debug" ] } | ||
ink_storage = { version = "3.0.0-rc5", path = "../../crates/storage", default-features = false } | ||
ink_lang = { version = "3.0.0-rc5", path = "../../crates/lang", default-features = false } | ||
ink_prelude = { version = "3.0.0-rc5", path = "../../crates/prelude", default-features = false } | ||
|
||
scale = { package = "parity-scale-codec", version = "2.1", default-features = false, features = ["derive"] } | ||
scale-info = { version = "0.6", default-features = false, features = ["derive"], 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,21 +1,21 @@ | ||
[package] | ||
name = "delegator" | ||
version = "3.0.0-rc4" | ||
version = "3.0.0-rc5" | ||
authors = ["Parity Technologies <[email protected]>"] | ||
edition = "2018" | ||
|
||
[dependencies] | ||
ink_primitives = { version = "3.0.0-rc4", path = "../../crates/primitives", default-features = false } | ||
ink_metadata = { version = "3.0.0-rc4", path = "../../crates/metadata", default-features = false, features = ["derive"], optional = true } | ||
ink_env = { version = "3.0.0-rc4", path = "../../crates/env", default-features = false } | ||
ink_storage = { version = "3.0.0-rc4", path = "../../crates/storage", default-features = false } | ||
ink_lang = { version = "3.0.0-rc4", path = "../../crates/lang", default-features = false } | ||
ink_primitives = { version = "3.0.0-rc5", path = "../../crates/primitives", default-features = false } | ||
ink_metadata = { version = "3.0.0-rc5", path = "../../crates/metadata", default-features = false, features = ["derive"], optional = true } | ||
ink_env = { version = "3.0.0-rc5", path = "../../crates/env", default-features = false } | ||
ink_storage = { version = "3.0.0-rc5", path = "../../crates/storage", default-features = false } | ||
ink_lang = { version = "3.0.0-rc5", path = "../../crates/lang", default-features = false } | ||
|
||
scale = { package = "parity-scale-codec", version = "2.1", default-features = false, features = ["derive"] } | ||
|
||
adder = { version = "3.0.0-rc4", path = "adder", default-features = false, features = ["ink-as-dependency"] } | ||
subber = { version = "3.0.0-rc4", path = "subber", default-features = false, features = ["ink-as-dependency"] } | ||
accumulator = { version = "3.0.0-rc4", path = "accumulator", default-features = false, features = ["ink-as-dependency"] } | ||
adder = { version = "3.0.0-rc5", path = "adder", default-features = false, features = ["ink-as-dependency"] } | ||
subber = { version = "3.0.0-rc5", path = "subber", default-features = false, features = ["ink-as-dependency"] } | ||
accumulator = { version = "3.0.0-rc5", path = "accumulator", default-features = false, features = ["ink-as-dependency"] } | ||
scale-info = { version = "0.6", default-features = false, features = ["derive"], optional = true } | ||
|
||
[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,15 +1,15 @@ | ||
[package] | ||
name = "accumulator" | ||
version = "3.0.0-rc4" | ||
version = "3.0.0-rc5" | ||
authors = ["Parity Technologies <[email protected]>"] | ||
edition = "2018" | ||
|
||
[dependencies] | ||
ink_primitives = { version = "3.0.0-rc4", path = "../../../crates/primitives", default-features = false } | ||
ink_metadata = { version = "3.0.0-rc4", path = "../../../crates/metadata", default-features = false, features = ["derive"], optional = true } | ||
ink_env = { version = "3.0.0-rc4", path = "../../../crates/env", default-features = false } | ||
ink_storage = { version = "3.0.0-rc4", path = "../../../crates/storage", default-features = false } | ||
ink_lang = { version = "3.0.0-rc4", path = "../../../crates/lang", default-features = false } | ||
ink_primitives = { version = "3.0.0-rc5", path = "../../../crates/primitives", default-features = false } | ||
ink_metadata = { version = "3.0.0-rc5", path = "../../../crates/metadata", default-features = false, features = ["derive"], optional = true } | ||
ink_env = { version = "3.0.0-rc5", path = "../../../crates/env", default-features = false } | ||
ink_storage = { version = "3.0.0-rc5", path = "../../../crates/storage", default-features = false } | ||
ink_lang = { version = "3.0.0-rc5", path = "../../../crates/lang", default-features = false } | ||
|
||
scale = { package = "parity-scale-codec", version = "2.1", default-features = false, features = ["derive"] } | ||
scale-info = { version = "0.6", default-features = false, features = ["derive"], 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,17 +1,17 @@ | ||
[package] | ||
name = "adder" | ||
version = "3.0.0-rc4" | ||
version = "3.0.0-rc5" | ||
authors = ["Parity Technologies <[email protected]>"] | ||
edition = "2018" | ||
|
||
[dependencies] | ||
ink_primitives = { version = "3.0.0-rc4", path = "../../../crates/primitives", default-features = false } | ||
ink_metadata = { version = "3.0.0-rc4", path = "../../../crates/metadata", default-features = false, features = ["derive"], optional = true } | ||
ink_env = { version = "3.0.0-rc4", path = "../../../crates/env", default-features = false } | ||
ink_storage = { version = "3.0.0-rc4", path = "../../../crates/storage", default-features = false } | ||
ink_lang = { version = "3.0.0-rc4", path = "../../../crates/lang", default-features = false } | ||
ink_primitives = { version = "3.0.0-rc5", path = "../../../crates/primitives", default-features = false } | ||
ink_metadata = { version = "3.0.0-rc5", path = "../../../crates/metadata", default-features = false, features = ["derive"], optional = true } | ||
ink_env = { version = "3.0.0-rc5", path = "../../../crates/env", default-features = false } | ||
ink_storage = { version = "3.0.0-rc5", path = "../../../crates/storage", default-features = false } | ||
ink_lang = { version = "3.0.0-rc5", path = "../../../crates/lang", default-features = false } | ||
|
||
accumulator = { version = "3.0.0-rc4", path = "../accumulator", default-features = false, features = ["ink-as-dependency"] } | ||
accumulator = { version = "3.0.0-rc5", path = "../accumulator", default-features = false, features = ["ink-as-dependency"] } | ||
|
||
scale = { package = "parity-scale-codec", version = "2.1", default-features = false, features = ["derive"] } | ||
scale-info = { version = "0.6", default-features = false, features = ["derive"], optional = true } | ||
|
Oops, something went wrong.