[package] name = "userspace-pagefault" version = "0.0.1" edition = "2021" license = "Apache-2.0" homepage = "https://lyquor.xyz" description = "Manage user-allocated virtual memory by handling page faults in user space on *nix platforms." # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] nix = { version = "0.27.1", features = ["mman", "signal", "feature", "fs"] } parking_lot = "0.12.1" rand = "0.8.5" [dev-dependencies] lazy_static = "1.4.0" rand_chacha = "0.3.1"