enterprise/enterprise-macros/Cargo.toml

17 lines
330 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
2020-01-11 07:25:45 +00:00
[build-dependencies]
lalrpop = "0.17.2"
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-11 07:46:02 +00:00
lalrpop-util = "0.17.2"