Skip to content

Commit

Permalink
Merge branch 'develop' into ckb2021-develop
Browse files Browse the repository at this point in the history
  • Loading branch information
yangby-cryptape committed Jun 14, 2021
2 parents 6893a07 + 7cd650d commit c397d22
Show file tree
Hide file tree
Showing 20 changed files with 252 additions and 85 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ jobs:
- Benchmarks_Test
- Integration_Test
if: |
contains('bors[bot]', github.actor) && success()
(contains(github.event_name, 'pull_request') || contains('bors[bot]', github.actor)) && success()
runs-on: ubuntu-latest
steps:
- name: CI succeeded
Expand Down
136 changes: 108 additions & 28 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ build = "build.rs"
description = "CKB is the layer 1 of Nervos Network, a public/permissionless blockchain."
homepage = "https://github.com/nervosnetwork/ckb"
repository = "https://github.com/nervosnetwork/ckb"
resolver = "2"

[build-dependencies]
ckb-build-info = { path = "util/build-info", version = "= 0.43.0-pre" }
Expand Down
2 changes: 1 addition & 1 deletion benches/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ ckb-hash = {path = "../util/hash", version = "= 0.43.0-pre"}
ckb-test-chain-utils = { path = "../util/test-chain-utils", version = "= 0.43.0-pre" }
ckb-dao-utils = { path = "../util/dao/utils", version = "= 0.43.0-pre" }
ckb-dao = { path = "../util/dao", version = "= 0.43.0-pre" }
ckb-system-scripts = { version = "= 0.5.1" }
ckb-system-scripts = { version = "= 0.5.2" }
lazy_static = "1.3.0"
ckb-crypto = { path = "../util/crypto", version = "= 0.43.0-pre" }
ckb-jsonrpc-types = { path = "../util/jsonrpc-types", version = "= 0.43.0-pre" }
Expand Down
5 changes: 5 additions & 0 deletions chain/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ ckb-error = { path = "../error", version = "= 0.43.0-pre" }
ckb-app-config = { path = "../util/app-config", version = "= 0.43.0-pre" }
ckb-rust-unstable-port = { path = "../util/rust-unstable-port", version = "= 0.43.0-pre" }
ckb-channel = { path = "../util/channel", version = "= 0.43.0-pre" }
faux = { version = "^0.1", optional = true }

[dev-dependencies]
ckb-test-chain-utils = { path = "../util/test-chain-utils", version = "= 0.43.0-pre" }
Expand All @@ -35,3 +36,7 @@ ckb-jsonrpc-types = { path = "../util/jsonrpc-types", version = "= 0.43.0-pre" }
ckb-network = { path = "../network", version = "= 0.43.0-pre" }
lazy_static = "1.4"
tempfile = "3.0"

[features]
default = []
mock = ["faux"]
Loading

0 comments on commit c397d22

Please sign in to comment.