forked from Qiskit/rustworkx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
52 lines (44 loc) · 1.02 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
[package]
name = "retworkx"
description = "A python graph library implemented in Rust"
version = "0.11.0"
authors = ["Matthew Treinish <mtreinish@kortar.org>"]
license = "Apache-2.0"
readme = "README.md"
repository = "https://github.com/Qiskit/retworkx"
keywords = ["python", "graph"]
edition = "2018"
[workspace]
members = [
"retworkx-core",
]
[lib]
name = "retworkx"
crate-type = ["cdylib"]
[dependencies]
ahash = { version = "0.7.6", default-features = false }
petgraph = "0.6.0"
fixedbitset = "0.4.0"
numpy = "0.15.0"
rand = "0.8"
rand_pcg = "0.3"
rayon = "1.5"
num-traits = "0.2"
num-bigint = "0.4"
num-complex = "0.4"
retworkx-core = { path = "./retworkx-core" }
[dependencies.pyo3]
version = "0.15.0"
features = ["extension-module", "hashbrown", "num-bigint", "num-complex", "indexmap"]
[dependencies.hashbrown]
version = "0.11"
features = ["rayon"]
[dependencies.ndarray]
version = "^0.13.1"
features = ["rayon"]
[dependencies.indexmap]
version = "1.7"
features = ["rayon"]
[profile.release]
lto = 'fat'
codegen-units = 1