2021-11-12 17:33:32 +03:00
|
|
|
[package]
|
2024-04-04 09:07:49 +03:00
|
|
|
authors = ["강동윤 <kdy1997.dev@gmail.com>"]
|
2021-11-12 17:33:32 +03:00
|
|
|
description = "Graph analyzer"
|
2024-04-04 09:07:49 +03:00
|
|
|
edition = "2021"
|
|
|
|
include = ["Cargo.toml", "src/**/*.rs"]
|
|
|
|
license = "Apache-2.0"
|
|
|
|
name = "swc_graph_analyzer"
|
|
|
|
repository = "https://github.com/swc-project/swc.git"
|
|
|
|
version = "0.22.22"
|
2022-04-04 14:12:03 +03:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
bench = false
|
2021-11-12 17:33:32 +03:00
|
|
|
|
|
|
|
[dependencies]
|
2024-04-04 09:07:49 +03:00
|
|
|
auto_impl = "1.2.0"
|
|
|
|
petgraph = "0.6.0"
|
|
|
|
swc_common = { version = "0.33.20", path = "../swc_common/" }
|
|
|
|
swc_fast_graph = { version = "0.21.20", path = "../swc_fast_graph/" }
|
|
|
|
tracing = "0.1.40"
|
2021-11-21 08:55:59 +03:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2024-04-04 09:07:49 +03:00
|
|
|
testing = { version = "0.35.21", path = "../testing" }
|