2021-11-12 17:33:32 +03:00
|
|
|
[package]
|
|
|
|
authors = ["강동윤 <kdy1997.dev@gmail.com>"]
|
|
|
|
description = "Faster version of petgraph"
|
|
|
|
edition = "2018"
|
|
|
|
include = ["Cargo.toml", "src/**/*.rs"]
|
|
|
|
license = "Apache-2.0"
|
|
|
|
name = "swc_fast_graph"
|
|
|
|
repository = "https://github.com/swc-project/swc.git"
|
2021-12-07 08:34:44 +03:00
|
|
|
version = "0.2.0"
|
2021-11-12 17:33:32 +03:00
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
ahash = "0.7.6"
|
|
|
|
indexmap = "1.7.0"
|
|
|
|
petgraph = "0.5"
|
2021-12-07 08:34:44 +03:00
|
|
|
swc_common = {version = "0.15.0", path = "../swc_common"}
|