2017-12-22 15:51:36 +03:00
|
|
|
[workspace]
|
|
|
|
|
|
|
|
[package]
|
|
|
|
name = "swc"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["강동윤 <kdy1@outlook.kr>"]
|
2018-11-18 08:00:07 +03:00
|
|
|
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
|
|
|
|
2018-12-21 10:54:36 +03:00
|
|
|
[lib]
|
2018-01-27 09:14:53 +03:00
|
|
|
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" }
|
2018-12-21 10:54:36 +03:00
|
|
|
sourcemap = "2.2"
|
2018-01-12 10:53:06 +03:00
|
|
|
|
|
|
|
[profile.bench]
|
2018-12-21 10:54:36 +03:00
|
|
|
lto = true
|
2018-11-15 07:29:44 +03:00
|
|
|
|
|
|
|
[profile.release]
|
2018-12-21 10:54:36 +03:00
|
|
|
lto = true
|
2018-03-04 09:17:52 +03:00
|
|
|
|
|
|
|
[patch.crates-io]
|
2018-11-21 12:59:17 +03:00
|
|
|
# This reduces compile time
|
2018-12-21 10:54:36 +03:00
|
|
|
sourcemap = { git = "https://github.com/kdy1/rust-sourcemap.git" }
|