riftenlabs-indexer/Cargo.toml

55 lines
1.8 KiB
TOML
Raw Normal View History

2023-11-29 12:25:04 +01:00
[package]
2024-04-02 14:07:21 +02:00
name = "riftenlabs-indexer"
2026-02-10 14:48:45 +01:00
version = "0.2.0"
2023-11-29 12:25:04 +01:00
edition = "2021"
2026-02-10 14:48:45 +01:00
authors = ["Whiterun LLC <hello@riftenlabs.com>"]
2023-11-29 12:25:04 +01:00
description = "Riften Labs DeFi contract indexer on Bitcoin Cash"
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"
2024-10-25 15:28:40 +02:00
build = "build.rs"
2023-11-29 12:25:04 +01:00
[dependencies]
anyhow = { version = "1.0.94", features = ["backtrace"] }
bitcoincash = "0.32.2"
bitcoin_hashes = { version = "0.14.100", default-features = false } # Same version as used by bitcoincash
electrum-client-netagnostic = { version = "0.21.2", features = ["use-rustls", "use-websocket"] }
hex = { version = "0.4.3", features = ["serde"] }
2024-03-04 16:40:50 +01:00
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0.133"
rocket = { version = "0.5.1", features = ["json"] }
sqlx = { version = "0.8", features = ["runtime-tokio", "sqlite"] }
rayon = "1.10.0"
riftenlabs-defi = "0.4.1"
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"
tokio = { version = "1", features = ["full"] }
rust_decimal = { version = "1.36", features = ["maths"] }
rust_decimal_macros = "1.36"
reqwest = { version = "0.12", features = ["json", "rustls-tls"], default-features = false }
rand = "0.8.5"
configure_me = "0.4.0"
futures = "0.3.32"
serde_with = { version = "3.18.0", features = ["hex"] }
[build-dependencies]
configure_me_codegen = "0.4.8"
2025-07-16 09:30:17 +02:00
[dependencies.malachite]
version = "0.6.1"
default-features = false
features = [ "naturals_and_integers"]
[package.metadata.configure_me]
spec = "internal/config_specification.toml"
2024-03-04 16:40:50 +01:00
[profile.release]
debug = true
2025-07-16 09:31:14 +02:00
[lints.clippy]
# workaround for generated code in depdencendy configure_me
uninlined_format_args = "allow"