sing/sing_macros/Cargo.toml

24 lines
525 B
TOML
Raw Normal View History

[package]
name = "sing_macros"
2022-03-27 18:28:30 +02:00
version = "0.1.2"
edition = "2021"
license = "AGPL-3.0-or-later"
license_file = "../LICENSE.md"
2022-03-27 16:22:30 +02:00
authors = [ "Daniel Mowitz" ]
description = "Macros for sing_rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
proc-macro = true
[dependencies]
2022-03-27 18:28:30 +02:00
sing_util = "0.1"
sing_parse = "0.1"
proc-macro2 = "1.0"
ron = "0.7"
rand = "0.7"
serde = { version = "1.0", features = ["derive"] }
syn = { version = "1.0", features = ["full"] }
quote = "1.0"