-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
substrate version uplifts polkadot-v0.9.33, ink 4.0.0-beta support (#45)
- Loading branch information
Showing
10 changed files
with
741 additions
and
1,014 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
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
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 |
---|---|---|
|
@@ -5,15 +5,10 @@ authors = ["Stake Technologies <[email protected]>"] | |
edition = "2021" | ||
|
||
[dependencies] | ||
ink_env = { version = "3", default-features = false } | ||
ink_lang = { version = "3", default-features = false } | ||
ink_metadata = { version = "3", default-features = false, features = ["derive"], optional = true } | ||
ink_prelude = { version = "3", default-features = false } | ||
ink_primitives = { version = "3", default-features = false } | ||
ink_storage = { version = "3", default-features = false } | ||
ink = { version = "~4.0.0-beta", default-features = false } | ||
|
||
scale = { package = "parity-scale-codec", version = "3", default-features = false, features = ["derive"] } | ||
scale-info = { version = "~2.1.0", default-features = false, features = ["derive"], optional = true } | ||
scale-info = { version = "2.3", default-features = false, features = ["derive"], optional = true } | ||
|
||
[lib] | ||
name = "rmrk_extension" | ||
|
@@ -23,12 +18,8 @@ crate-type = ["rlib"] | |
[features] | ||
default = ["std"] | ||
std = [ | ||
"ink_metadata/std", | ||
"ink_env/std", | ||
"ink_storage/std", | ||
"ink_primitives/std", | ||
"ink/std", | ||
"scale/std", | ||
"scale-info/std", | ||
"ink_prelude/std", | ||
] | ||
ink-as-dependency = [] |
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
Oops, something went wrong.