-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathCargo.toml
More file actions
47 lines (43 loc) · 1.25 KB
/
Copy pathCargo.toml
File metadata and controls
47 lines (43 loc) · 1.25 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
[package]
name = "lua-perf"
version = "0.2.0"
edition = "2021"
keywords = ["lua", "perf", "lua-perf"]
build = "build.rs"
readme = "README.en.md"
license-file = "LICENSE"
description = "A perf tool for C and Lua hybrid code"
homepage = "https://github.com/findstr/lua-perf"
repository = "https://github.com/findstr/lua-perf"
categories = ["command-line-utilities", "development-tools::profiling"]
documentation = "https://github.com/findstr/lua-perf/blob/main/README.en.md"
exclude = [
"examples/*",
".vscode/*",
]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
libc = "0.2.147"
procfs = "0.18.0"
memmap2 = "0.9.9"
gimli = "0.32"
rustc-demangle = "0.1.21"
regex = "1.11"
iced-x86 = "1.17"
byteorder = "1.4.3"
anyhow = "1.0"
libbpf-rs="0.25.0"
plain = "0.2"
nix = "0.30.1"
tracing = "0.1"
tracing-subscriber = {version = "0.3", features = ["ansi", "env-filter", "fmt"]}
blazesym = "=0.2.1"
goblin = { version = "0.10.4", features = ["elf64"] }
clap = { version = "4.4.6", features = ["derive", "env"] }
clap_derive = "4.4.2"
time = { version = "0.3", features = ["formatting", "local-offset", "macros"]}
lazy_static = "1.4.0"
ctrlc = "3.4.1"
capstone = "0.14.0"
[build-dependencies]
libbpf-cargo = "0.25.0"