swc/crates/swc_ecma_diff/Cargo.toml
2022-01-04 19:29:50 +09:00

29 lines
899 B
TOML

[package]
authors = ["강동윤 <kdy1997.dev@gmail.com>"]
description = "Diffing tools for ECMAScript"
documentation = "https://rustdoc.swc.rs/swc_ecma_diff/"
edition = "2021"
include = ["Cargo.toml", "src/**/*.rs"]
license = "Apache-2.0"
name = "swc_ecma_diff"
repository = "https://github.com/swc-project/swc.git"
version = "0.3.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"}
swc_common = {version = "0.16.0", path = "../swc_common"}
swc_ecma_ast = {version = "0.62.0", path = "../swc_ecma_ast"}
[dev-dependencies]
swc_ecma_codegen = {version = "0.86.0", path = "../swc_ecma_codegen"}
swc_ecma_parser = {version = "0.84.0", path = "../swc_ecma_parser"}
testing = {version = "0.17.0", path = "../testing"}