-
Notifications
You must be signed in to change notification settings - Fork 36
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #392 from TheWaWaR/update-ckb-to-v0.42
chore: Update ckb to v0.42
- Loading branch information
Showing
12 changed files
with
342 additions
and
317 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,24 @@ | ||
[package] | ||
name = "ckb-cli" | ||
version = "0.41.0" | ||
version = "0.42.1" | ||
license = "MIT" | ||
authors = ["Linfeng Qian <[email protected]>", "Nervos Core Dev <[email protected]>"] | ||
edition = "2018" | ||
description = "ckb command line interface" | ||
|
||
[dependencies] | ||
ckb-jsonrpc-types = { git = "https://github.com/nervosnetwork/ckb", tag = "v0.41.0-rc1" } | ||
ckb-hash = { git = "https://github.com/nervosnetwork/ckb", tag = "v0.41.0-rc1" } | ||
ckb-crypto = { git = "https://github.com/nervosnetwork/ckb", tag = "v0.41.0-rc1", features = ["secp"] } | ||
ckb-build-info = { git = "https://github.com/nervosnetwork/ckb", tag = "v0.41.0-rc1" } | ||
ckb-types = { git = "https://github.com/nervosnetwork/ckb", tag = "v0.41.0-rc1" } | ||
ckb-util = { git = "https://github.com/nervosnetwork/ckb", tag = "v0.41.0-rc1" } | ||
ckb-resource = { git = "https://github.com/nervosnetwork/ckb", tag = "v0.41.0-rc1" } | ||
ckb-dao-utils = { git = "https://github.com/nervosnetwork/ckb", tag = "v0.41.0-rc1" } | ||
ckb-chain-spec = { git = "https://github.com/nervosnetwork/ckb", tag = "v0.41.0-rc1" } | ||
ckb-sdk = { path = "ckb-sdk" } | ||
ckb-index = { path = "ckb-index" } | ||
plugin-protocol = { path = "plugin-protocol", package = "ckb-cli-plugin-protocol" } | ||
ckb-jsonrpc-types = "=0.42.0" | ||
ckb-hash = "=0.42.0" | ||
ckb-crypto = { version = "=0.42.0", features = ["secp"] } | ||
ckb-build-info = "=0.42.0" | ||
ckb-types = "=0.42.0" | ||
ckb-util = "=0.42.0" | ||
ckb-resource = "=0.42.0" | ||
ckb-dao-utils = "=0.42.0" | ||
ckb-chain-spec = "=0.42.0" | ||
ckb-sdk = { path = "ckb-sdk", version = "=0.42.1" } | ||
ckb-index = { path = "ckb-index", version = "=0.42.1" } | ||
plugin-protocol = { path = "plugin-protocol", package = "ckb-cli-plugin-protocol", version = "=0.42.1" } | ||
jsonrpc-core-client = "17" | ||
jsonrpc-core = "17" | ||
jsonrpc-derive = "17" | ||
|
@@ -60,7 +61,7 @@ tui = "0.6.0" | |
termion = "1.5" | ||
|
||
[build-dependencies] | ||
ckb-build-info = { git = "https://github.com/nervosnetwork/ckb", tag = "v0.41.0-rc1" } | ||
ckb-build-info = "=0.42.0" | ||
|
||
[workspace] | ||
members = ["ckb-sdk", "ckb-index", "ckb-sdk-types", "plugin-protocol"] |
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 |
---|---|---|
@@ -1,16 +1,17 @@ | ||
[package] | ||
name = "ckb-index" | ||
version = "0.41.0" | ||
version = "0.42.1" | ||
authors = ["Linfeng Qian <[email protected]>", "Nervos Core Dev <[email protected]>"] | ||
edition = "2018" | ||
license = "MIT" | ||
description = "ckb-cli index database" | ||
|
||
[dependencies] | ||
serde = { version = "1.0", features = ["rc"] } | ||
serde_derive = "1.0" | ||
bincode = "1.1.4" | ||
log = "0.4.6" | ||
failure = "0.1.5" | ||
ckb-types = { git = "https://github.com/nervosnetwork/ckb", tag = "v0.41.0-rc1" } | ||
ckb-sdk = { path = "../ckb-sdk" } | ||
rocksdb = { package = "ckb-rocksdb", version = "=0.13.0", features = ["snappy"] } | ||
ckb-types = "=0.42.0" | ||
ckb-sdk = { path = "../ckb-sdk", version = "=0.42.1" } | ||
rocksdb = { package = "ckb-rocksdb", version = "=0.15.1", features = ["snappy"] } |
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 |
---|---|---|
@@ -1,19 +1,20 @@ | ||
[package] | ||
name = "ckb-sdk-types" | ||
version = "0.41.0" | ||
version = "0.42.1" | ||
authors = ["Linfeng Qian <[email protected]>", "Nervos Core Dev <[email protected]>"] | ||
edition = "2018" | ||
license = "MIT" | ||
description = "ckb-cli sdk common types" | ||
|
||
[dependencies] | ||
serde = { version = "1.0", features = ["rc"] } | ||
serde_derive = "1.0" | ||
|
||
ckb-types = { git = "https://github.com/nervosnetwork/ckb", tag = "v0.41.0-rc1" } | ||
ckb-traits = { git = "https://github.com/nervosnetwork/ckb", tag = "v0.41.0-rc1" } | ||
ckb-jsonrpc-types = { git = "https://github.com/nervosnetwork/ckb", tag = "v0.41.0-rc1" } | ||
ckb-hash = { git = "https://github.com/nervosnetwork/ckb", tag = "v0.41.0-rc1" } | ||
ckb-error = { git = "https://github.com/nervosnetwork/ckb", tag = "v0.41.0-rc1" } | ||
ckb-types = "=0.42.0" | ||
ckb-traits = "=0.42.0" | ||
ckb-jsonrpc-types = "=0.42.0" | ||
ckb-hash = "=0.42.0" | ||
ckb-error = "=0.42.0" | ||
|
||
[dev-dependencies] | ||
ckb-crypto = { git = "https://github.com/nervosnetwork/ckb", tag = "v0.41.0-rc1", features = ["secp"] } | ||
ckb-crypto = { version = "=0.42.0", features = ["secp"] } |
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 |
---|---|---|
@@ -1,9 +1,10 @@ | ||
[package] | ||
name = "ckb-sdk" | ||
version = "0.41.0" | ||
version = "0.42.1" | ||
authors = ["Linfeng Qian <[email protected]>", "Nervos Core Dev <[email protected]>"] | ||
edition = "2018" | ||
license = "MIT" | ||
description = "ckb-cli sdk" | ||
|
||
[dependencies] | ||
serde = { version = "1.0", features = ["rc"] } | ||
|
@@ -29,11 +30,11 @@ tokio = { version = "1" } | |
bytes = "1" | ||
futures = "0.3" | ||
|
||
ckb-types = { git = "https://github.com/nervosnetwork/ckb", tag = "v0.41.0-rc1" } | ||
ckb-error = { git = "https://github.com/nervosnetwork/ckb", tag = "v0.41.0-rc1" } | ||
ckb-script = { git = "https://github.com/nervosnetwork/ckb", tag = "v0.41.0-rc1" } | ||
ckb-jsonrpc-types = { git = "https://github.com/nervosnetwork/ckb", tag = "v0.41.0-rc1" } | ||
ckb-hash = { git = "https://github.com/nervosnetwork/ckb", tag = "v0.41.0-rc1" } | ||
ckb-resource = { git = "https://github.com/nervosnetwork/ckb", tag = "v0.41.0-rc1" } | ||
ckb-crypto = { git = "https://github.com/nervosnetwork/ckb", tag = "v0.41.0-rc1", features = ["secp"] } | ||
ckb-sdk-types = { path = "../ckb-sdk-types" } | ||
ckb-types = "=0.42.0" | ||
ckb-error = "=0.42.0" | ||
ckb-script = "=0.42.0" | ||
ckb-jsonrpc-types = "=0.42.0" | ||
ckb-hash = "=0.42.0" | ||
ckb-resource = "=0.42.0" | ||
ckb-crypto = { version = "=0.42.0", features = ["secp"] } | ||
ckb-sdk-types = { path = "../ckb-sdk-types", version="=0.42.1" } |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,17 @@ | ||
[package] | ||
name = "ckb-cli-plugin-protocol" | ||
version = "0.1.0" | ||
version = "0.42.1" | ||
authors = ["Nervos Core Dev <[email protected]>"] | ||
edition = "2018" | ||
license = "MIT" | ||
description = "ckb-cli plugin protocol" | ||
|
||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
|
||
[dependencies] | ||
ckb-index = { path = "../ckb-index" } | ||
ckb-types = { git = "https://github.com/nervosnetwork/ckb", tag = "v0.41.0-rc1" } | ||
ckb-jsonrpc-types = { git = "https://github.com/nervosnetwork/ckb", tag = "v0.41.0-rc1" } | ||
ckb-index = { path = "../ckb-index", version = "=0.42.1" } | ||
ckb-types = "=0.42.0" | ||
ckb-jsonrpc-types = "=0.42.0" | ||
serde = { version = "1.0", features = ["rc"] } | ||
serde_derive = "1.0" | ||
serde_json = "1.0" | ||
|
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "cli-test" | ||
version = "0.41.0" | ||
version = "0.42.0" | ||
authors = ["Linfeng Qian <[email protected]>"] | ||
edition = "2018" | ||
|
||
|
@@ -13,12 +13,12 @@ log = "0.4" | |
env_logger = "0.6" | ||
toml = "0.5.0" | ||
serde_yaml = "0.8.9" | ||
ckb-sdk = { path = "../ckb-sdk" } | ||
ckb-types = { git = "https://github.com/nervosnetwork/ckb", tag = "v0.41.0-rc1" } | ||
ckb-app-config = { git = "https://github.com/nervosnetwork/ckb", tag = "v0.41.0-rc1" } | ||
ckb-chain-spec = { git = "https://github.com/nervosnetwork/ckb", tag = "v0.41.0-rc1" } | ||
ckb-crypto = { git = "https://github.com/nervosnetwork/ckb", tag = "v0.41.0-rc1", features = ["secp"] } | ||
ckb-hash = { git = "https://github.com/nervosnetwork/ckb", tag = "v0.41.0-rc1" } | ||
ckb-sdk = { path = "../ckb-sdk", version = "0.42.1" } | ||
ckb-types = "=0.42.0" | ||
ckb-app-config = "=0.42.0" | ||
ckb-chain-spec = "=0.42.0" | ||
ckb-crypto = { version = "=0.42.0", features = ["secp"] } | ||
ckb-hash = "=0.42.0" | ||
regex = "1.1.6" | ||
|
||
# Prevent this from interfering with workspaces | ||
|