2021-11-12 17:33:32 +03:00
|
|
|
[package]
|
2023-03-24 07:46:42 +03:00
|
|
|
authors = ["강동윤 <kdy1997.dev@gmail.com>"]
|
2021-11-12 17:33:32 +03:00
|
|
|
description = "Faster version of petgraph"
|
2023-03-24 07:46:42 +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"
|
2024-08-05 12:14:11 +03:00
|
|
|
version = "0.25.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]
|
2024-04-29 03:54:45 +03:00
|
|
|
indexmap = { workspace = true }
|
|
|
|
petgraph = { workspace = true }
|
|
|
|
rustc-hash = { workspace = true }
|
2023-03-24 07:46:42 +03:00
|
|
|
|
2024-08-05 12:14:11 +03:00
|
|
|
swc_common = { version = "0.37.0", path = "../swc_common" }
|