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-01-27 09:14:53 +03:00
|
|
|
[[bin]]
|
|
|
|
name = "swc"
|
|
|
|
|
2017-12-22 15:51:36 +03:00
|
|
|
[dependencies]
|
2018-11-18 08:00:07 +03:00
|
|
|
libswc = { version = "0.1", path = "./libswc" }
|
2018-11-10 11:44:35 +03:00
|
|
|
rayon = "1.0.3"
|
2018-01-21 11:47:37 +03:00
|
|
|
slog = "2"
|
|
|
|
slog-envlogger = "2.1"
|
|
|
|
slog-term = "2.3"
|
|
|
|
|
|
|
|
[dependencies.clap]
|
2018-01-27 09:14:53 +03:00
|
|
|
version = "2.29.1"
|
2018-01-21 11:47:37 +03:00
|
|
|
default-features = false
|
|
|
|
features = [ "suggestions", "color" ]
|
2018-01-12 10:53:06 +03:00
|
|
|
|
|
|
|
|
|
|
|
[profile.bench]
|
2018-11-15 07:29:44 +03:00
|
|
|
lto = true
|
|
|
|
|
|
|
|
[profile.release]
|
|
|
|
lto = true
|
2018-03-04 09:17:52 +03:00
|
|
|
|
|
|
|
[patch.crates-io]
|