2020-07-20 15:51:57 +02:00
|
|
|
[package]
|
2020-09-14 14:25:38 +02:00
|
|
|
name = "bdk-macros"
|
2021-09-30 10:54:43 -07:00
|
|
|
version = "0.6.0"
|
2020-07-20 15:51:57 +02:00
|
|
|
authors = ["Alekos Filini <alekos.filini@gmail.com>"]
|
|
|
|
edition = "2018"
|
2020-12-21 12:14:06 +01:00
|
|
|
homepage = "https://bitcoindevkit.org"
|
|
|
|
repository = "https://github.com/bitcoindevkit/bdk"
|
|
|
|
documentation = "https://docs.rs/bdk-macros"
|
|
|
|
description = "Supporting macros for `bdk`"
|
|
|
|
keywords = ["bdk"]
|
2021-03-03 13:22:05 -08:00
|
|
|
license = "MIT OR Apache-2.0"
|
2020-07-20 15:51:57 +02:00
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2020-09-07 17:13:54 +02:00
|
|
|
syn = { version = "1.0", features = ["parsing", "full"] }
|
2020-07-20 15:51:57 +02:00
|
|
|
proc-macro2 = "1.0"
|
|
|
|
quote = "1.0"
|
|
|
|
|
2020-08-10 10:49:34 +02:00
|
|
|
[features]
|
|
|
|
debug = ["syn/extra-traits"]
|
|
|
|
|
2020-07-20 15:51:57 +02:00
|
|
|
[lib]
|
|
|
|
proc-macro = true
|