sing/sing_macros/Cargo.toml

24 lines
600 B
TOML
Raw Normal View History

[package]
name = "sing_macros"
version = "0.1.0"
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]
sing_util = { version = "0.1", path = "../sing_util" }
sing_parse = { version = "0.1", path = "../sing_parse" }
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"