2022-02-19 17:30:38 +01:00
|
|
|
[package]
|
2022-03-26 23:06:38 +01:00
|
|
|
name = "sing_macros"
|
2022-03-27 18:28:30 +02:00
|
|
|
version = "0.1.2"
|
2022-02-19 17:30:38 +01:00
|
|
|
edition = "2021"
|
2022-03-27 16:32:14 +02:00
|
|
|
license = "AGPL-3.0-or-later"
|
2022-03-27 16:16:12 +02:00
|
|
|
license_file = "../LICENSE.md"
|
2022-03-27 16:22:30 +02:00
|
|
|
authors = [ "Daniel Mowitz" ]
|
2022-03-27 16:20:19 +02:00
|
|
|
description = "Macros for sing_rs"
|
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 18:28:30 +02:00
|
|
|
sing_util = "0.1"
|
|
|
|
sing_parse = "0.1"
|
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"
|