[package]
edition = "2021"
name = "rts-alloc"
version = "4.0.0"
authors = ["Anza Maintainers <maintainers@anza.xyz>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Shared memory allocator intended for small frequent allocations"
readme = "README.md"
license = "Apache-2.0"
repository = "https://github.com/anza-xyz/rts-alloc"
[features]
shuttle = ["dep:shuttle"]
[lib]
name = "rts_alloc"
path = "src/lib.rs"
[dependencies.shuttle]
version = "0.8"
optional = true
[target."cfg(unix)".dependencies.libc]
version = "0.2.174"
[target."cfg(windows)".dependencies.windows-sys]
version = "0.59"
features = [
"Win32_Foundation",
"Win32_Security",
"Win32_Storage_FileSystem",
"Win32_System_Memory",
]