Files
bdwgc-rust/Cargo.toml
T
2026-09-24 18:54:03 -07:00

31 lines
725 B
TOML

[package]
name = "bdwgc-alloc"
version = "0.6.13"
edition = "2024"
description = "impl GlobalAlloc for bdwgc"
documentation = "https://bdwgc.github.io/bdwgc-rust/bdwgc_alloc/"
repository = "https://github.com/raviqqe/bdwgc-alloc"
license = "MIT"
categories = ["api-bindings", "memory-management", "no-std", "no-std::no-alloc"]
[workspace]
resolver = "3"
members = ["examples/*"]
[dependencies]
libc = "0.2.186"
[build-dependencies]
autotools = { version = "0.2.7", optional = true }
cmake = { version = "0.1.58", optional = true }
[features]
default = ["autotools"]
[lints.clippy]
alloc_instead_of_core = "deny"
dbg_macro = "deny"
missing_const_for_fn = "deny"
std_instead_of_alloc = "deny"
std_instead_of_core = "deny"