sys_alloc 0.1.0

Low-level system allocator primitives
Documentation
[dependencies.libc]
version = "0.2"

[dev-dependencies.tempfile]
version = "3.8"

[lib]
name = "sys_alloc"
path = "src/lib.rs"

[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"

[package]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["memory-management", "rust-patterns"]
description = "Low-level system allocator primitives"
edition = "2021"
keywords = ["garbage-collection", "gc", "memory", "smart-pointer"]
license = "MIT OR Apache-2.0"
name = "sys_alloc"
readme = "README.md"
repository = "https://github.com/XuHaoJun/rudo"
rust-version = "1.84"
version = "0.1.0"

[target."cfg(windows)".dependencies.windows-sys]
features = ["Win32_System_Memory", "Win32_System_SystemInformation", "Win32_Foundation"]
version = "0.52"