-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathCargo.toml
More file actions
29 lines (24 loc) · 824 Bytes
/
Cargo.toml
File metadata and controls
29 lines (24 loc) · 824 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
[package]
name = "userfaultfd"
version = "0.8.1"
authors = ["The Wasmtime Project Developers"]
edition = "2018"
license = "MIT OR Apache-2.0"
description = "Rust bindings for the Linux userfaultfd functionality"
repository = "https://github.com/bytecodealliance/userfaultfd-rs"
readme = "README.md"
[dependencies]
bitflags = "2.4.0"
cfg-if = "^1.0.0"
libc = "0.2.65"
nix = { version = "0.27", features = ["ioctl"] }
thiserror = "1.0.4"
userfaultfd-sys = { path = "userfaultfd-sys", version = "^0.5.0", default-features = false }
[dev-dependencies]
nix = { version = "0.27", features = ["poll", "mman", "feature"] }
[features]
default = ["runtime"]
linux4_14 = ["userfaultfd-sys/linux4_14", "nix/process"]
linux5_7 = ["userfaultfd-sys/linux5_7"]
runtime = ["userfaultfd-sys/runtime"]
static = ["userfaultfd-sys/static"]