swc/crates/swc_fast_graph/Cargo.toml
Donny/강동윤 b13eb4c811
fix(fast-graph): Use fxhash instead of ahash to make iteration order consistent (#7133)
**Description:**

Some operations of `petgraph` assumes the same iteration order.
2023-03-23 18:32:47 +09:00

19 lines
434 B
TOML

[package]
authors = ["강동윤 <kdy1997.dev@gmail.com>"]
description = "Faster version of petgraph"
edition = "2021"
include = ["Cargo.toml", "src/**/*.rs"]
license = "Apache-2.0"
name = "swc_fast_graph"
repository = "https://github.com/swc-project/swc.git"
version = "0.17.40"
[lib]
bench = false
[dependencies]
indexmap = "1.6.1"
petgraph = "0.6"
swc_common = { version = "0.29.39", path = "../swc_common" }
rustc-hash = "1.1.0"