-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
49 lines (45 loc) · 1.58 KB
/
Cargo.toml
File metadata and controls
49 lines (45 loc) · 1.58 KB
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
[workspace]
resolver = "2"
members = ["crates/*", "c-api"]
default-members = ["crates/*"]
[workspace.package]
edition = "2024"
rust-version = "1.88"
[workspace.dependencies]
bindings = { path = "crates/bindings" }
codegen = { path = "crates/codegen" }
codegen-test-tools = { path = "crates/codegen-test-tools" }
graphmock = { path = "crates/graphmock" }
dominators = { path = "crates/dominators" }
entity-utils = { path = "crates/entity-utils" }
frontend = { path = "crates/frontend" }
fx-utils = { path = "crates/fx-utils" }
graphwalk = { path = "crates/graphwalk" }
ir = { path = "crates/ir" }
ir-graphviz = { path = "crates/ir-graphviz" }
opt = { path = "crates/opt" }
parser = { path = "crates/parser" }
slice-utils = { path = "crates/slice-utils" }
valmatch = { path = "crates/valmatch" }
anyhow = "1.0.102"
bitflags = { version = "2.11.1", default-features = false }
clap = { version = "4.6.1", features = ["derive", "wrap_help"] }
capstone = "0.14.0"
cranelift-bitset = "0.125.4"
cranelift-entity = "0.125.4"
expect-test = "1.5.1"
hashbrown = { version = "0.17.0", default-features = false }
hexfloat2 = { version = "0.2.0", default-features = false, features = [
"alloc",
] }
itertools = { version = "0.14.0", default-features = false }
log = "0.4.29"
pest = { version = "2.8.6", default-features = false }
pest_derive = { version = "2.8.6", default-features = false }
smallvec = { version = "1.15.1", default-features = false, features = [
"const_new",
] }
# This crate is very hot because of filetests, so make sure it gets reasonably
# optimized.
[profile.dev.package.regex-automata]
opt-level = 2