-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
executable file
·48 lines (44 loc) · 987 Bytes
/
Cargo.toml
File metadata and controls
executable file
·48 lines (44 loc) · 987 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
48
cargo-features = ["profile-rustflags"]
[workspace]
resolver = "2"
members = [
"crates/qf-compiler",
"crates/qf-parser",
"crates/qf-ir",
"crates/qf-backend",
"crates/qf-frontend"
]
[workspace.dependencies]
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
ndarray = "0.15"
approx = "0.5"
rand = { version = "0.8", features = ["small_rng"] }
rayon = "^1.5"
rustc-hash = "2.0.0"
smallvec = "1.13.2"
memory-stats = "1.0.0"
bitvec_simd = "0.20.5"
once_cell = "1.20.2"
num_cpus = "1.16.0"
bcrypt = "0.15.1"
mimalloc = "0.1.43"
colored = "2.1.0"
dhat = "0.3.3"
aligned-vec = "0.6.1"
tokio = { version = "1.35", features = ["full"] }
futures = "0.3"
scc = "2.3.0"
oq3_parser = "0.7.0"
oq3_syntax = "0.7.0"
oq3_semantics = "0.7.0"
thiserror = "2.0.12"
comfy-table = "7.1"
statrs = "0.18.0"
[profile.release]
lto = "fat"
codegen-units = 1
panic = "abort"
opt-level = 3
rustflags = ["-C", "target-cpu=native", "-C", "target-feature=+avx2"]
debug = false