mirror of
https://github.com/lightningdevkit/rust-lightning.git
synced 2025-03-13 14:52:21 +01:00
Now that we don't have to have everything in our entire ecosystem use the same `std`/`no-std` feature combinations we should start by untangling our own features a bit. This takes another step by removing the `no-std` feature entirely from the `lightning-rapid-gossip-sync` crate and removing all feature implications on dependencies from the remaining `std` feature.
27 lines
773 B
TOML
27 lines
773 B
TOML
[package]
|
|
name = "lightning-rapid-gossip-sync"
|
|
version = "0.0.123-beta"
|
|
authors = ["Arik Sosman <git@arik.io>"]
|
|
license = "MIT OR Apache-2.0"
|
|
repository = "https://github.com/lightningdevkit/rust-lightning"
|
|
edition = "2021"
|
|
description = """
|
|
Utility to process gossip routing data from Rapid Gossip Sync Server.
|
|
"""
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = []
|
|
|
|
[dependencies]
|
|
lightning = { version = "0.0.123-beta", path = "../lightning", default-features = false }
|
|
bitcoin = { version = "0.32.2", default-features = false }
|
|
|
|
[target.'cfg(ldk_bench)'.dependencies]
|
|
criterion = { version = "0.4", optional = true, default-features = false }
|
|
|
|
[dev-dependencies]
|
|
lightning = { version = "0.0.123-beta", path = "../lightning", features = ["_test_utils"] }
|
|
|
|
[lints]
|
|
workspace = true
|