-
Notifications
You must be signed in to change notification settings - Fork 8
/
Cargo.toml
36 lines (29 loc) · 955 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
[package]
name = "yaui"
version = "0.1.0"
edition = "2021"
description = "Yet Another Unix Injector with support for Android/Android Emulator i686/x64/arm/aarch64"
repository = "https://github.com/ohchase/yaui"
homepage = "https://github.com/ohchase/yaui/"
documentation = "https://docs.rs/yaui"
readme = "README.md"
license = "MIT"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[[bin]]
name = "yaui"
required-features = ["cli"]
[features]
default = ["cli"]
cli = ["clap", "tracing-subscriber", "sysinfo"]
[target.'cfg(target_os = "android")'.dependencies]
tracing-android = "0.2.0"
[dependencies]
clap = { version = "4.5.19", features = ["derive"], optional = true }
tracing-subscriber = { version = "0.3.18", optional = true }
sysinfo = { version = "0.29.11", optional = true }
ptrace-do = "0.1.1"
thiserror = "1.0.40"
tracing = "0.1.40"
libc = "0.2.159"
proc-maps = "0.3.1"
page_size = "0.6.0"