mirror of
https://github.com/swc-project/swc.git
synced 2024-12-04 19:46:22 +03:00
22 lines
802 B
TOML
22 lines
802 B
TOML
[package]
|
|
authors = ["강동윤 <kdy1997.dev@gmail.com>"]
|
|
description = "Speedy web compiler"
|
|
documentation = "https://rustdoc.swc.rs/swc_node_base/"
|
|
edition = "2018"
|
|
license = "Apache-2.0/MIT"
|
|
name = "swc_node_base"
|
|
repository = "https://github.com/swc-project/swc.git"
|
|
version = "0.1.0"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
dashmap = "4.0.2"
|
|
swc_common = {version = "0.10", path = "../../common"}
|
|
|
|
[target.'cfg(all(unix, not(target_env = "musl"), not(target_os = "freebsd"), not(target_arch = "arm"), not(target_arch = "aarch64")))'.dependencies]
|
|
jemallocator = {version = "0.3", features = ["disable_initial_exec_tls"]}
|
|
|
|
[target.'cfg(all(windows, not(target_arch = "aarch64")))'.dependencies]
|
|
mimalloc = {version = "0.1"}
|