gc-lite 0.4.2

A simple partitioned garbage collector
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 = "2024"
name = "gc-lite"
version = "0.4.2"
authors = ["John Ray <996351336@qq.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A simple partitioned garbage collector"
readme = "README.md"
keywords = [
    "gc",
    "memory",
]
license = "Apache-2.0"
repository = "https://github.com/nupha/gc-lite"

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

[[example]]
name = "advanced_features"
path = "examples/advanced_features.rs"

[[example]]
name = "basic_usage"
path = "examples/basic_usage.rs"

[[example]]
name = "error_handling"
path = "examples/error_handling.rs"

[[example]]
name = "gc_node_usage"
path = "examples/gc_node_usage.rs"

[[example]]
name = "performance_benchmark"
path = "examples/performance_benchmark.rs"

[[test]]
name = "integration_tests"
path = "tests/integration_tests.rs"

[dependencies.bitflags]
version = "2.0"

[dependencies.gc-lite-macros]
version = "0.1.0"

[dependencies.log]
version = "0.4"

[dependencies.smallvec]
version = "1.15"