Support no-std (#506)

- **Support `no-std`**
- **Update categories**
This commit is contained in:
Yota Toyama
2025-12-14 23:38:52 -08:00
committed by GitHub
parent 667bba4e3c
commit 46a6cfe93f
2 changed files with 2 additions and 2 deletions

View File

@@ -5,6 +5,7 @@ edition = "2024"
description = "impl GlobalAlloc for bdwgc"
repository = "https://github.com/raviqqe/bdwgc-alloc"
license = "MIT"
categories = ["api-bindings", "memory-management", "no-std", "no-std::no-alloc"]
[dependencies]
libc = "0.2.178"

View File

@@ -1,6 +1,5 @@
#![doc = include_str!("../README.md")]
extern crate alloc;
#![no_std]
mod error;