2021-11-12 17:33:32 +03:00
|
|
|
[package]
|
2022-08-14 10:48:15 +03:00
|
|
|
authors = ["강동윤 <kdy1997.dev@gmail.com>"]
|
2021-11-12 17:33:32 +03:00
|
|
|
description = "Faster version of petgraph"
|
2022-08-14 10:48:15 +03:00
|
|
|
edition = "2021"
|
|
|
|
include = ["Cargo.toml", "src/**/*.rs"]
|
|
|
|
license = "Apache-2.0"
|
|
|
|
name = "swc_fast_graph"
|
|
|
|
repository = "https://github.com/swc-project/swc.git"
|
2022-09-23 10:50:26 +03:00
|
|
|
version = "0.16.10"
|
2021-11-12 17:33:32 +03:00
|
|
|
|
2022-04-04 14:12:03 +03:00
|
|
|
[lib]
|
|
|
|
bench = false
|
2021-11-12 17:33:32 +03:00
|
|
|
|
|
|
|
[dependencies]
|
2022-08-14 10:48:15 +03:00
|
|
|
ahash = "0.7.6"
|
|
|
|
indexmap = "1.7.0"
|
|
|
|
petgraph = "0.6"
|
2022-09-23 10:50:26 +03:00
|
|
|
swc_common = { version = "0.28.10", path = "../swc_common" }
|