2021-03-20 09:30:54 +03:00
|
|
|
[package]
|
|
|
|
authors = ["강동윤 <kdy1997.dev@gmail.com>"]
|
|
|
|
description = "General ecmascript loader used for transforms"
|
2021-03-31 07:09:10 +03:00
|
|
|
documentation = "https://rustdoc.swc.rs/swc_ecma_loader/"
|
2021-03-20 09:30:54 +03:00
|
|
|
edition = "2018"
|
|
|
|
license = "Apache-2.0/MIT"
|
|
|
|
name = "swc_ecma_loader"
|
|
|
|
repository = "https://github.com/swc-project/swc.git"
|
2021-04-04 14:12:02 +03:00
|
|
|
version = "0.4.0"
|
2021-03-20 09:30:54 +03:00
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
swc_atoms = {version = "0.2.3", path = "../../atoms"}
|
|
|
|
swc_common = {version = "0.10.10", path = "../../common"}
|
2021-04-04 14:12:02 +03:00
|
|
|
swc_ecma_ast = {version = "0.43.0", path = "../ast"}
|
|
|
|
swc_ecma_visit = {version = "0.29.0", path = "../visit"}
|
2021-03-20 09:30:54 +03:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
testing = {version = "0.10.3", path = "../../testing"}
|