-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
37 lines (34 loc) · 798 Bytes
/
Copy pathCargo.toml
File metadata and controls
37 lines (34 loc) · 798 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
[workspace]
resolver = "2"
members = [
"crates/r2il",
"crates/r2sleigh-lift",
"crates/r2sleigh-export",
"crates/r2sleigh-cli",
"crates/r2ssa",
"crates/r2sym",
"crates/r2types",
"crates/r2dec",
"r2plugin",
]
[workspace.package]
version = "0.1.0"
edition = "2024"
license = "LGPL-3.0-only"
authors = ["radare2 contributors", "0verflowme"]
repository = "https://github.com/0verflowme/r2sleigh"
[workspace.dependencies]
serde = { version = "1", features = ["derive"] }
postcard = { version = "1.1", features = ["use-std"] }
thiserror = "2.0"
clap = { version = "4", features = ["derive"] }
libsla = "1.2"
sleigh-config = "1.0"
sleigh-compiler = "2.0"
libloading = "0.9"
serde_json = "1"
[profile.release]
lto = true
codegen-units = 1
panic = "abort"
strip = true