[package] name = "ckb-shared" version = "0.120.0" authors = ["Nervos Core Dev "] edition = "2021" license = "MIT" description = "TODO(doc): @quake crate description" homepage = "https://github.com/nervosnetwork/ckb" repository = "https://github.com/nervosnetwork/ckb" [dependencies] ckb-types = { path = "../util/types", version = "= 0.120.0" } ckb-chain-spec = { path = "../spec", version = "= 0.120.0" } ckb-store = { path = "../store", version = "= 0.120.0" } ckb-db = { path = "../db", version = "= 0.120.0" } ckb-proposal-table = { path = "../util/proposal-table", version = "= 0.120.0" } arc-swap = "1.3" ckb-error = { path = "../error", version = "= 0.120.0" } ckb-snapshot = { path = "../util/snapshot", version = "= 0.120.0" } ckb-tx-pool = { path = "../tx-pool", version = "= 0.120.0" } ckb-verification = { path = "../verification", version = "= 0.120.0" } ckb-notify = { path = "../notify", version = "= 0.120.0" } ckb-logger = { path = "../util/logger", version = "= 0.120.0" } ckb-db-schema = { path = "../db-schema", version = "= 0.120.0" } ckb-async-runtime = { path = "../util/runtime", version = "= 0.120.0" } ckb-stop-handler = { path = "../util/stop-handler", version = "= 0.120.0" } ckb-constant = { path = "../util/constant", version = "= 0.120.0" } ckb-systemtime = { path = "../util/systemtime", version = "= 0.120.0" } ckb-channel = { path = "../util/channel", version = "= 0.120.0" } ckb-app-config = { path = "../util/app-config", version = "= 0.120.0" } ckb-migrate = { path = "../util/migrate", version = "= 0.120.0" } ckb-fee-estimator = { path = "../util/fee-estimator", version = "= 0.120.0"} ckb-util = { path = "../util", version = "= 0.120.0" } ckb-metrics = { path = "../util/metrics", version = "= 0.120.0" } bitflags = "1.0" tokio = { version = "1", features = ["sync"] } tempfile.workspace = true sled = "0.34.7" dashmap = "4.0" [dev-dependencies] [features] portable = [ "ckb-db/portable", "ckb-store/portable", "ckb-tx-pool/portable", "ckb-migrate/portable", ] march-native = [ "ckb-db/march-native", "ckb-store/march-native", "ckb-tx-pool/march-native", "ckb-migrate/march-native", ] stats = []