-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathCargo.toml
More file actions
32 lines (26 loc) · 727 Bytes
/
Cargo.toml
File metadata and controls
32 lines (26 loc) · 727 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
[package]
name = "ghostscope-dwarf"
version.workspace = true
edition.workspace = true
authors.workspace = true
license.workspace = true
keywords.workspace = true
[dependencies]
gimli.workspace = true
object = "0.36"
memmap2 = "0.9"
anyhow.workspace = true
tracing.workspace = true
thiserror.workspace = true
ghostscope-platform = { path = "../ghostscope-platform" }
ghostscope-protocol = { path = "../ghostscope-protocol" }
# For parallel loading
tokio.workspace = true
futures.workspace = true
num_cpus = "1.0"
# For proc mapping parsing (temporary, will extract from ghostscope-binary)
libc = "0.2"
# For .gnu_debuglink CRC validation
crc32fast = "1.4"
# For home directory expansion in debug search paths
dirs = "5.0"