rust-lightning/lightning-rapid-gossip-sync/Cargo.toml
Matt Corallo 51f5bc881f Drop the no-std feature from lightning-rapid-gossip-sync
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.
2024-08-19 15:09:40 +00:00

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