2021-12-23 16:01:37 +03:00
|
|
|
[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"
|
2021-12-23 16:01:37 +03:00
|
|
|
include = ["Cargo.toml", "src/**/*.rs"]
|
|
|
|
license = "Apache-2.0"
|
|
|
|
name = "swc_ecma_diff"
|
|
|
|
repository = "https://github.com/swc-project/swc.git"
|
2022-01-10 16:57:17 +03:00
|
|
|
version = "0.5.0"
|
2021-12-23 16:01:37 +03:00
|
|
|
|
|
|
|
[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-10 16:57:17 +03:00
|
|
|
swc_ecma_ast = {version = "0.64.0", path = "../swc_ecma_ast"}
|
2021-12-23 16:01:37 +03:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2022-01-10 16:57:17 +03:00
|
|
|
swc_ecma_codegen = {version = "0.88.0", path = "../swc_ecma_codegen"}
|
|
|
|
swc_ecma_parser = {version = "0.86.0", path = "../swc_ecma_parser"}
|
2022-01-04 13:29:50 +03:00
|
|
|
testing = {version = "0.17.0", path = "../testing"}
|