[[bench]]
harness = false
name = "compare"
path = "benches/compare.rs"
[[bench]]
harness = false
name = "gc_bench"
path = "benches/gc_bench.rs"
[dependencies.parking_lot]
version = "0.12.5"
[dev-dependencies.criterion]
version = "0.7"
[dev-dependencies.dumpster]
version = "1.2.0"
[dev-dependencies.dumpster_derive]
version = "1.1.0"
[[example]]
name = "demo"
path = "examples/demo.rs"
[[example]]
name = "multi_threaded"
path = "examples/multi_threaded.rs"
[[example]]
name = "trace_demo"
path = "examples/trace_demo.rs"
[[example]]
name = "vtable_drop_test"
path = "examples/vtable_drop_test.rs"
[lib]
name = "abfall"
path = "src/lib.rs"
[package]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["memory-management", "concurrency"]
description = "Concurrent tri-color tracing garbage collector for Rust with incremental and concurrent mark-sweep"
documentation = "https://docs.rs/abfall"
edition = "2024"
homepage = "https://github.com/HellButcher/abfall"
keywords = ["garbage-collector", "gc", "concurrency", "memory", "tri-color"]
license = "MIT OR Apache-2.0"
name = "abfall"
readme = "README.md"
repository = "https://github.com/HellButcher/abfall"
rust-version = "1.90"
version = "0.1.0"
[[test]]
name = "gc_functional"
path = "tests/gc_functional.rs"