sys_alloc 0.8.1

Low-level system allocator primitives
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
rust-version = "1.84"
name = "sys_alloc"
version = "0.8.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.24"

[target."cfg(windows)".dependencies.windows-sys]
version = "0.61"
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"