mirror of
https://github.com/lightningdevkit/rust-lightning.git
synced 2025-03-15 15:39:09 +01:00
We want to allow functional tests to be run by other project, allowing them to replace components, such as the signer.
29 lines
702 B
TOML
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
|