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"
|
2024-11-01 10:35:29 +03:00
|
|
|
version = "3.0.0"
|
2022-04-04 14:12:03 +03:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
bench = false
|
2021-11-12 17:33:32 +03:00
|
|
|
|
|
|
|
[dependencies]
|
2024-04-29 03:54:45 +03:00
|
|
|
auto_impl = { workspace = true }
|
|
|
|
petgraph = { workspace = true }
|
2024-11-01 10:35:29 +03:00
|
|
|
swc_common = { version = "3.0.0", path = "../swc_common/" }
|
|
|
|
swc_fast_graph = { version = "4.0.0", path = "../swc_fast_graph/" }
|
2024-04-29 03:54:45 +03:00
|
|
|
tracing = { workspace = true }
|
2021-11-21 08:55:59 +03:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2024-11-01 10:35:29 +03:00
|
|
|
testing = { version = "3.0.0", path = "../testing" }
|