File: Cargo.toml.orig

package info (click to toggle)
rust-sysctl 0.5.5-2
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 216 kB
  • sloc: makefile: 4
file content (34 lines) | stat: -rw-r--r-- 911 bytes parent folder | download
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.5.5"
authors = [
   "Johannes Lundberg <johalun0@gmail.com>",
   "Ivan Temchenko <ivan.temchenko@yandex.ua>",
   "Fabian Freyer <fabian.freyer@physik.tu-berlin.de>"
   ]
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"