-
Notifications
You must be signed in to change notification settings - Fork 287
/
Copy pathCargo.toml
84 lines (70 loc) · 1.7 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
# Rust workspace. Allows command like `cargo test` to work anywhere within the
# repo and ensures that all components use the same dependency versions
# (global Cargo.lock).
[workspace]
members = [
"rust-crates/symblib",
"rust-crates/symblib-capi",
]
resolver = "2"
[workspace.package]
version = "0.0.0"
rust-version = "1.77"
[profile.release]
lto = "thin"
codegen-units = 1
panic = "abort"
opt-level = 3
strip = "debuginfo"
[profile.release-unstripped]
inherits = "release"
strip = false
debug = 1
[profile.release-with-asserts]
inherits = "release-unstripped"
overflow-checks = true
debug-assertions = true
[profile.test]
opt-level = 1 # default of 0 is annoyingly slow
[workspace.dependencies]
argh = "0.1"
base64 = "0.22.0"
cpp_demangle = "0.4"
fallible-iterator = "0.3"
flate2 = "1"
memmap2 = "0.9.0"
native-tls = "0.2"
prost = "0.12.1"
prost-build = "0.12.1"
rustc-demangle = "0.1"
serde_json = "1"
sha2 = "0.10"
tempfile = "3"
thiserror = "1"
zstd = "0.13.0"
zydis = "4.1.1"
[workspace.dependencies.gimli]
version = "0.30.0"
default-features = false
features = ["std", "endian-reader", "fallible-iterator"]
[workspace.dependencies.intervaltree]
version = "0.2"
default-features = false
features = ["std"]
[workspace.dependencies.lru]
version = "0.12.0"
default-features = false
[workspace.dependencies.object]
version = "0.36.0"
default-features = false
features = ["std", "read_core", "elf", "macho", "unaligned"]
[workspace.dependencies.serde]
version = "1"
features = ["derive"]
[workspace.dependencies.smallvec]
version = "1"
features = ["const_new", "union", "const_generics", "write"]
[workspace.dependencies.ureq]
version = "2"
default-features = false
features = ["gzip", "native-tls", "native-certs"]