[package] name = "ckb-rich-indexer" version = "0.120.0" license = "MIT" authors = ["Nervos Core Dev "] edition = "2021" description = "The ckb indexer based on relational database" homepage = "https://github.com/nervosnetwork/ckb" repository = "https://github.com/nervosnetwork/ckb" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] anyhow = "1.0.34" ckb-app-config = { path = "../app-config", version = "= 0.120.0" } ckb-async-runtime = { path = "../runtime", version = "= 0.120.0" } ckb-indexer-sync = { path = "../indexer-sync", version = "= 0.120.0" } ckb-jsonrpc-types = { path = "../jsonrpc-types", version = "= 0.120.0" } ckb-notify = { path = "../../notify", version = "= 0.120.0" } ckb-types = { path = "../types", version = "= 0.120.0" } futures = "0.3" log = "0.4" num-bigint = "0.4" sql-builder = "3.1" sqlx = { version = "0.8.2", features = [ "runtime-tokio-rustls", "any", "sqlite", "postgres", ] } include_dir = "0.7" tempfile.workspace = true [dev-dependencies]