-
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.
chore: update ckb to v0.100.0-rc5 (#430)
* chore: update ckb to v0.100.0-rc5 * fix: fix index thread is_started prediction bug
- Loading branch information
Showing
11 changed files
with
142 additions
and
151 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,24 +1,24 @@ | ||
[package] | ||
name = "ckb-cli" | ||
version = "0.100.0-rc2" | ||
version = "0.100.0-rc5" | ||
license = "MIT" | ||
authors = ["Linfeng Qian <[email protected]>", "Nervos Core Dev <[email protected]>"] | ||
edition = "2018" | ||
description = "ckb command line interface" | ||
|
||
[dependencies] | ||
ckb-jsonrpc-types = "=0.100.0-rc2" | ||
ckb-hash = "=0.100.0-rc2" | ||
ckb-crypto = { version = "=0.100.0-rc2", features = ["secp"] } | ||
ckb-build-info = "=0.100.0-rc2" | ||
ckb-types = "=0.100.0-rc2" | ||
ckb-util = "=0.100.0-rc2" | ||
ckb-resource = "=0.100.0-rc2" | ||
ckb-dao-utils = "=0.100.0-rc2" | ||
ckb-chain-spec = "=0.100.0-rc2" | ||
ckb-sdk = { path = "ckb-sdk", version = "=0.100.0-rc2" } | ||
ckb-index = { path = "ckb-index", version = "=0.100.0-rc2" } | ||
plugin-protocol = { path = "plugin-protocol", package = "ckb-cli-plugin-protocol", version = "=0.100.0-rc2" } | ||
ckb-jsonrpc-types = "=0.100.0-rc5" | ||
ckb-hash = "=0.100.0-rc5" | ||
ckb-crypto = { version = "=0.100.0-rc5", features = ["secp"] } | ||
ckb-build-info = "=0.100.0-rc5" | ||
ckb-types = "=0.100.0-rc5" | ||
ckb-util = "=0.100.0-rc5" | ||
ckb-resource = "=0.100.0-rc5" | ||
ckb-dao-utils = "=0.100.0-rc5" | ||
ckb-chain-spec = "=0.100.0-rc5" | ||
ckb-sdk = { path = "ckb-sdk", version = "=0.100.0-rc5" } | ||
ckb-index = { path = "ckb-index", version = "=0.100.0-rc5" } | ||
plugin-protocol = { path = "plugin-protocol", package = "ckb-cli-plugin-protocol", version = "=0.100.0-rc5" } | ||
jsonrpc-core-client = "18" | ||
jsonrpc-core = "18" | ||
jsonrpc-derive = "18" | ||
|
@@ -27,7 +27,7 @@ jsonrpc-server-utils = "18" | |
secp256k1 = { version = "0.19", features = ["recovery"] } | ||
faster-hex = "0.6" | ||
env_logger = "0.6" | ||
crossbeam-channel = "0.3" | ||
crossbeam-channel = "0.5.1" | ||
clap = "=3.0.0-beta.1" | ||
clap_generate = "=3.0.0-beta.1" | ||
serde = { version = "1.0", features = ["derive"] } | ||
|
@@ -61,7 +61,7 @@ tui = "0.6.0" | |
termion = "1.5" | ||
|
||
[build-dependencies] | ||
ckb-build-info = "=0.100.0-rc2" | ||
ckb-build-info = "=0.100.0-rc5" | ||
|
||
[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,6 +1,6 @@ | ||
[package] | ||
name = "ckb-index" | ||
version = "0.100.0-rc2" | ||
version = "0.100.0-rc5" | ||
authors = ["Linfeng Qian <[email protected]>", "Nervos Core Dev <[email protected]>"] | ||
edition = "2018" | ||
license = "MIT" | ||
|
@@ -12,6 +12,6 @@ serde_derive = "1.0" | |
bincode = "1.1.4" | ||
log = "0.4.6" | ||
failure = "0.1.5" | ||
ckb-types = "=0.100.0-rc2" | ||
ckb-sdk = { path = "../ckb-sdk", version = "=0.100.0-rc2" } | ||
ckb-types = "=0.100.0-rc5" | ||
ckb-sdk = { path = "../ckb-sdk", version = "=0.100.0-rc5" } | ||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "ckb-sdk-types" | ||
version = "0.100.0-rc2" | ||
version = "0.100.0-rc5" | ||
authors = ["Linfeng Qian <[email protected]>", "Nervos Core Dev <[email protected]>"] | ||
edition = "2018" | ||
license = "MIT" | ||
|
@@ -10,11 +10,11 @@ description = "ckb-cli sdk common types" | |
serde = { version = "1.0", features = ["derive"] } | ||
serde_derive = "1.0" | ||
|
||
ckb-types = "=0.100.0-rc2" | ||
ckb-traits = "=0.100.0-rc2" | ||
ckb-jsonrpc-types = "=0.100.0-rc2" | ||
ckb-hash = "=0.100.0-rc2" | ||
ckb-error = "=0.100.0-rc2" | ||
ckb-types = "=0.100.0-rc5" | ||
ckb-traits = "=0.100.0-rc5" | ||
ckb-jsonrpc-types = "=0.100.0-rc5" | ||
ckb-hash = "=0.100.0-rc5" | ||
ckb-error = "=0.100.0-rc5" | ||
|
||
[dev-dependencies] | ||
ckb-crypto = { version = "=0.100.0-rc2", features = ["secp"] } | ||
ckb-crypto = { version = "=0.100.0-rc5", 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,6 +1,6 @@ | ||
[package] | ||
name = "ckb-sdk" | ||
version = "0.100.0-rc2" | ||
version = "0.100.0-rc5" | ||
authors = ["Linfeng Qian <[email protected]>", "Nervos Core Dev <[email protected]>"] | ||
edition = "2018" | ||
license = "MIT" | ||
|
@@ -31,12 +31,12 @@ bytes = "1" | |
futures = "0.3" | ||
jsonrpc-core = "18" | ||
|
||
ckb-types = "=0.100.0-rc2" | ||
ckb-error = "=0.100.0-rc2" | ||
ckb-script = "=0.100.0-rc2" | ||
ckb-jsonrpc-types = "=0.100.0-rc2" | ||
ckb-chain-spec = "=0.100.0-rc2" | ||
ckb-hash = "=0.100.0-rc2" | ||
ckb-resource = "=0.100.0-rc2" | ||
ckb-crypto = { version = "=0.100.0-rc2", features = ["secp"] } | ||
ckb-sdk-types = { path = "../ckb-sdk-types", version="=0.100.0-rc2" } | ||
ckb-types = "=0.100.0-rc5" | ||
ckb-error = "=0.100.0-rc5" | ||
ckb-script = "=0.100.0-rc5" | ||
ckb-jsonrpc-types = "=0.100.0-rc5" | ||
ckb-chain-spec = "=0.100.0-rc5" | ||
ckb-hash = "=0.100.0-rc5" | ||
ckb-resource = "=0.100.0-rc5" | ||
ckb-crypto = { version = "=0.100.0-rc5", features = ["secp"] } | ||
ckb-sdk-types = { path = "../ckb-sdk-types", version="=0.100.0-rc5" } |
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,6 +1,6 @@ | ||
[package] | ||
name = "ckb-cli-plugin-protocol" | ||
version = "0.100.0-rc2" | ||
version = "0.100.0-rc5" | ||
authors = ["Nervos Core Dev <[email protected]>"] | ||
edition = "2018" | ||
license = "MIT" | ||
|
@@ -9,9 +9,9 @@ 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", version = "=0.100.0-rc2" } | ||
ckb-types = "=0.100.0-rc2" | ||
ckb-jsonrpc-types = "=0.100.0-rc2" | ||
ckb-index = { path = "../ckb-index", version = "=0.100.0-rc5" } | ||
ckb-types = "=0.100.0-rc5" | ||
ckb-jsonrpc-types = "=0.100.0-rc5" | ||
serde = { version = "1.0", features = ["derive"] } | ||
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.100.0-rc2" | ||
version = "0.100.0-rc5" | ||
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", version = "0.100.0-rc2" } | ||
ckb-types = "=0.100.0-rc2" | ||
ckb-app-config = "=0.100.0-rc2" | ||
ckb-chain-spec = "=0.100.0-rc2" | ||
ckb-crypto = { version = "=0.100.0-rc2", features = ["secp"] } | ||
ckb-hash = "=0.100.0-rc2" | ||
ckb-sdk = { path = "../ckb-sdk", version = "0.100.0-rc5" } | ||
ckb-types = "=0.100.0-rc5" | ||
ckb-app-config = "=0.100.0-rc5" | ||
ckb-chain-spec = "=0.100.0-rc5" | ||
ckb-crypto = { version = "=0.100.0-rc5", features = ["secp"] } | ||
ckb-hash = "=0.100.0-rc5" | ||
regex = "1.1.6" | ||
|
||
# Prevent this from interfering with workspaces | ||
|