swc/crates/swc_graph_analyzer/Cargo.toml

23 lines
565 B
TOML
Raw Normal View History

[package]
authors = ["강동윤 <kdy1997.dev@gmail.com>"]
description = "Graph analyzer"
2021-12-30 12:59:18 +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"
2023-11-09 06:48:08 +03:00
version = "0.22.10"
[lib]
bench = false
[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"
[dev-dependencies]
2023-11-09 06:48:08 +03:00
testing = {version = "0.35.10", path = "../testing"}