riftenlabs-indexer/Cargo.toml

25 lines
786 B
TOML
Raw Normal View History

2023-11-29 12:25:04 +01:00
[package]
name = "cauldron-indexer"
version = "0.1.0"
edition = "2021"
authors = ["Riften Labs AS <hello@cauldron.quest>"]
description = "Riften Labs DeFi contract indexer on Bitcoin Cash"
license = "GPL-3.0-or-later"
homepage = "https://gitlab.com/riftenlabs/cauldron-indexer"
repository = "https://gitlab.com/riftenlabs/cauldron-indexer"
keywords = ["bitcoincash", "bitcoin", "cauldron", "defi", "cpmm"]
readme = "README.md"
[dependencies]
anyhow = "1.0.75"
bitcoincash = "0.29.2"
bitcoin_hashes = { version = "0.11.0", default-features = false } # Same version as used by bitcoincash
electrum-client = "0.18.0"
hex = "0.4.3"
serde_json = "1.0.108"
rocket = { version = "0.5.0", features = ["json"] }
rusqlite = "0.30.0"
rayon = "1.8.0"
riftenlabs-defi = "0.1"
2024-01-19 14:38:31 +01:00
rocket_cors = "0.6.0"