-
Notifications
You must be signed in to change notification settings - Fork 6
/
Cargo.toml
39 lines (33 loc) · 1.15 KB
/
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
38
39
[package]
name = "android-logd-logger"
version = "0.4.5-pre"
authors = [
"Felix Obenhuber <[email protected]>",
"Jens Waechtler <[email protected]>",
]
description = "A logging implementation for `log` which directly writes to the Android logd daemon"
edition = "2018"
license = "MIT OR Apache-2.0"
readme = "README.md"
repository = "https://github.com/flxo/android-logd-logger"
homepage = "https://github.com/flxo/android-logd-logger"
documentation = "https://docs.rs/android-logd-logger"
keywords = ["adb", "android", "log", "logcat", "logger"]
[dependencies]
bytes = "1"
env_logger = { version = "0.10", features = ["regex"], default-features = false }
lazy_static = { version = "1.4", optional = true }
log = { version = "0.4", features = ["std"] }
parking_lot = "0.12"
thiserror = "1"
time = { version = "0.3", features = ["formatting", "macros"] }
[target.'cfg(unix)'.dependencies]
libc = "0.2.139"
[target.'cfg(windows)'.dependencies]
winapi = { version = "0.3.9", features = ["processthreadsapi"] }
[target.'cfg(target_os = "redox")'.dependencies]
redox_syscall = "0.4.1"
[features]
default = ["lazy_static"]
[dev-dependencies]
tempfile = "3.3.0"