git.delta.rocks / unique-network / refs/commits / 019c2ca599b7

difftreelog

Fix broken dependency on ed25519-dalek

Greg Zaitsev2020-07-17parent: #37abce6.patch.diff
in: master

6 files changed

deletedDockerfile-productiondiffbeforeafterboth

no changes

addedDockerfile-testnetdiffbeforeafterboth

no changes

deleteddocker-compose-production.ymldiffbeforeafterboth

no changes

addeddocker-compose-testnet.ymldiffbeforeafterboth

no changes

modifiedsmart_contract/ink-types-node-runtime/Cargo.tomldiffbeforeafterboth
7license = "GPL-3.0"7license = "GPL-3.0"
8readme = "README.md"8readme = "README.md"
99
10repository = "https://github.com/paritytech/ink"10repository = "https://github.com/usetech-llc/ink"
11documentation = "https://github.com/paritytech/ink/wiki"
12homepage = "https://www.parity.io/"11homepage = "https://www.parity.io/"
1312
14description = "[ink!] Rust based eDSL for writing smart contracts for Substrate"13description = "[ink!] Rust based eDSL for writing smart contracts for Substrate"
18include = ["/Cargo.toml", "src/**/*.rs", "/README.md", "/LICENSE"]17include = ["/Cargo.toml", "src/**/*.rs", "/README.md", "/LICENSE"]
1918
20[dependencies]19[dependencies]
21ink_core = { version = "2", git = "https://github.com/paritytech/ink", tag = "latest-v2", package = "ink_core", default-features = false }20ink_core = { version = "2", git = "https://github.com/usetech-llc/ink", tag = "latest-v2", package = "ink_core", default-features = false }
22frame-system = { git = "https://github.com/paritytech/substrate/", tag = "v2.0.0-rc3", package = "frame-system", default-features = false }21frame-system = { git = "https://github.com/usetech-llc/substrate/", branch = "nft_rc3", package = "frame-system", default-features = false }
23pallet-indices = { git = "https://github.com/paritytech/substrate/", tag = "v2.0.0-rc3", package = "pallet-indices", default-features = false }22pallet-indices = { git = "https://github.com/usetech-llc/substrate/", branch = "nft_rc3", package = "pallet-indices", default-features = false }
24sp-core = { git = "https://github.com/paritytech/substrate/", tag = "v2.0.0-rc3", package = "sp-core", default-features = false }23sp-core = { git = "https://github.com/usetech-llc/substrate/", branch = "nft_rc3", package = "sp-core", default-features = false }
25sp-io = { git = "https://github.com/paritytech/substrate/", tag = "v2.0.0-rc3", package = "sp-io", default-features = false, features = ["disable_panic_handler", "disable_oom", "disable_allocator"] }24sp-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"] }
26sp-runtime = { git = "https://github.com/paritytech/substrate/", tag = "v2.0.0-rc3", package = "sp-runtime", default-features = false }25sp-runtime = { git = "https://github.com/usetech-llc/substrate/", branch = "nft_rc3", package = "sp-runtime", default-features = false }
27scale = { package = "parity-scale-codec", version = "1.3", default-features = false, features = ["derive"] }26scale = { package = "parity-scale-codec", version = "1.3", default-features = false, features = ["derive"] }
2827
29[dependencies.type-metadata]28[dependencies.type-metadata]
modifiedsmart_contract/ink-types-node-runtime/examples/calls/Cargo.tomldiffbeforeafterboth
5edition = "2018"5edition = "2018"
66
7[dependencies]7[dependencies]
8ink_abi = { version = "2", git = "https://github.com/paritytech/ink", tag = "latest-v2", package = "ink_abi", default-features = false, features = ["derive"], optional = true }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/paritytech/ink", tag = "latest-v2", package = "ink_primitives", default-features = false }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/paritytech/ink", tag = "latest-v2", package = "ink_core", 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/paritytech/ink", tag = "latest-v2", package = "ink_lang", 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/paritytech/ink", tag = "latest-v2", package = "ink_prelude", default-features = false }12ink_prelude = { version = "2", git = "https://github.com/usetech-llc/ink", tag = "latest-v2", package = "ink_prelude", default-features = false }
1313
14sp-runtime = { git = "https://github.com/paritytech/substrate/", tag = "v2.0.0-rc3", package = "sp-runtime", default-features = false }
15scale = { package = "parity-scale-codec", version = "1.3", default-features = false, features = ["derive"] }14scale = { package = "parity-scale-codec", version = "1.3", default-features = false, features = ["derive"] }
16sp-keyring = { git = "https://github.com/paritytech/substrate/", tag = "v2.0.0-rc3", package = "sp-keyring", optional = true }15sp-keyring = { git = "https://github.com/usetech-llc/substrate/", branch = "nft_rc3", package = "sp-keyring", optional = true }
17ink_types_node_runtime = { path = "../../", default-features = false }16ink_types_node_runtime = { path = "../../", default-features = false }
1817
19[dependencies.type-metadata]18[dependencies.type-metadata]