forked from Qiskit/qiskit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
43 lines (35 loc) · 846 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
42
43
[package]
name = "qiskit-terra"
version = "0.24.0"
edition = "2021"
# Keep in sync with README.md and rust-toolchain.toml.
rust-version = "1.61"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
name = "qiskit_accelerate"
crate-type = ["cdylib"]
[dependencies]
rayon = "1.7"
numpy = "0.18.0"
rand = "0.8"
rand_pcg = "0.3"
rand_distr = "0.4.3"
ahash = "0.8.3"
num-complex = "0.4"
num-bigint = "0.4"
rustworkx-core = "0.12"
[dependencies.pyo3]
version = "0.18.1"
features = ["extension-module", "hashbrown", "num-complex", "num-bigint", "indexmap"]
[dependencies.ndarray]
version = "^0.15.6"
features = ["rayon"]
[dependencies.hashbrown]
version = "0.13.2"
features = ["rayon"]
[dependencies.indexmap]
version = "1.9"
features = ["rayon"]
[profile.release]
lto = 'fat'
codegen-units = 1