2023-11-29 12:25:04 +01:00
|
|
|
[package]
|
2024-04-02 14:07:21 +02:00
|
|
|
name = "riftenlabs-indexer"
|
2023-11-29 12:25:04 +01:00
|
|
|
version = "0.1.0"
|
|
|
|
|
edition = "2021"
|
|
|
|
|
authors = ["Riften Labs AS <hello@cauldron.quest>"]
|
|
|
|
|
description = "Riften Labs DeFi contract indexer on Bitcoin Cash"
|
2024-03-14 11:38:11 +01:00
|
|
|
license = "AGPL-3.0-or-later"
|
2024-04-02 14:07:21 +02:00
|
|
|
homepage = "https://gitlab.com/riftenlabs/riftenlabs-indexer"
|
|
|
|
|
repository = "https://gitlab.com/riftenlabs/riftenlabs-indexer"
|
2023-11-29 12:25:04 +01:00
|
|
|
keywords = ["bitcoincash", "bitcoin", "cauldron", "defi", "cpmm"]
|
|
|
|
|
readme = "README.md"
|
|
|
|
|
|
|
|
|
|
[dependencies]
|
2024-03-04 16:40:50 +01:00
|
|
|
anyhow = { version = "1.0.75", features = ["backtrace"] }
|
2023-11-29 12:25:04 +01:00
|
|
|
bitcoincash = "0.29.2"
|
|
|
|
|
bitcoin_hashes = { version = "0.11.0", default-features = false } # Same version as used by bitcoincash
|
2024-10-08 22:13:54 +02:00
|
|
|
electrum-client-netagnostic = "0.19"
|
2023-11-29 12:25:04 +01:00
|
|
|
hex = "0.4.3"
|
2024-03-04 16:40:50 +01:00
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
2023-11-29 12:25:04 +01:00
|
|
|
serde_json = "1.0.108"
|
|
|
|
|
rocket = { version = "0.5.0", features = ["json"] }
|
2024-03-14 12:14:13 +01:00
|
|
|
rusqlite = "0.31.0"
|
2023-11-29 12:25:04 +01:00
|
|
|
rayon = "1.8.0"
|
2024-10-24 11:52:11 +02:00
|
|
|
riftenlabs-defi = "0.1.3"
|
2024-01-19 14:38:31 +01:00
|
|
|
rocket_cors = "0.6.0"
|
2024-02-14 11:11:16 +01:00
|
|
|
log = "0.4"
|
|
|
|
|
stderrlog = "0.6.0"
|
2024-03-14 12:14:13 +01:00
|
|
|
r2d2 = "0.8.10"
|
|
|
|
|
r2d2_sqlite = "0.24.0"
|
2024-10-21 15:13:16 +02:00
|
|
|
rust_decimal = { version = "1.34", features = ["maths"] }
|
2024-04-02 12:44:40 +02:00
|
|
|
rust_decimal_macros = "1.34"
|
2024-05-09 11:25:27 +02:00
|
|
|
ureq = { version = "2.9", features = ["json"] }
|
|
|
|
|
rand = "0.8.5"
|
2024-03-04 16:40:50 +01:00
|
|
|
|
|
|
|
|
[profile.release]
|
|
|
|
|
debug = true
|