mempool/backend/rust-gbt/Cargo.toml

26 lines
633 B
TOML
Raw Normal View History

2023-06-23 22:42:58 +02:00
[package]
name = "gbt"
2024-01-24 19:47:08 +01:00
version = "1.0.0"
description = "An efficient re-implementation of the getBlockTemplate algorithm in Rust"
2023-06-23 22:42:58 +02:00
authors = ["mononaut"]
2023-06-24 06:51:03 +02:00
edition = "2021"
publish = false
2023-06-23 22:42:58 +02:00
[lib]
crate-type = ["cdylib"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2024-03-05 14:32:14 +01:00
priority-queue = "2.0.2"
2023-06-23 22:42:58 +02:00
bytes = "1.4.0"
2024-03-05 14:32:14 +01:00
napi = { version = "2.16.0", features = ["napi8", "tokio_rt"] }
napi-derive = "2.16.0"
2023-06-25 09:44:08 +02:00
bytemuck = "1.13.1"
2023-06-27 04:29:32 +02:00
tracing = "0.1.36"
2024-03-05 14:32:14 +01:00
tracing-log = "0.2.0"
2023-06-27 04:29:32 +02:00
tracing-subscriber = { version = "0.3.15", features = ["env-filter"]}
2023-06-23 22:42:58 +02:00
2023-06-24 20:21:58 +02:00
[build-dependencies]
2024-03-05 14:32:14 +01:00
napi-build = "2.1.2"