linux-support 0.0.10

Comprehensive Linux support for namespaces, cgroups, processes, scheduling, parsing /proc, parsing /sys, signals, hyper threads, CPUS, NUMA nodes, unusual file descriptors, PCI devices and much, much more
# This file is part of linux-support. It is subject to the license terms in the COPYRIGHT file found in the top-level directory of this distribution and at https://raw.githubusercontent.com/lemonrock/linux-support/master/COPYRIGHT. No part of linux-support, including this file, may be copied, modified, propagated, or distributed except according to the terms contained in the COPYRIGHT file.
# Copyright © 2020 The developers of linux-support. See the COPYRIGHT file in the top-level directory of this distribution and at https://raw.githubusercontent.com/lemonrock/linux-support/master/COPYRIGHT.


[package]
name = "linux-support"
description = "Comprehensive Linux support for namespaces, cgroups, processes, scheduling, parsing /proc, parsing /sys, signals, hyper threads, CPUS, NUMA nodes, unusual file descriptors, PCI devices and much, much more"
keywords = ["linux", "namespaces", "sysfs", "pci", "numa"]
categories = ["external-ffi-bindings", "filesystem", "hardware-support", "os::unix-apis"]
license = "AGPL-3.0"
authors = ["Raphael Cohn <raphael.cohn@stormmq.com>"]
homepage = "https://github.com/lemonrock/linux-support"
repository = "https://github.com/lemonrock/linux-support.git"
exclude = ["*"]
include = ["README.md", "LICENSE", "COPYRIGHT", "src/**/*.rs", "Cargo.toml", "rustfmt.toml", "clippy.toml"]
readme = "README.md"
publish = true
edition = '2018'
version = "0.0.10"

[dependencies]
const_fn_assert = "^0.1.2"
static_assertions = "^1.1"

[features]
default = []
libseccomp = []

[target.'cfg(target_os = "linux")'.dependencies]
arrayvec = { version = "^0.5.1", features = ["array-sizes-33-128", "array-sizes-129-255", "serde"] }
bitflags = "^1.0"
bit-vec = "^0.6.1"
chrono = { version = "^0.4.11", features = ["serde"] }
crossbeam-queue = { version = "^0.2.3" }
either = { version = "^1.5.3", features = ["serde"] }
errno = "^0.2"
lazy_static = "^1.4.0"
libc = { version = "^0.2.69", features = ["const-extern-fn", "extra_traits", "std"] }
libc-extra = "^0.3.2"
likely = { version = "^0.2.0", path = "../likely" }
indexmap = { version = "^1.5.0", features = ["serde-1"] }
maplit = "^1.0.2"
memchr = "^2.3.3"
memoffset = { version = "^0.5.6", features = ["unstable_const"] }
num-traits = { version = "^0.2.14", features = ["std", "i128"] }
raw-cpuid = "^8.1.1"
serde = { version = "^1.0", features = ["derive", "rc"] }
serde_bytes = "^0.11.3"
serde-big-array = "^0.3.0"
streaming-iterator = "^0.1.5"
strum = "^0.19.2"
strum_macros = "^0.19.2"
swiss-army-knife = { version = "^0.0.2", path = "../swiss-army-knife" }
terminate = { version = "^0.2.1", path = "../terminate" }