enterprise/enterprise-macros/Cargo.toml

27 lines
595 B
TOML
Raw Permalink 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-02-23 11:11:51 +00:00
[[bin]]
name = "test"
path = "src/tests.rs"
2020-02-21 06:03:25 +00:00
[dev-dependencies]
proptest = "0.9.5"
2020-01-10 07:26:38 +00:00
[dependencies]
2020-02-24 14:26:55 +00:00
enterprise = { path = ".." }
enterprise-compiler = { path = "../enterprise-compiler" }
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-02-24 14:26:55 +00:00
serde_json = "1.0.48"
2020-02-17 07:46:03 +00:00
symbol = { path = "../symbol" }
syn = { version = "1.0.14", features = ["extra-traits", "full"] }
2020-02-24 14:26:55 +00:00
syn-serde = { path = "../syn-serde" }
thiserror = "1.0.9"