mirror of
https://github.com/swc-project/swc.git
synced 2024-12-01 01:13:56 +03:00
eebf14fbef
This pr introduces some cargo features. For `swc_common` and `swc_ecma_ast`, it introduces a feature flag `fold`. `Fold` and `Visit` traits exist only if the feature is enabled. For `swc_ecma_parser`, flag called `verify` is added. When disabled, we skip checking of validity of some expressions. e.g. `{foo = bar}` Verification is disabled by default it requires nightly compiler
14 lines
434 B
TOML
14 lines
434 B
TOML
[package]
|
|
name = "testing"
|
|
version = "0.2.0"
|
|
authors = ["강동윤 <kdy1@outlook.kr>"]
|
|
license = "Apache-2.0/MIT"
|
|
repository = "https://github.com/swc-project/swc.git"
|
|
documentation = "https://swc-project.github.io/rustdoc/testing/"
|
|
description = "Testing utilities for the swc project."
|
|
|
|
[dependencies]
|
|
swc_common = { version = "0.2", path ="../common", features = ["fold"] }
|
|
lazy_static = "1"
|
|
regex = "0.2.5"
|
|
relative-path = "0.4.0" |