rtgc 0.3.0

A simple garbage collector which collects resources dropped on a realtime thread and safely deallocates them on another thread
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
name = "rtgc"
version = "0.3.0"
authors = ["Billy Messenger <billydm@noreply.codeberg.org>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A simple garbage collector which collects resources dropped on a realtime thread and safely deallocates them on another thread"
readme = "README.md"
keywords = [
    "realtime",
    "garbage",
    "collector",
    "gc",
]
categories = [
    "data-structures",
    "multimedia::audio",
    "no-std",
]
license = "MIT"
repository = "https://codeberg.org/BillyDM/rtgc"

[package.metadata.docs.rs]
all-features = true

[features]
bevy_platform = ["dep:bevy_platform"]
default = ["std"]
local_collector = []
std = ["bevy_platform?/std"]
triple_buffer = ["dep:triple_buffer"]

[lib]
name = "rtgc"
path = "src/lib.rs"

[dependencies.bevy_platform]
version = "0.18"
features = ["alloc"]
optional = true
default-features = false

[dependencies.triple_buffer]
version = "8.1"
optional = true