mempool/rust/gbt/Cargo.toml

30 lines
681 B
TOML
Raw Normal View History

2023-06-23 16:42:58 -04:00
[package]
name = "gbt"
2024-01-24 18:47:08 +00:00
version = "1.0.0"
description = "An efficient re-implementation of the getBlockTemplate algorithm in Rust"
2023-06-23 16:42:58 -04:00
authors = ["mononaut"]
2023-06-23 21:51:03 -07:00
edition = "2021"
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]
2024-03-05 22:32:14 +09:00
priority-queue = "2.0.2"
2023-06-23 16:42:58 -04:00
bytes = "1.4.0"
2024-03-05 22:32:14 +09:00
napi = { version = "2.16.0", features = ["napi8", "tokio_rt"] }
napi-derive = "2.16.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"
2024-03-05 22:32:14 +09:00
tracing-log = "0.2.0"
2023-06-26 19:29:32 -07:00
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]
2024-03-05 22:32:14 +09:00
napi-build = "2.1.2"
2024-03-10 13:27:09 +09:00
[profile.release]
lto = true
codegen-units = 1