Skip to content

Commit d830be0

Browse files
Seulgi Kimmergify[bot]
authored andcommitted
Extract rlp
1 parent bbb7224 commit d830be0

File tree

32 files changed

+39
-2468
lines changed

32 files changed

+39
-2468
lines changed

Cargo.lock

Lines changed: 21 additions & 19 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ num-rational = "0.2.1"
3333
parking_lot = "0.6.0"
3434
primitives = { git = "https://github.com/CodeChain-io/rust-codechain-primitives.git", version = "0.4" }
3535
rand = "0.6.1"
36-
rlp = { path = "../util/rlp" }
36+
rlp = { git = "https://github.com/CodeChain-io/rlp.git", version = "0.3" }
3737
rlp_compress = { path = "../util/rlp_compress" }
3838
rlp_derive = { path = "../util/rlp_derive" }
3939
snap = "0.2"

discovery/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ never-type = "0.1.0"
1414
parking_lot = "0.6.0"
1515
primitives = { git = "https://github.com/CodeChain-io/rust-codechain-primitives.git", version = "0.4" }
1616
rand = "0.6.1"
17-
rlp = { path = "../util/rlp" }
17+
rlp = { git = "https://github.com/CodeChain-io/rlp.git", version = "0.3" }
1818
time = "0.1"
1919

2020
[dev-dependencies]

key/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ never-type = "0.1.0"
1414
parking_lot = "0.6.0"
1515
primitives = { git = "https://github.com/CodeChain-io/rust-codechain-primitives.git", version = "0.4" }
1616
rand_xorshift = "0.1.0"
17-
rlp = { path = "../util/rlp" }
17+
rlp = { git = "https://github.com/CodeChain-io/rlp.git", version = "0.3" }
1818
secp256k1 = { git = "https://github.com/CodeChain-io/rust-secp256k1.git", version = "0.6" }
1919
serde = "1.0"
2020
serde_derive = "1.0"

network/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ mio = "0.6.16"
1818
never-type = "0.1.0"
1919
parking_lot = "0.6.0"
2020
rand = "0.6.1"
21-
rlp = { path = "../util/rlp" }
21+
rlp = { git = "https://github.com/CodeChain-io/rlp.git", version = "0.3" }
2222
rlp_derive = { path = "../util/rlp_derive" }
2323
table = { path = "../util/table" }
2424
time = "0.1"

rpc/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ lazy_static = "1.2"
2424
log = "0.4.6"
2525
parking_lot = "0.6.0"
2626
primitives = { git = "https://github.com/CodeChain-io/rust-codechain-primitives.git", version = "0.4" }
27-
rlp = { path = "../util/rlp" }
27+
rlp = { git = "https://github.com/CodeChain-io/rlp.git", version = "0.3" }
2828
serde = "1.0"
2929
serde_json = "1.0"
3030
serde_derive = "1.0"

state/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ log = "0.4.6"
1818
lru-cache = "0.1.1"
1919
parking_lot = "0.6.0"
2020
primitives = { git = "https://github.com/CodeChain-io/rust-codechain-primitives.git", version = "0.4" }
21-
rlp = { path = "../util/rlp" }
21+
rlp = { git = "https://github.com/CodeChain-io/rlp.git", version = "0.3" }
2222
rlp_derive = { path = "../util/rlp_derive" }
2323
rustc-hex = "1.0"
2424
util-error = { path = "../util/error" }

sync/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ never-type = "0.1.0"
2121
parking_lot = "0.6.0"
2222
primitives = { git = "https://github.com/CodeChain-io/rust-codechain-primitives.git", version = "0.4" }
2323
rand = "0.6.1"
24-
rlp = { path = "../util/rlp" }
24+
rlp = { git = "https://github.com/CodeChain-io/rlp.git", version = "0.3" }
2525
snap = "0.2"
2626
time = "0.1"
2727
token-generator = "0.1.0"

types/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ codechain-crypto = { git = "https://github.com/CodeChain-io/rust-codechain-crypt
88
codechain-json = { path = "../json" }
99
codechain-key = { path = "../key" }
1010
primitives = { git = "https://github.com/CodeChain-io/rust-codechain-primitives.git", version = "0.4" }
11-
rlp = { path = "../util/rlp" }
11+
rlp = { git = "https://github.com/CodeChain-io/rlp.git", version = "0.3" }
1212
rlp_derive = { path = "../util/rlp_derive" }
1313
serde = "1.0"
1414
serde_derive = "1.0"

util/error/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ version = "0.1.0"
44
authors = ["Parity Technologies <[email protected]>"]
55

66
[dependencies]
7-
rlp = { path = "../rlp" }
87
kvdb = { path = "../kvdb" }
98
primitives = { git = "https://github.com/CodeChain-io/rust-codechain-primitives.git", version = "0.4" }
109
error-chain = { version = "0.12", default-features = false }
10+
rlp = { git = "https://github.com/CodeChain-io/rlp.git", version = "0.3" }
1111
rustc-hex = "1.0"

0 commit comments

Comments
 (0)