mirror of
https://github.com/swc-project/swc.git
synced 2024-12-01 18:31:35 +03:00
23 lines
657 B
TOML
23 lines
657 B
TOML
[package]
|
|
authors = ["강동윤 <kdy1997.dev@gmail.com>"]
|
|
description = "Graph analyzer"
|
|
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.24.0"
|
|
|
|
[lib]
|
|
bench = false
|
|
|
|
[dependencies]
|
|
auto_impl = { workspace = true }
|
|
petgraph = { workspace = true }
|
|
swc_common = { version = "0.35.0", path = "../swc_common/" }
|
|
swc_fast_graph = { version = "0.23.0", path = "../swc_fast_graph/" }
|
|
tracing = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
testing = { version = "0.37.0", path = "../testing" }
|