forked from Qiskit/rustworkx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
61 lines (52 loc) · 1.2 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
[package]
name = "rustworkx"
description = "A python graph library implemented in Rust"
version = "0.14.0"
authors = ["Matthew Treinish <[email protected]>"]
license = "Apache-2.0"
readme = "README.md"
repository = "https://github.com/Qiskit/rustworkx"
keywords = ["python", "graph"]
edition = "2021"
rust-version = "1.64"
[workspace]
members = [
"rustworkx-core",
]
[lib]
name = "rustworkx"
crate-type = ["cdylib"]
[dependencies]
ahash = "0.8.3"
petgraph = "0.6.3"
fixedbitset = "0.4.2"
numpy = "0.19.0"
rand = "0.8"
rand_pcg = "0.3"
rayon = "1.7"
num-traits = "0.2"
num-bigint = "0.4"
num-complex = "0.4"
ndarray-stats = "0.5.1"
quick-xml = "0.30"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
rustworkx-core = { path = "rustworkx-core", version = "=0.14.0" }
[dependencies.pyo3]
version = "0.19.1"
features = ["extension-module", "hashbrown", "num-bigint", "num-complex", "indexmap"]
[dependencies.hashbrown]
version = "0.13"
features = ["rayon"]
[dependencies.ndarray]
version = "^0.15.6"
features = ["rayon"]
[dependencies.indexmap]
version = "1.9"
features = ["rayon"]
[dependencies.sprs]
version = "^0.11"
features = ["multi_thread"]
[profile.release]
lto = 'fat'
codegen-units = 1