mirror of
https://github.com/alexgo-io/bitcoin-indexer.git
synced 2026-01-12 08:34:17 +08:00
* zmq after chain tip * some progress * block pool advance * runloop finished * renames * runs first time * log levels * start connecting runes * compress block opt * remove dead code * remove dead code chainhook sdk * remove ordhook dead code * rollback install * auto fmt * clippy fixes * fmt * rollback chain tip * api test * api metrics fix * rename * standard logs * ordinals start chain tip * chain tips * ci * clippy * fix tests * remove dead code
38 lines
971 B
TOML
38 lines
971 B
TOML
[package]
|
|
name = "runes"
|
|
version.workspace = true
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
bitcoind = { path = "../bitcoind" }
|
|
chainhook-types = { path = "../chainhook-types-rs" }
|
|
bitcoin = { workspace = true }
|
|
lru = "0.12.3"
|
|
ordinals = "0.0.15"
|
|
bytes = "1.3"
|
|
config = { path = "../config" }
|
|
serde = "1"
|
|
serde_derive = "1"
|
|
hex = "0.4.3"
|
|
rand = "0.8.5"
|
|
hiro-system-kit = { workspace = true }
|
|
ctrlc = { version = "3.2.2", optional = true }
|
|
# reqwest = { version = "0.11", features = ["stream", "json"] }
|
|
crossbeam-channel = "0.5.8"
|
|
clap = { version = "4.3.2", features = ["derive"] }
|
|
clap_generate = { version = "3.0.3" }
|
|
chainhook-postgres = { path = "../chainhook-postgres" }
|
|
tokio = { workspace = true }
|
|
tokio-postgres = { workspace = true }
|
|
deadpool-postgres = { workspace = true }
|
|
refinery = { workspace = true }
|
|
num-traits = "0.2.14"
|
|
maplit = "1.0.2"
|
|
|
|
[dev-dependencies]
|
|
test-case = "3.1.0"
|
|
|
|
[features]
|
|
debug = ["hiro-system-kit/debug"]
|
|
release = ["hiro-system-kit/release"]
|