2020-08-12 16:18:47 +03:00
|
|
|
[package]
|
|
|
|
authors = ["강동윤 <kdy1997.dev@gmail.com>"]
|
2020-10-30 08:49:02 +03:00
|
|
|
# OUT_DIR is required for testing
|
|
|
|
build = "build.rs"
|
2020-08-12 16:18:47 +03:00
|
|
|
description = "Very fast ecmascript bundler"
|
2021-03-31 07:09:10 +03:00
|
|
|
documentation = "https://rustdoc.swc.rs/swc_bundler/"
|
2021-12-30 12:59:18 +03:00
|
|
|
edition = "2021"
|
2021-01-11 14:08:39 +03:00
|
|
|
include = ["Cargo.toml", "build.rs", "src/**/*.rs", "src/**/*.js"]
|
2021-12-01 08:20:52 +03:00
|
|
|
license = "Apache-2.0"
|
2020-09-03 16:45:42 +03:00
|
|
|
name = "swc_bundler"
|
|
|
|
repository = "https://github.com/swc-project/swc.git"
|
2022-02-15 07:22:16 +03:00
|
|
|
version = "0.107.0"
|
2020-08-12 16:18:47 +03:00
|
|
|
|
2021-11-25 08:16:18 +03:00
|
|
|
[package.metadata.docs.rs]
|
|
|
|
all-features = true
|
|
|
|
rustdoc-args = ["--cfg", "docsrs"]
|
|
|
|
|
2020-08-12 16:18:47 +03:00
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[features]
|
2021-10-09 11:08:13 +03:00
|
|
|
concurrent = [
|
|
|
|
"swc_common/concurrent",
|
|
|
|
"swc_ecma_transforms_optimization/concurrent",
|
|
|
|
"dashmap",
|
|
|
|
"rayon",
|
|
|
|
"indexmap/rayon",
|
|
|
|
]
|
2020-09-03 16:45:42 +03:00
|
|
|
default = []
|
2020-08-12 16:18:47 +03:00
|
|
|
|
|
|
|
[dependencies]
|
2021-02-22 11:27:40 +03:00
|
|
|
ahash = "0.7"
|
2020-08-12 16:18:47 +03:00
|
|
|
anyhow = "1"
|
|
|
|
crc = "1.8"
|
2021-04-28 08:49:21 +03:00
|
|
|
dashmap = {version = "4.0.2", optional = true}
|
2020-10-16 12:02:42 +03:00
|
|
|
indexmap = "1.6"
|
2022-01-11 08:41:34 +03:00
|
|
|
is-macro = "0.2.0"
|
2022-02-15 05:58:44 +03:00
|
|
|
once_cell = "1.9.0"
|
2022-02-17 08:16:14 +03:00
|
|
|
parking_lot = "0.12.0"
|
2020-09-03 16:45:42 +03:00
|
|
|
petgraph = "0.5"
|
|
|
|
radix_fmt = "1"
|
|
|
|
rayon = {version = "1", optional = true}
|
|
|
|
relative-path = "1.2"
|
2021-01-05 08:29:52 +03:00
|
|
|
retain_mut = "0.1.2"
|
2021-11-10 10:39:01 +03:00
|
|
|
swc_atoms = {version = "0.2.4", path = "../swc_atoms"}
|
2022-01-12 12:39:56 +03:00
|
|
|
swc_common = {version = "0.17.0", path = "../swc_common"}
|
|
|
|
swc_ecma_ast = {version = "0.65.0", path = "../swc_ecma_ast"}
|
2022-02-04 07:21:41 +03:00
|
|
|
swc_ecma_codegen = {version = "0.90.0", path = "../swc_ecma_codegen"}
|
2022-01-25 00:22:21 +03:00
|
|
|
swc_ecma_loader = {version = "0.28.0", path = "../swc_ecma_loader"}
|
2022-02-04 07:21:41 +03:00
|
|
|
swc_ecma_parser = {version = "0.88.0", path = "../swc_ecma_parser"}
|
|
|
|
swc_ecma_transforms_base = {version = "0.58.0", path = "../swc_ecma_transforms_base"}
|
2022-02-15 07:22:16 +03:00
|
|
|
swc_ecma_transforms_optimization = {version = "0.87.0", path = "../swc_ecma_transforms_optimization"}
|
2022-02-04 07:21:41 +03:00
|
|
|
swc_ecma_utils = {version = "0.65.0", path = "../swc_ecma_utils"}
|
2022-01-12 12:39:56 +03:00
|
|
|
swc_ecma_visit = {version = "0.51.0", path = "../swc_ecma_visit"}
|
|
|
|
swc_fast_graph = {version = "0.4.0", path = "../swc_fast_graph/"}
|
|
|
|
swc_graph_analyzer = {version = "0.4.0", path = "../swc_graph_analyzer/"}
|
2021-09-27 12:19:15 +03:00
|
|
|
tracing = "0.1.28"
|
2020-08-12 16:18:47 +03:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2020-10-30 08:49:02 +03:00
|
|
|
hex = "0.4"
|
2020-12-27 13:02:41 +03:00
|
|
|
ntest = "0.7.2"
|
2021-10-08 10:47:01 +03:00
|
|
|
path-clean = "=0.1.0"
|
2021-08-09 10:38:46 +03:00
|
|
|
reqwest = {version = "0.11.4", features = ["blocking"]}
|
2020-10-30 08:49:02 +03:00
|
|
|
sha-1 = "0.9"
|
2022-01-25 00:22:21 +03:00
|
|
|
swc_ecma_loader = {version = "0.28.0", path = "../swc_ecma_loader", features = ["node", "lru"]}
|
2022-02-15 07:22:16 +03:00
|
|
|
swc_ecma_minifier = {version = "0.74.0", path = "../swc_ecma_minifier"}
|
|
|
|
swc_ecma_transforms_react = {version = "0.80.0", path = "../swc_ecma_transforms_react"}
|
|
|
|
swc_ecma_transforms_typescript = {version = "0.82.0", path = "../swc_ecma_transforms_typescript"}
|
2021-11-10 10:39:01 +03:00
|
|
|
swc_node_base = {version = "0.5.0", path = "../swc_node_base"}
|
2020-10-14 17:28:38 +03:00
|
|
|
tempfile = "3.1.0"
|
2022-01-12 12:39:56 +03:00
|
|
|
testing = {version = "0.18.0", path = "../testing"}
|
2020-10-02 05:07:40 +03:00
|
|
|
url = "2.1.1"
|