2023-05-11 06:03:57 +00:00
|
|
|
[package]
|
|
|
|
name = "lightning-bench"
|
|
|
|
version = "0.0.1"
|
|
|
|
authors = ["Matt Corallo"]
|
2023-10-24 15:16:38 +02:00
|
|
|
edition = "2021"
|
2023-05-11 06:03:57 +00:00
|
|
|
|
|
|
|
[[bench]]
|
|
|
|
name = "bench"
|
|
|
|
harness = false
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
lightning = { path = "../lightning", features = ["_test_utils", "criterion"] }
|
|
|
|
lightning-persister = { path = "../lightning-persister", features = ["criterion"] }
|
|
|
|
lightning-rapid-gossip-sync = { path = "../lightning-rapid-gossip-sync", features = ["criterion"] }
|
|
|
|
criterion = { version = "0.4", default-features = false }
|
|
|
|
|
|
|
|
[profile.release]
|
|
|
|
opt-level = 3
|
|
|
|
codegen-units = 1
|
|
|
|
lto = true
|
|
|
|
panic = "abort"
|
|
|
|
debug = true
|