[package] name = "otx-pool" version = "0.1.0" license = "MIT" edition = "2021" description = "The open transaction pool service core" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] ansi_term = "0.12" anyhow = "1.0" async-trait = "0.1" ckb-async-runtime = "0.108" ckb-jsonrpc-types = "0.108" ckb-sdk = "2.5.0" ckb-stop-handler = "0.108" ckb-types = "0.108" crossbeam-channel = "0.5.1" dashmap = "5.4.0" derive_more = "0.99" log = "0.4.17" jsonrpc-core = "18.0" jsonrpc-derive = "18.0" jsonrpc-http-server = "18.0" jsonrpc-server-utils = "18.0" molecule = "=0.7.3" serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" tokio = { version = "1", features = ["sync", "process"] } otx-format = { path = "../otx-format", version = "= 0.1.0" } otx-pool-config = { path = "../util/config", version = "= 0.1.0" } otx-pool-plugin-protocol = { path = "../otx-plugin-protocol", version = "= 0.1.0" }