-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathCargo.toml
More file actions
47 lines (44 loc) · 966 Bytes
/
Copy pathCargo.toml
File metadata and controls
47 lines (44 loc) · 966 Bytes
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
[workspace]
members = [
"crates/cqlib-core",
"crates/binding-python",
"crates/binding-c",
"crates/cqlib",
]
resolver = "2"
[workspace.package]
version = "0.1.0"
edition = "2024"
rust-version = "1.85"
license = "Apache-2.0"
license-file = "LICENSE.txt"
[profile.release]
lto = true
codegen-units = 1
strip = true
[workspace.dependencies]
approx = { version = "0.5", features = ["num-complex"] }
bitvec = "1.0.1"
cbindgen = "0.29.2"
faer = "0.24.0"
lalrpop = "0.22"
lalrpop-util = "0.22"
lazy_static = "1.5.0"
indexmap = "2.12"
ndarray = { version = "0.17", features = ["approx", "rayon"] }
num = "0.4"
numpy = "0.27"
num-complex = "0.4"
oq3_semantics = "0.7.0"
rayon = "1.11.0"
rand = "0.9"
proptest = "1.6"
regex = "1.12.3"
rustworkx-core = "0.17"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
smallvec = "1.15"
symb_anafis = "0.8.1"
thiserror = "2.0.18"
time = "0.3.47"
uuid = { version = "1.19", features = ["v4", "serde"] }