aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml.orig
diff options
context:
space:
mode:
Diffstat (limited to 'Cargo.toml.orig')
-rw-r--r--Cargo.toml.orig31
1 files changed, 11 insertions, 20 deletions
diff --git a/Cargo.toml.orig b/Cargo.toml.orig
index 8b1d873..5a78060 100644
--- a/Cargo.toml.orig
+++ b/Cargo.toml.orig
@@ -1,9 +1,9 @@
[package]
name = "nix"
description = "Rust friendly bindings to *nix APIs"
-edition = "2018"
-version = "0.26.2"
-rust-version = "1.56"
+edition = "2021"
+version = "0.27.1"
+rust-version = "1.65"
authors = ["The nix-rust Project Developers"]
repository = "https://github.com/nix-rust/nix"
license = "MIT"
@@ -11,6 +11,7 @@ categories = ["os::unix-apis"]
include = ["src/**/*", "test/**/*", "LICENSE", "README.md", "CHANGELOG.md"]
[package.metadata.docs.rs]
+all-features = true
rustdoc-args = ["--cfg", "docsrs"]
targets = [
"x86_64-unknown-linux-gnu",
@@ -27,23 +28,14 @@ targets = [
]
[dependencies]
-libc = { version = "0.2.137", features = [ "extra_traits" ] }
-bitflags = "1.1"
+libc = { version = "0.2.147", features = ["extra_traits"] }
+bitflags = "2.3.1"
cfg-if = "1.0"
pin-utils = { version = "0.1.0", optional = true }
-static_assertions = "1"
-
-[target.'cfg(not(target_os = "redox"))'.dependencies]
-memoffset = { version = "0.7", optional = true }
+memoffset = { version = "0.9", optional = true }
[features]
-default = [
- "acct", "aio", "dir", "env", "event", "feature", "fs",
- "hostname", "inotify", "ioctl", "kmod", "mman", "mount", "mqueue",
- "net", "personality", "poll", "process", "pthread", "ptrace", "quota",
- "reboot", "resource", "sched", "signal", "socket", "term", "time",
- "ucontext", "uio", "user", "zerocopy",
-]
+default = []
acct = []
aio = ["pin-utils"]
@@ -80,10 +72,9 @@ zerocopy = ["fs", "uio"]
[dev-dependencies]
assert-impl = "0.1"
-lazy_static = "1.4"
parking_lot = "0.12"
rand = "0.8"
-tempfile = "3.3.0"
+tempfile = "3.7.1"
semver = "1.0.7"
[target.'cfg(any(target_os = "android", target_os = "linux"))'.dev-dependencies]
@@ -110,5 +101,5 @@ path = "test/test_mount.rs"
harness = false
[[test]]
-name = "test-ptymaster-drop"
-path = "test/test_ptymaster_drop.rs"
+name = "test-prctl"
+path = "test/sys/test_prctl.rs"