forked from eminence/procfs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
31 lines (27 loc) · 762 Bytes
/
Cargo.toml
File metadata and controls
31 lines (27 loc) · 762 Bytes
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
[package]
name = "procfs"
version = "0.10.0"
authors = ["Andrew Chin <achin@eminence32.net>"]
repository = "https://github.com/eminence/procfs"
documentation = "https://docs.rs/procfs/"
description = "Interface to the linux procfs pseudo-filesystem"
readme = "README.md"
keywords = ["procfs", "proc", "linux", "process"]
categories = ["os::unix-apis", "filesystem"]
license = "MIT OR Apache-2.0"
edition = "2018"
[features]
default = ["chrono"]
[dependencies]
libc = "0.2"
bitflags = "1"
lazy_static = "1"
chrono = {version = "0.4", optional = true }
byteorder = {version="1", features=["i128"]}
hex = "=0.4.2"
flate2 = "1"
backtrace = { version = "0.3", optional = true }
[dev-dependencies]
procinfo = "0.4.2"
[package.metadata.docs.rs]
all-features = true