enterprise/Cargo.toml

26 lines
476 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"]
[dependencies]
enterprise-compiler = { path = "enterprise-compiler" }
stdweb = { version = "0.4.20", optional = true }
parking_lot = "0.10.0"