mirror of
https://github.com/mempool/mempool.git
synced 2025-02-24 06:47:52 +01:00
22 lines
522 B
TOML
22 lines
522 B
TOML
[package]
|
|
name = "gbt"
|
|
version = "0.1.0"
|
|
description = "An inefficient re-implementation of the getBlockTemplate algorithm in Rust"
|
|
authors = ["mononaut"]
|
|
edition = "2021"
|
|
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"
|
|
once_cell = "1.18.0"
|
|
napi = { version = "2.13.2", features = ["napi8"] }
|
|
napi-derive = "2.13.0"
|
|
|
|
[build-dependencies]
|
|
napi-build = "2.0.1"
|