bun_alloc 0.2.0

A Rust-native programmable browser runtime built on Servo and SpiderMonkey
Documentation
[package]
name = "bun_alloc"
# 0.1.1 (2026-08-19): explicit version — breaks workspace inheritance
# so this patch release ships alone. W4 stable dual-mode
# (allocator_api/thread_local under bao_nightly cfg) + ast_alloc/core_alloc
# api2 surface bun_collections 0.1.1 builds against.
# 0.1.2 (2026-08-19): +pub adopt_std_box zero-copy Global adopter
# (71afadb4 companion).
# 0.2.0 (2026-09-20): BREAKING — mimalloc face retired (#45, e2542105):
# MimallocArena/c_thunks removed, Arena = StdArena (libc default_alloc
# backend), bun_mimalloc_sys dependency dropped. Dependents follow at 0.2.
version = "0.2.0"
edition.workspace = true
description.workspace = true
license.workspace = true
repository.workspace = true
readme = "README.md"

[lib]
path = "lib.rs"

[lints]
workspace = true

[dependencies]
bun_opaque.workspace = true
phf.workspace = true
bstr.workspace = true
scopeguard.workspace = true
libc.workspace = true


allocator-api2.workspace = true

bun_wyhash.workspace = true
bumpalo.workspace = true