enterprise/enterprise-macros/Cargo.toml

17 lines
422 B
TOML
Raw Normal View History

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
[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" }
syn = { version = "1.0.14", features = ["extra-traits", "full"] }