2021-11-12 17:33:32 +03:00
|
|
|
[package]
|
|
|
|
authors = ["강동윤 <kdy1997.dev@gmail.com>"]
|
|
|
|
description = "Graph analyzer"
|
2021-12-30 12:59:18 +03:00
|
|
|
edition = "2021"
|
2021-11-12 17:33:32 +03:00
|
|
|
include = ["Cargo.toml", "src/**/*.rs"]
|
|
|
|
license = "Apache-2.0"
|
|
|
|
name = "swc_graph_analyzer"
|
|
|
|
repository = "https://github.com/swc-project/swc.git"
|
2023-11-09 06:48:08 +03:00
|
|
|
version = "0.22.10"
|
2022-04-04 14:12:03 +03:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
bench = false
|
2021-11-12 17:33:32 +03:00
|
|
|
|
|
|
|
[dependencies]
|
2023-06-22 10:40:41 +03:00
|
|
|
auto_impl = "1.1.0"
|
2022-03-11 17:00:55 +03:00
|
|
|
petgraph = "0.6.0"
|
2023-11-09 06:48:08 +03:00
|
|
|
swc_common = {version = "0.33.8", path = "../swc_common/"}
|
|
|
|
swc_fast_graph = {version = "0.21.8", path = "../swc_fast_graph/"}
|
2023-06-22 10:40:41 +03:00
|
|
|
tracing = "0.1.37"
|
2021-11-21 08:55:59 +03:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2023-11-09 06:48:08 +03:00
|
|
|
testing = {version = "0.35.10", path = "../testing"}
|