-
Notifications
You must be signed in to change notification settings - Fork 24
/
Cargo.toml
34 lines (31 loc) · 911 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
[package]
name = "sysctl"
version = "0.6.0"
authors = [
"Johannes Lundberg <[email protected]>",
"Ivan Temchenko <[email protected]>",
"Fabian Freyer <[email protected]>"
]
description = "Simplified interface to libc::sysctl"
keywords = ["sysctl", "sysfs", "freebsd", "macos", "linux"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/johalun/sysctl-rs"
documentation = "https://docs.rs/sysctl"
include = ["src/**/*", "LICENSE-MIT", "README.md", "CHANGELOG.md"]
[package.metadata.docs.rs]
targets = [
"i686-unknown-freebsd",
"i686-unknown-linux-gnu",
"x86_64-apple-darwin",
"x86_64-unknown-freebsd",
"x86_64-unknown-linux-gnu",
]
[dependencies]
enum-as-inner = "0.6.0"
libc = "^0.2.34"
byteorder = "^1.4.3"
thiserror = "^1.0.32"
bitflags = "^2"
[target.'cfg(any(target_os = "android", target_os = "linux"))'.dependencies]
walkdir = "^2.2.8"