[package] name = "ckb-chain" version = "0.120.0" license = "MIT" authors = ["Nervos Core Dev "] edition = "2021" description = "CKB Blockchain Service, Importing Blocks" homepage = "https://github.com/nervosnetwork/ckb" repository = "https://github.com/nervosnetwork/ckb" [dependencies] ckb-logger = { path = "../util/logger", version = "= 0.120.0" } ckb-metrics = { path = "../util/metrics", version = "= 0.120.0" } ckb-types = { path = "../util/types", version = "= 0.120.0" } ckb-shared = { path = "../shared", version = "= 0.120.0" } ckb-chain-spec = { path = "../spec", version = "= 0.120.0" } ckb-store = { path = "../store", version = "= 0.120.0" } ckb-verification = { path = "../verification", version = "= 0.120.0" } ckb-verification-contextual = { path = "../verification/contextual", version = "= 0.120.0" } ckb-verification-traits = { path = "../verification/traits", version = "= 0.120.0" } ckb-systemtime = { path = "../util/systemtime", version = "= 0.120.0" } ckb-stop-handler = { path = "../util/stop-handler", version = "= 0.120.0" } ckb-proposal-table = { path = "../util/proposal-table", version = "= 0.120.0" } ckb-error = { path = "../error", version = "= 0.120.0" } ckb-app-config = { path = "../util/app-config", version = "= 0.120.0" } ckb-channel = { path = "../util/channel", version = "= 0.120.0" } ckb-db = { path = "../db", version = "= 0.120.0" } ckb-db-schema = { path = "../db-schema", version = "= 0.120.0" } faux = { version = "^0.1", optional = true } ckb-merkle-mountain-range = "0.5.2" is_sorted = "0.1.1" ckb-constant = { path = "../util/constant", version = "= 0.120.0" } ckb-util = { path = "../util", version = "= 0.120.0" } crossbeam = "0.8.2" ckb-network = { path = "../network", version = "= 0.120.0" } ckb-tx-pool = { path = "../tx-pool", version = "= 0.120.0" } minstant = "0.1.4" dashmap = "4.0" [dev-dependencies] [features] default = [] mock = ["faux"] portable = ["ckb-store/portable"] march-native = ["ckb-store/march-native"]