-
Notifications
You must be signed in to change notification settings - Fork 125
/
Cargo.toml
60 lines (53 loc) · 1.5 KB
/
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
[workspace]
members = [
"crates/disassemble",
"crates/decompile",
"crates/tracing",
"crates/inspect",
"crates/decode",
"crates/common",
"crates/config",
"crates/cache",
"crates/core",
"crates/dump",
"crates/cli",
"crates/cfg",
"crates/vm",
]
# Explicitly set the resolver to version 2, which is the default for packages with edition >= 2021
# https://doc.rust-lang.org/edition-guide/rust-2021/default-cargo-resolver.html
resolver = "2"
[profile.release]
strip = "debuginfo"
lto = "fat"
codegen-units = 1
incremental = false
[profile.dev]
strip = "none"
lto = "thin"
debug = true
[workspace.package]
version = "0.8.4"
edition = "2021"
license = "MIT"
rust-version = "1.79"
homepage = "https://heimdall.rs"
repository = "https://github.com/Jon-Becker/heimdall-rs"
keywords = ["ethereum", "web3", "decompiler", "evm", "crypto"]
exclude = [".github/"]
[workspace.dependencies]
heimdall-core = { path = "crates/core" }
heimdall-cache = { path = "crates/cache" }
heimdall-cli = { path = "crates/cli" }
heimdall-common = { path = "crates/common" }
heimdall-config = { path = "crates/config" }
heimdall-tracing = { path = "crates/tracing" }
# core mods
heimdall-cfg = { path = "crates/cfg" }
heimdall-dump = { path = "crates/dump" }
heimdall-inspect = { path = "crates/inspect" }
heimdall-decoder = { path = "crates/decode" }
heimdall-decompiler = { path = "crates/decompile" }
heimdall-disassembler = { path = "crates/disassemble" }
heimdall-vm = { path = "crates/vm" }
clap = "4"