difftreelog
Repoint smart contract to rc4
in: master
2 files changed
smart_contract/ink-types-node-runtime/Cargo.tomldiffbeforeafterboth--- a/smart_contract/ink-types-node-runtime/Cargo.toml
+++ b/smart_contract/ink-types-node-runtime/Cargo.toml
@@ -19,11 +19,11 @@
[dependencies]
ink_core = { version = "2", git = "https://github.com/usetech-llc/ink", tag = "latest-v2", package = "ink_core", default-features = false }
ink_prelude = { version = "2", git = "https://github.com/usetech-llc/ink", tag = "latest-v2", package = "ink_prelude", default-features = false }
-frame-system = { git = "https://github.com/usetech-llc/substrate/", branch = "nft_rc3", package = "frame-system", default-features = false }
-pallet-indices = { git = "https://github.com/usetech-llc/substrate/", branch = "nft_rc3", package = "pallet-indices", default-features = false }
-sp-core = { git = "https://github.com/usetech-llc/substrate/", branch = "nft_rc3", package = "sp-core", default-features = false }
-sp-io = { git = "https://github.com/usetech-llc/substrate/", branch = "nft_rc3", package = "sp-io", default-features = false, features = ["disable_panic_handler", "disable_oom", "disable_allocator"] }
-sp-runtime = { git = "https://github.com/usetech-llc/substrate/", branch = "nft_rc3", package = "sp-runtime", default-features = false }
+frame-system = { git = "https://github.com/usetech-llc/substrate/", branch = "rc4_ext_dispatch_reenabled", package = "frame-system", default-features = false }
+pallet-indices = { git = "https://github.com/usetech-llc/substrate/", branch = "rc4_ext_dispatch_reenabled", package = "pallet-indices", default-features = false }
+sp-core = { git = "https://github.com/usetech-llc/substrate/", branch = "rc4_ext_dispatch_reenabled", package = "sp-core", default-features = false }
+sp-io = { git = "https://github.com/usetech-llc/substrate/", branch = "rc4_ext_dispatch_reenabled", package = "sp-io", default-features = false, features = ["disable_panic_handler", "disable_oom", "disable_allocator"] }
+sp-runtime = { git = "https://github.com/usetech-llc/substrate/", branch = "rc4_ext_dispatch_reenabled", package = "sp-runtime", default-features = false }
scale = { package = "parity-scale-codec", version = "1.3", default-features = false, features = ["derive"] }
[dependencies.type-metadata]
smart_contract/ink-types-node-runtime/calls/Cargo.tomldiffbeforeafterboth1[package]2name = "calls"3version = "0.1.0"4authors = ["Parity Technologies <admin@parity.io>"]5edition = "2018"67[dependencies]8ink_abi = { version = "2", git = "https://github.com/usetech-llc/ink", tag = "latest-v2", package = "ink_abi", default-features = false, features = ["derive"], optional = true }9ink_primitives = { version = "2", git = "https://github.com/usetech-llc/ink", tag = "latest-v2", package = "ink_primitives", default-features = false }10ink_core = { version = "2", git = "https://github.com/usetech-llc/ink", tag = "latest-v2", package = "ink_core", default-features = false }11ink_lang = { version = "2", git = "https://github.com/usetech-llc/ink", tag = "latest-v2", package = "ink_lang", default-features = false }12ink_prelude = { version = "2", git = "https://github.com/usetech-llc/ink", tag = "latest-v2", package = "ink_prelude", default-features = false }1314scale = { package = "parity-scale-codec", version = "1.3", default-features = false, features = ["derive"] }15sp-keyring = { git = "https://github.com/usetech-llc/substrate/", branch = "nft_rc3", package = "sp-keyring", optional = true }16ink_types_node_runtime = { path = "../", default-features = false }1718[dependencies.type-metadata]19git = "https://github.com/type-metadata/type-metadata.git"20rev = "02eae9f35c40c943b56af5b60616219f2b72b47d"21default-features = false22features = ["derive"]23optional = true2425[lib]26name = "calls"27path = "lib.rs"28crate-type = [29 # Used for normal contract Wasm blobs.30 "cdylib",31 # Used for ABI generation.32 "rlib",33]3435[features]36default = ["test-env"]37std = [38 "ink_abi/std",39 "ink_core/std",40 "ink_primitives/std",41 "scale/std",42 "type-metadata/std",43 "ink_types_node_runtime/std",44 "sp-keyring",45]46test-env = [47 "std",48 "ink_lang/test-env",49]50ink-generate-abi = [51 "std",52 "ink_abi",53 "type-metadata",54 "ink_core/ink-generate-abi",55 "ink_lang/ink-generate-abi",56 "ink_types_node_runtime/ink-generate-abi",57]58ink-as-dependency = []5960[profile.release]61panic = "abort"62lto = true63opt-level = "z"64overflow-checks = true65codegen-units = 16667[workspace]68members = [69 ".ink/abi_gen"70]71exclude = [72 ".ink"73]1[package]2name = "calls"3version = "0.1.0"4authors = ["Parity Technologies <admin@parity.io>"]5edition = "2018"67[dependencies]8ink_abi = { version = "2", git = "https://github.com/usetech-llc/ink", tag = "latest-v2", package = "ink_abi", default-features = false, features = ["derive"], optional = true }9ink_primitives = { version = "2", git = "https://github.com/usetech-llc/ink", tag = "latest-v2", package = "ink_primitives", default-features = false }10ink_core = { version = "2", git = "https://github.com/usetech-llc/ink", tag = "latest-v2", package = "ink_core", default-features = false }11ink_lang = { version = "2", git = "https://github.com/usetech-llc/ink", tag = "latest-v2", package = "ink_lang", default-features = false }12ink_prelude = { version = "2", git = "https://github.com/usetech-llc/ink", tag = "latest-v2", package = "ink_prelude", default-features = false }1314scale = { package = "parity-scale-codec", version = "1.3", default-features = false, features = ["derive"] }15sp-keyring = { git = "https://github.com/usetech-llc/substrate/", branch = "rc4_ext_dispatch_reenabled", package = "sp-keyring", optional = true }16ink_types_node_runtime = { path = "../", default-features = false }1718[dependencies.type-metadata]19git = "https://github.com/type-metadata/type-metadata.git"20rev = "02eae9f35c40c943b56af5b60616219f2b72b47d"21default-features = false22features = ["derive"]23optional = true2425[lib]26name = "calls"27path = "lib.rs"28crate-type = [29 # Used for normal contract Wasm blobs.30 "cdylib",31 # Used for ABI generation.32 "rlib",33]3435[features]36default = ["test-env"]37std = [38 "ink_abi/std",39 "ink_core/std",40 "ink_primitives/std",41 "scale/std",42 "type-metadata/std",43 "ink_types_node_runtime/std",44 "sp-keyring",45]46test-env = [47 "std",48 "ink_lang/test-env",49]50ink-generate-abi = [51 "std",52 "ink_abi",53 "type-metadata",54 "ink_core/ink-generate-abi",55 "ink_lang/ink-generate-abi",56 "ink_types_node_runtime/ink-generate-abi",57]58ink-as-dependency = []5960[profile.release]61panic = "abort"62lto = true63opt-level = "z"64overflow-checks = true65codegen-units = 16667[workspace]68members = [69 ".ink/abi_gen"70]71exclude = [72 ".ink"73]