Cargo Features
[dependencies]
swc_ecma_minifier = { version = "4.0.0", default-features = false, features = ["concurrent", "debug", "extra-serde", "serde-impl", "trace-ast", "pretty_assertions"] }
- concurrent = rayon
-
This enables global concurrent mode
Enables rayon of indexmap, concurrent of swc_common, concurrent-renamer of swc_ecma_transforms_base, concurrent of swc_ecma_transforms_optimization
- default = serde-impl
-
The
serde-impl
feature is set by default wheneverswc_ecma_minifier
is added without
somewhere in the dependency tree.default-features = false - debug = backtrace
-
Enables debug of swc_ecma_transforms_optimization
- extra-serde = serde-impl
-
Implement serialize/deserialize for more types
Enables serde-impl of swc_ecma_ast
- serde-impl default extra-serde?
- trace-ast
Features from optional dependencies
In crates that don't use the dep:
syntax, optional dependencies automatically become Cargo features. These features may have been created by mistake, and this functionality may be removed in the future.
- backtrace debug?
- pretty_assertions implicit feature
-
Enables pretty_assertions
pretty_assertions:
Overwrite
assert_eq!
andassert_ne!
with drop-in replacements, adding colorful diffs - rayon concurrent?