rust-lightning/lightning-macros/Cargo.toml
Devrandom adf2f68bd2 Introduce xtest macro for externally-visible tests
We want to allow functional tests to be run by other project,
allowing them to replace components, such as the signer.
2025-03-03 21:26:31 +01:00

29 lines
702 B
TOML

[package]
name = "lightning-macros"
version = "0.2.0+git"
authors = ["Elias Rohrer"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/lightningdevkit/rust-lightning/"
description = """
Proc macros used by LDK
"""
edition = "2021"
[package.metadata.docs.rs]
rustdoc-args = ["--cfg", "docsrs"]
[lib]
proc-macro = true
[features]
[dependencies]
syn = { version = "2.0", default-features = false, features = ["parsing", "printing", "proc-macro", "full"] }
proc-macro2 = { version = "1.0", default-features = false, features = ["proc-macro"] }
quote = { version = "1.0", default-features = false, features = ["proc-macro"] }
[dev-dependencies]
inventory = "0.3"
[lints]
workspace = true