enterprise/Cargo.toml
2020-02-20 18:43:45 -06:00

31 lines
574 B
TOML

[package]
name = "enterprise"
version = "0.1.0"
authors = ["Michael Zhang <iptq@protonmail.com>"]
edition = "2018"
[workspace]
members = [
"enterprise-compiler",
"enterprise-macros",
"symbol",
"syn-serde",
"examples/helloworld",
"examples/todomvc",
]
[features]
default = ["web"]
web = ["stdweb"]
[dev-dependencies]
quickcheck = "0.9.2"
quickcheck_macros = "0.9.1"
[dependencies]
enterprise-compiler = { path = "enterprise-compiler" }
stdweb = { version = "0.4.20", optional = true }
parking_lot = "0.10.0"
symbol = { path = "symbol" }