diff options
author | Titus Wormer <tituswormer@gmail.com> | 2022-11-25 12:36:15 +0100 |
---|---|---|
committer | Titus Wormer <tituswormer@gmail.com> | 2022-11-25 12:36:15 +0100 |
commit | 53173e52b151537ad8510da5e7802f342d24a372 (patch) | |
tree | d904053e6679d0a89db7affa8a9b20f160a26d65 /Cargo.toml | |
parent | 7f06d55d84db512cc9b1eee0ef23db2d7bf30214 (diff) | |
download | markdown-rs-53173e52b151537ad8510da5e7802f342d24a372.tar.gz markdown-rs-53173e52b151537ad8510da5e7802f342d24a372.tar.bz2 markdown-rs-53173e52b151537ad8510da5e7802f342d24a372.zip |
Remove unneeded tests
Diffstat (limited to 'Cargo.toml')
-rw-r--r-- | Cargo.toml | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -26,12 +26,12 @@ unicode-id = { version = "0.3", features = ["no_std"] } env_logger = "0.9" criterion = "0.4" pretty_assertions = "1" -swc_ecma_codegen = "0.127" -swc_common = "0.29" -swc_ecma_ast = "0.94" -swc_ecma_parser = "0.122" -swc_ecma_transforms_react = "0.155" -swc_ecma_visit = "0.80" +swc_core = { version = "0.43.30", features = [ + "ecma_ast", + "ecma_visit", + "ecma_parser", + "common", +] } [build-dependencies] regex = "1" |