
Co-authored-by: Dominik Maier <domenukk@gmail.com> Co-authored-by: Dongjia "toka" Zhang <tokazerkje@outlook.com>
23 lines
506 B
TOML
23 lines
506 B
TOML
[package]
|
|
name = "libnoaslr"
|
|
version = "0.15.3"
|
|
edition = "2024"
|
|
|
|
[lib]
|
|
name = "noaslr"
|
|
path = "src/lib.rs"
|
|
crate-type = ["dylib"]
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
anyhow = { version = "1.0", default-features = false }
|
|
ctor = "0.4.0"
|
|
nix = { version = "0.29", default-features = false, features = [
|
|
"process",
|
|
"personality",
|
|
] }
|
|
|
|
[target.'cfg(any(target_os = "freebsd", target_os = "netbsd"))'.dependencies]
|
|
libc = "0.2"
|