2020-01-10 07:26:38 +00:00
|
|
|
[package]
|
|
|
|
name = "enterprise-macros"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["Michael Zhang <iptq@protonmail.com>"]
|
|
|
|
edition = "2018"
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
proc-macro = true
|
|
|
|
|
2020-02-21 06:03:25 +00:00
|
|
|
[dev-dependencies]
|
|
|
|
proptest = "0.9.5"
|
|
|
|
|
2020-01-10 07:26:38 +00:00
|
|
|
[dependencies]
|
2020-01-11 07:25:45 +00:00
|
|
|
proc-macro2 = { version = "1.0.7", features = ["span-locations"] }
|
2020-01-10 07:26:38 +00:00
|
|
|
quote = "1.0.2"
|
2020-01-11 07:25:45 +00:00
|
|
|
thiserror = "1.0.9"
|
2020-02-17 07:46:03 +00:00
|
|
|
symbol = { path = "../symbol" }
|
|
|
|
enterprise-compiler = { path = "../enterprise-compiler" }
|
2020-02-17 12:07:53 +00:00
|
|
|
syn-serde = { path = "../syn-serde" }
|
2020-02-17 07:46:03 +00:00
|
|
|
syn = { version = "1.0.14", features = ["extra-traits", "full"] }
|
2020-02-17 12:07:53 +00:00
|
|
|
serde_json = "1.0.48"
|