[package]
edition = "2021"
rust-version = "1.84"
name = "sys_alloc"
version = "0.4.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Low-level system allocator primitives"
readme = "README.md"
keywords = [
"garbage-collection",
"gc",
"memory",
"smart-pointer",
]
categories = [
"memory-management",
"rust-patterns",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/XuHaoJun/rudo"
[lib]
name = "sys_alloc"
path = "src/lib.rs"
[dependencies.libc]
version = "0.2"
[dev-dependencies.tempfile]
version = "3.8"
[target."cfg(windows)".dependencies.windows-sys]
version = "0.52"
features = [
"Win32_System_Memory",
"Win32_System_SystemInformation",
"Win32_Foundation",
]
[lints.clippy]
multiple_crate_versions = "allow"
[lints.clippy.cargo]
level = "warn"
priority = -1
[lints.clippy.nursery]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
unsafe_op_in_unsafe_fn = "warn"