mirror of
https://github.com/swc-project/swc.git
synced 2024-12-26 07:02:28 +03:00
19 lines
390 B
TOML
19 lines
390 B
TOML
[workspace]
|
|
|
|
[package]
|
|
edition = "2021"
|
|
name = "swc_internal_plugin"
|
|
publish = false
|
|
version = "0.1.0"
|
|
|
|
[lib]
|
|
crate-type = ["cdylib"]
|
|
|
|
# swc_atoms -> string_cache -> parking_lot -> https://github.com/Amanieu/parking_lot/issues/269
|
|
[target.'cfg(target_arch = "wasm32")'.dependencies]
|
|
parking_lot_core = "=0.8.0"
|
|
|
|
[dependencies]
|
|
serde = "1"
|
|
swc_plugin = {path = "../../../crates/swc_plugin"}
|