2021-11-03 18:50:08 +01:00
|
|
|
[package]
|
|
|
|
name = "lightning-rapid-gossip-sync"
|
2024-08-30 17:05:24 +02:00
|
|
|
version = "0.0.124"
|
2021-11-03 18:50:08 +01:00
|
|
|
authors = ["Arik Sosman <git@arik.io>"]
|
|
|
|
license = "MIT OR Apache-2.0"
|
|
|
|
repository = "https://github.com/lightningdevkit/rust-lightning"
|
2023-10-24 15:16:38 +02:00
|
|
|
edition = "2021"
|
2021-11-03 18:50:08 +01:00
|
|
|
description = """
|
|
|
|
Utility to process gossip routing data from Rapid Gossip Sync Server.
|
|
|
|
"""
|
|
|
|
|
|
|
|
[features]
|
2022-09-14 10:17:56 +02:00
|
|
|
default = ["std"]
|
2024-09-04 10:53:37 +02:00
|
|
|
std = ["bitcoin-io/std", "bitcoin_hashes/std"]
|
2021-11-03 18:50:08 +01:00
|
|
|
|
|
|
|
[dependencies]
|
2024-08-30 17:05:24 +02:00
|
|
|
lightning = { version = "0.0.124", path = "../lightning", default-features = false }
|
2024-08-16 17:02:50 +02:00
|
|
|
bitcoin = { version = "0.32.2", default-features = false }
|
2024-09-04 10:53:37 +02:00
|
|
|
bitcoin_hashes = { version = "0.14.0", default-features = false }
|
|
|
|
bitcoin-io = { version = "0.1.2", default-features = false }
|
2021-11-03 18:50:08 +01:00
|
|
|
|
2023-05-11 08:03:57 +02:00
|
|
|
[target.'cfg(ldk_bench)'.dependencies]
|
|
|
|
criterion = { version = "0.4", optional = true, default-features = false }
|
|
|
|
|
2021-11-03 18:50:08 +01:00
|
|
|
[dev-dependencies]
|
2024-08-30 17:05:24 +02:00
|
|
|
lightning = { version = "0.0.124", path = "../lightning", features = ["_test_utils"] }
|
2024-07-12 11:23:50 +02:00
|
|
|
|
|
|
|
[lints]
|
|
|
|
workspace = true
|