rsnext/packages/next-swc/crates/core/Cargo.toml

44 lines
1.2 KiB
TOML
Raw Normal View History

2021-11-17 20:01:02 +01:00
[package]
edition = "2018"
name = "next-swc"
version = "0.0.0"
publish = false
2021-11-17 20:01:02 +01:00
[lib]
crate-type = ["cdylib", "rlib"]
[features]
plugin = [
"swc/plugin"
]
2021-11-17 20:01:02 +01:00
[dependencies]
chrono = "0.4"
easy-error = "1.0.0"
either = "1"
fxhash = "0.2.1"
2022-03-15 08:51:15 +01:00
once_cell = "1.8.0"
2021-11-17 20:01:02 +01:00
pathdiff = "0.2.0"
2022-03-15 08:51:15 +01:00
regex = "1.5"
2021-11-17 20:01:02 +01:00
serde = "1"
serde_json = "1"
swc_emotion = {path="../emotion"}
styled_components = {path="../styled_components"}
styled_jsx = {path="../styled_jsx"}
modularize_imports = {path="../modularize_imports"}
swc = "0.188.0"
swc_atoms = "0.2.12"
swc_common = { version = "0.18.9", features = ["concurrent", "sourcemap"] }
2022-05-24 06:50:25 +02:00
swc_ecma_loader = { version = "0.30.2", features = ["node", "lru"] }
swc_ecmascript = { version = "0.164.0", features = ["codegen", "minifier", "optimization", "parser", "react", "transforms", "typescript", "utils", "visit"] }
swc_plugin_runner = { version = "0.56.0", optional = true, default-features = false }
swc_cached = "0.1.1"
tracing = { version = "0.1.32", features = ["release_max_level_info"] }
wasmer = { version = "2.3.0", optional = true, default-features = false }
wasmer-wasi = { version = "2.3.0", optional = true, default-features = false }
2021-11-17 20:01:02 +01:00
[dev-dependencies]
swc_ecma_transforms_testing = "0.91.0"
testing = "0.20.1"
2021-11-17 20:01:02 +01:00
walkdir = "2.3.2"