[package] name = "bitski-common-macros" version = "0.1.0" edition = "2021" description = "Macros for bitski-common" readme = "README.md" repository = "https://github.com/BitskiCo/bitski-common-rs" homepage = "https://github.com/BitskiCo/bitski-common-rs" license = "Apache-2.0 OR MIT" registry = "bitski-rust" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] proc-macro2 = "1.0.45" quote = "1.0.21" syn = { version = "1.0.101", features = ["full"] } tracing-subscriber = { version = "0.3.15", optional = true, features = [ "env-filter", ] } uuid = { version = "0.8.2", optional = true } [dev-dependencies] bitski-common = { path = "../bitski-common" } tokio = "1.21.2" [features] default = [] doc = ["tracing-subscriber", "uuid"] [lib] proc-macro = true [package.metadata.docs.rs] all-features = true rustdoc-args = ["--cfg", "docsrs"]