2022-02-19 17:30:38 +01:00
|
|
|
[package]
|
2022-03-26 23:06:38 +01:00
|
|
|
name = "sing_macros"
|
2022-02-19 17:30:38 +01:00
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
2022-03-27 16:16:12 +02:00
|
|
|
license = "AGPLv3"
|
|
|
|
license_file = "../LICENSE.md"
|
|
|
|
authors = "Daniel Mowitz"
|
2022-02-19 17:30:38 +01:00
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
proc-macro = true
|
|
|
|
|
|
|
|
[dependencies]
|
2022-03-27 16:10:03 +02:00
|
|
|
sing_util = { version = "0.1", path = "../sing_util" }
|
|
|
|
sing_parse = { version = "0.1", path = "../sing_parse" }
|
2022-02-28 23:19:21 +01:00
|
|
|
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"
|