swc/Cargo.toml

29 lines
607 B
TOML
Raw Normal View History

2017-12-22 15:51:36 +03:00
[workspace]
[package]
name = "swc"
version = "0.1.0"
authors = ["강동윤 <kdy1@outlook.kr>"]
license = "Apache-2.0/MIT"
repository = "https://github.com/swc-project/swc.git"
documentation = "https://swc-project.github.io/rustdoc/swc/"
description = "Speedy web compiler"
2017-12-22 15:51:36 +03:00
[lib]
name = "swc"
2017-12-22 15:51:36 +03:00
[dependencies]
2019-01-09 12:40:14 +03:00
swc_atoms = { path ="./atoms" }
swc_common = { path ="./common" }
swc_ecmascript = { path ="./ecmascript" }
sourcemap = "2.2"
[profile.bench]
lto = true
[profile.release]
lto = true
2018-03-04 09:17:52 +03:00
[patch.crates-io]
# This reduces compile time
sourcemap = { git = "https://github.com/kdy1/rust-sourcemap.git" }