riftenlabs-indexer/Cargo.toml
Dagur Valberg Johannsson d465c51480
missing build file
2024-10-25 15:28:40 +02:00

44 lines
1.3 KiB
TOML

[package]
name = "riftenlabs-indexer"
version = "0.1.0"
edition = "2021"
authors = ["Riften Labs AS <hello@cauldron.quest>"]
description = "Riften Labs DeFi contract indexer on Bitcoin Cash"
license = "AGPL-3.0-or-later"
homepage = "https://gitlab.com/riftenlabs/riftenlabs-indexer"
repository = "https://gitlab.com/riftenlabs/riftenlabs-indexer"
keywords = ["bitcoincash", "bitcoin", "cauldron", "defi", "cpmm"]
readme = "README.md"
build = "build.rs"
[dependencies]
anyhow = { version = "1.0.75", features = ["backtrace"] }
bitcoincash = "0.29.2"
bitcoin_hashes = { version = "0.11.0", default-features = false } # Same version as used by bitcoincash
electrum-client-netagnostic = "0.19"
hex = "0.4.3"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0.108"
rocket = { version = "0.5.0", features = ["json"] }
rusqlite = "0.31.0"
rayon = "1.8.0"
riftenlabs-defi = "0.1.3"
rocket_cors = "0.6.0"
log = "0.4"
stderrlog = "0.6.0"
r2d2 = "0.8.10"
r2d2_sqlite = "0.24.0"
rust_decimal = { version = "1.34", features = ["maths"] }
rust_decimal_macros = "1.34"
ureq = { version = "2.9", features = ["json"] }
rand = "0.8.5"
configure_me = "0.4.0"
[build-dependencies]
configure_me_codegen = "0.4.8"
[package.metadata.configure_me]
spec = "internal/config_specification.toml"
[profile.release]
debug = true