forked from benfred/py-spy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
37 lines (34 loc) · 920 Bytes
/
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
[package]
name = "py-spy"
version = "0.2.0"
authors = ["Ben Frederickson <[email protected]>"]
repository = "https://github.com/benfred/py-spy"
homepage = "https://github.com/benfred/py-spy"
description = "Sampling profiler for Python programs "
readme = "README.md"
exclude = ["images/*", "test_programs/*"]
license = "GPL-3.0"
build="build.rs"
[dependencies]
clap = "2"
console = "0.7.1"
ctrlc = "3"
indicatif = "0.11"
env_logger = "0.6"
failure = "0.1.1"
goblin = "0.0.21"
inferno = "0.7.0"
lazy_static = "1.1.0"
libc = "0.2.34"
log = "0.4"
regex = "1"
tempfile = "3.0.3"
proc-maps = "0.1"
memmap = "0.7.0"
cpp_demangle = "0.2.12"
rand = "0.6"
remoteprocess = {path="./remoteprocess", version="0.1.0"}
[target.'cfg(unix)'.dependencies]
termios = "0.3.1"
[target.'cfg(windows)'.dependencies]
winapi = {version = "0.3", features = ["winbase", "consoleapi", "wincon", "handleapi", "timeapi", "processenv" ]}