[package]
edition = "2024"
rust-version = "1.85"
name = "rustworkx-core"
version = "0.18.0"
authors = ["Matthew Treinish <mtreinish@kortar.org>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Rust APIs used for rustworkx algorithms"
homepage = "https://github.com/Qiskit/rustworkx/tree/main/rustworkx-core"
readme = "README.md"
keywords = ["graph"]
license = "Apache-2.0"
repository = "https://github.com/Qiskit/rustworkx"
[lib]
name = "rustworkx_core"
path = "src/lib.rs"
[[test]]
name = "centrality"
path = "tests/centrality.rs"
[[test]]
name = "graph_ext"
path = "tests/graph_ext/main.rs"
[[test]]
name = "planar"
path = "tests/planar.rs"
[[test]]
name = "quickcheck"
path = "tests/quickcheck/main.rs"
[[test]]
name = "test_connectivity"
path = "tests/test_connectivity.rs"
[dependencies.fixedbitset]
version = "0.5.7"
[dependencies.foldhash]
version = "0.1.5"
[dependencies.hashbrown]
version = ">=0.15, <0.18"
features = ["rayon"]
[dependencies.indexmap]
version = ">=1.9, <3"
features = ["rayon"]
[dependencies.ndarray]
version = ">=0.16.1,<0.18"
features = ["rayon"]
[dependencies.num-traits]
version = "0.2"
[dependencies.petgraph]
version = "0.8"
[dependencies.priority-queue]
version = "2.1"
[dependencies.rand]
version = "0.10"
[dependencies.rand_distr]
version = "0.6"
[dependencies.rand_pcg]
version = "0.10"
[dependencies.rayon]
version = "1.10"
[dependencies.rayon-cond]
version = "0.4"
[dev-dependencies.quickcheck]
version = "1.0"
[dev-dependencies.quickcheck_macros]
version = "1.0"