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"]
|
|
|
|
edition = "2018"
|
|
|
|
exclude = ["index.node"]
|
|
|
|
|
|
|
|
[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-23 18:37:03 -04:00
|
|
|
once_cell = "1.18.0"
|
2023-06-23 16:42:58 -04:00
|
|
|
|
|
|
|
[dependencies.neon]
|
|
|
|
version = "0.10"
|
|
|
|
default-features = false
|
|
|
|
features = ["napi-6","channel-api"]
|