23 lines
589 B
TOML
23 lines
589 B
TOML
[package]
|
|
name = "sing_macros"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
license = "AGPLv3"
|
|
license_file = "../LICENSE.md"
|
|
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"
|