enterprise/Cargo.toml
2020-02-17 01:46:03 -06:00

23 lines
430 B
TOML

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