2021-05-06 08:56:54 +03:00
|
|
|
[package]
|
|
|
|
authors = ["강동윤 <kdy1997.dev@gmail.com>"]
|
|
|
|
description = "Speedy web compiler"
|
|
|
|
documentation = "https://rustdoc.swc.rs/swc_node_base/"
|
2021-12-30 12:59:18 +03:00
|
|
|
edition = "2021"
|
2021-12-01 08:20:52 +03:00
|
|
|
license = "Apache-2.0"
|
2021-05-06 08:56:54 +03:00
|
|
|
name = "swc_node_base"
|
|
|
|
repository = "https://github.com/swc-project/swc.git"
|
2021-10-18 15:07:13 +03:00
|
|
|
version = "0.5.1"
|
2021-05-06 08:56:54 +03:00
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2022-03-08 01:36:06 +03:00
|
|
|
fastmem = {version = "0.1.0", path = "../fastmem", features = ["enable"]}
|
2022-03-12 10:15:12 +03:00
|
|
|
swc_common = {version = "0.17.14", path = "../swc_common", features = ["perf"]}
|
2021-05-06 08:56:54 +03:00
|
|
|
|
2021-12-24 05:21:24 +03:00
|
|
|
[target.'cfg(not(all(target_os = "linux", target_arch = "aarch64", target_env = "musl")))'.dependencies]
|
|
|
|
mimalloc-rust = "=0.1.5"
|