2021-11-12 17:33:32 +03:00
|
|
|
[package]
|
|
|
|
authors = ["강동윤 <kdy1997.dev@gmail.com>"]
|
|
|
|
description = "Faster version of petgraph"
|
2021-12-30 12:59:18 +03:00
|
|
|
edition = "2021"
|
2021-11-12 17:33:32 +03:00
|
|
|
include = ["Cargo.toml", "src/**/*.rs"]
|
|
|
|
license = "Apache-2.0"
|
|
|
|
name = "swc_fast_graph"
|
|
|
|
repository = "https://github.com/swc-project/swc.git"
|
2022-03-12 14:08:43 +03:00
|
|
|
version = "0.5.0"
|
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]
|
|
|
|
ahash = "0.7.6"
|
|
|
|
indexmap = "1.7.0"
|
2022-03-11 17:00:55 +03:00
|
|
|
petgraph = "0.6"
|
2022-04-05 08:28:07 +03:00
|
|
|
swc_common = {version = "0.17.19", path = "../swc_common"}
|