Skip to content

Commit 6fa5a4a

Browse files
committed
rename module name, Fixed #63
1 parent 90ea5c9 commit 6fa5a4a

File tree

5 files changed

+42
-42
lines changed

5 files changed

+42
-42
lines changed

Cargo.lock

+34-34
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node/runtime/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ inherents = { package = "substrate-inherents", git = 'https://github.com/darwini
6161

6262
transaction-payment-rpc-runtime-api = { package = "srml-transaction-payment-rpc-runtime-api", git = 'https://github.com/darwinia-network/substrate.git', default-features = false }
6363

64-
kton = { package = "evo-kton", path = '../../srml/kton', default-features = false }
64+
kton = { package = "darwinia-kton", path = '../../srml/kton', default-features = false }
6565
staking = { package = "darwinia-staking", path = "../../srml/staking", default-features = false }
6666

6767
merkle-mountain-range = { path = "../../core/merkle-mountain-range", default-features = false }

srml/kton/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[package]
2-
name = "evo-kton"
2+
name = "darwinia-kton"
33
version = "0.1.0"
44
authors = ["Darwinia Network <hello@itering.com>"]
55
edition = "2018"
@@ -15,7 +15,7 @@ srml-support = { git = 'https://github.com/darwinia-network/substrate.git', defa
1515
system = { package = "srml-system", git = 'https://github.com/darwinia-network/substrate.git', default-features = false }
1616
timestamp = { package = "srml-timestamp", git = 'https://github.com/darwinia-network/substrate.git', default-features = false }
1717
substrate-primitives = { git = 'https://github.com/darwinia-network/substrate.git', default-features = false }
18-
dsupport = { package = "evo-support", path = "../support", default-features = false }
18+
darwinia-support = { package = "darwinia-support", path = "../support", default-features = false }
1919

2020
[dev-dependencies]
2121
runtime_io = { package = "sr-io", git = 'https://github.com/darwinia-network/substrate.git' }
@@ -34,5 +34,5 @@ std = [
3434
"system/std",
3535
"timestamp/std",
3636
"substrate-primitives/std",
37-
"dsupport/std",
37+
"darwinia-support/std",
3838
]

srml/staking/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ srml-support = { git = 'https://github.com/darwinia-network/substrate.git', defa
1616
system = { package = "srml-system", git = 'https://github.com/darwinia-network/substrate.git', default-features = false }
1717
timestamp = { package = "srml-timestamp", git = 'https://github.com/darwinia-network/substrate.git', default-features = false }
1818
session = { package = "srml-session",git = 'https://github.com/darwinia-network/substrate.git', default-features = false, features = ["historical"] }
19-
dsupport = { package = "evo-support", path = "../support", default-features = false }
19+
darwinia-support = { package = "darwinia-support", path = "../support", default-features = false }
2020
substrate-primitives = { git = 'https://github.com/darwinia-network/substrate.git', default-features = false }
2121
sr-arithmetic = { git = 'https://github.com/darwinia-network/substrate.git', default-features = false }
2222
sr-staking-primitives = { git = 'https://github.com/darwinia-network/substrate.git', default-features = false }
@@ -27,7 +27,7 @@ authorship = { package = "srml-authorship", git = 'https://github.com/darwinia-n
2727
substrate-primitives = { git = 'https://github.com/darwinia-network/substrate.git' }
2828
timestamp = { package = "srml-timestamp", git = 'https://github.com/darwinia-network/substrate.git' }
2929
balances = { package = "srml-balances", git = 'https://github.com/darwinia-network/substrate.git' }
30-
kton = { package = "evo-kton", path = "../kton" }
30+
kton = { package = "darwinia-kton", path = "../kton" }
3131
rand = "0.7.2"
3232
node-runtime = { path = "../../node/runtime" }
3333

@@ -48,7 +48,7 @@ std = [
4848
"session/std",
4949
"system/std",
5050
"timestamp/std",
51-
"dsupport/std",
51+
"darwinia-support/std",
5252
"sr-arithmetic/std",
5353
"sr-staking-primitives/std",
5454
"authorship/std"

srml/support/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[package]
2-
name = "evo-support"
2+
name = "darwinia-support"
33
version = "0.1.0"
44
authors = ["hammeWang <dsw0602@foxmail.com>"]
55
edition = "2018"

0 commit comments

Comments
 (0)