2023-06-23 16:42:58 -04:00
|
|
|
[package]
|
|
|
|
name = "gbt"
|
|
|
|
version = "0.1.0"
|
|
|
|
description = "An inefficient re-implementation of the getBlockTemplate algorithm in Rust"
|
|
|
|
authors = ["mononaut"]
|
2023-06-23 21:51:03 -07:00
|
|
|
edition = "2021"
|
2023-06-26 01:19:34 -07:00
|
|
|
publish = false
|
2023-06-23 16:42:58 -04:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
crate-type = ["cdylib"]
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
priority-queue = "1.3.2"
|
|
|
|
bytes = "1.4.0"
|
2023-06-24 19:28:19 -07:00
|
|
|
napi = { version = "2.13.2", features = ["napi8", "tokio_rt"] }
|
2023-06-24 11:21:58 -07:00
|
|
|
napi-derive = "2.13.0"
|
2023-06-25 00:44:08 -07:00
|
|
|
bytemuck = "1.13.1"
|
2023-06-26 19:29:32 -07:00
|
|
|
tracing = "0.1.36"
|
|
|
|
tracing-log = "0.1.3"
|
|
|
|
tracing-subscriber = { version = "0.3.15", features = ["env-filter"]}
|
2023-06-23 16:42:58 -04:00
|
|
|
|
2023-06-24 11:21:58 -07:00
|
|
|
[build-dependencies]
|
|
|
|
napi-build = "2.0.1"
|