-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathCargo.toml
More file actions
71 lines (67 loc) · 1.82 KB
/
Cargo.toml
File metadata and controls
71 lines (67 loc) · 1.82 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
[workspace]
resolver = "2"
members = [
"ghostscope-compiler",
"ghostscope-loader",
"ghostscope-ui",
"ghostscope-protocol",
"ghostscope-platform",
"ghostscope",
"ghostscope-dwarf",
"ghostscope-process",
"bins/dwarf-tool",
"e2e-tests",
]
default-members = [
"ghostscope-compiler",
"ghostscope-loader",
"ghostscope-ui",
"ghostscope-protocol",
"ghostscope-platform",
"ghostscope",
"ghostscope-dwarf",
"ghostscope-process",
"bins/dwarf-tool",
]
[workspace.package]
version = "0.1.3"
edition = "2021"
rust-version = "1.88"
authors = ["swananan <[email protected]>"]
license = "GPL-3.0-only"
description = "GhostScope brings DWARF-aware eBPF tracing to user-space binaries with a printf-like experience."
readme = "README.md"
repository = "https://github.com/swananan/ghostscope"
homepage = "https://github.com/swananan/ghostscope"
documentation = "https://github.com/swananan/ghostscope#readme"
keywords = ["ebpf", "gdb", "dwarf", "debugger"]
categories = ["development-tools::debugging", "development-tools::profiling"]
[workspace.dependencies]
log = "0.4.22"
tracing-subscriber = { version = "0.3.19", features = ["env-filter"] }
anyhow = "1.0.93"
tracing = "0.1.41"
tracing-log = "0.2.0"
thiserror = "2.0.12"
tokio = { version = "1.0", features = ["full"] }
chrono = { version = "0.4", features = ["serde", "clock"] }
futures = "0.3"
futures-util = "0.3"
crossterm = { version = "0.28", features = ["event-stream"] }
clap = { version = "4.0", features = ["derive"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
toml = "0.8"
dirs = "5.0"
object = "0.36"
gimli = "0.33.0"
aya = "0.13.1"
aya-obj = "0.2.1"
aya-ebpf-bindings = "0.1.1"
aya-build = "0.1.2"
# Test dependencies
tempfile = "3.8"
lazy_static = "1.4"
serial_test = "3.0"
criterion = "0.5"
scopeguard = "1.2"