enterprise/Cargo.toml

27 lines
476 B
TOML
Raw Permalink Normal View History

2020-01-10 07:26:38 +00:00
[package]
name = "enterprise"
version = "0.1.0"
authors = ["Michael Zhang <iptq@protonmail.com>"]
edition = "2018"
[workspace]
2020-02-08 23:36:17 +00:00
members = [
"enterprise-compiler",
2020-02-11 07:46:02 +00:00
"enterprise-macros",
2020-02-17 07:46:03 +00:00
"symbol",
"syn-serde",
2020-02-17 07:46:03 +00:00
2020-02-11 00:39:44 +00:00
"examples/helloworld",
2020-02-19 23:46:04 +00:00
"examples/todomvc",
2020-02-08 23:36:17 +00:00
]
2020-01-10 07:26:38 +00:00
2020-02-11 07:13:00 +00:00
[features]
default = ["web"]
web = ["stdweb"]
2020-01-10 07:26:38 +00:00
[dependencies]
2020-02-04 14:48:19 +00:00
enterprise-compiler = { path = "enterprise-compiler" }
2020-02-11 07:13:00 +00:00
stdweb = { version = "0.4.20", optional = true }
2020-02-09 19:08:36 +00:00
parking_lot = "0.10.0"