swc/crates/swc_ecma_diff/Cargo.toml

29 lines
899 B
TOML
Raw Normal View History

[package]
authors = ["강동윤 <kdy1997.dev@gmail.com>"]
description = "Diffing tools for ECMAScript"
documentation = "https://rustdoc.swc.rs/swc_ecma_diff/"
2021-12-30 12:59:18 +03:00
edition = "2021"
include = ["Cargo.toml", "src/**/*.rs"]
license = "Apache-2.0"
name = "swc_ecma_diff"
repository = "https://github.com/swc-project/swc.git"
2022-01-06 14:19:36 +03:00
version = "0.4.0"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
[dependencies]
ansi_term = "0.12.1"
auto_impl = "0.5.0"
num-bigint = "0.2"
string_cache = "0.8"
swc_atoms = {version = "0.2.9", path = "../swc_atoms"}
2022-01-04 13:29:50 +03:00
swc_common = {version = "0.16.0", path = "../swc_common"}
2022-01-06 14:19:36 +03:00
swc_ecma_ast = {version = "0.63.0", path = "../swc_ecma_ast"}
[dev-dependencies]
2022-01-06 14:19:36 +03:00
swc_ecma_codegen = {version = "0.87.0", path = "../swc_ecma_codegen"}
swc_ecma_parser = {version = "0.85.0", path = "../swc_ecma_parser"}
2022-01-04 13:29:50 +03:00
testing = {version = "0.17.0", path = "../testing"}