forked from Qiskit/rustworkx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
41 lines (34 loc) · 785 Bytes
/
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
[package]
name = "retworkx"
description = "A python graph library implemented in Rust"
version = "0.9.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"
[badges]
travis-ci = {repository = "Qiskit/retworkx"}
[lib]
name = "retworkx"
crate-type = ["cdylib"]
[dependencies]
petgraph = "0.5.1"
fixedbitset = "0.2.0"
numpy = "0.13.1"
rand = "0.8"
rand_pcg = "0.3"
rayon = "1.5"
[dependencies.pyo3]
version = "0.13.0"
features = ["extension-module", "hashbrown"]
[dependencies.hashbrown]
version = "0.9"
features = ["rayon"]
[dependencies.ndarray]
version = "^0.13.1"
features = ["rayon"]
[profile.release]
lto = 'fat'
codegen-units = 1