gc-lang 0.2.0

Garbage collector for interpreted-language runtimes.
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"
rust-version = "1.85"
name = "gc-lang"
version = "0.2.0"
authors = ["James Gober <me@jamesgober.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Garbage collector for interpreted-language runtimes."
homepage = "https://github.com/jamesgober/gc-lang"
documentation = "https://docs.rs/gc-lang"
readme = "README.md"
keywords = [
    "language",
    "runtime",
    "gc",
    "garbage-collector",
    "memory",
]
categories = [
    "development-tools",
    "memory-management",
    "no-std",
]
license = "Apache-2.0 OR MIT"
repository = "https://github.com/jamesgober/gc-lang"

[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
    "--cfg",
    "docsrs",
]

[features]
default = ["std"]
std = []

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

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

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

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

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

[[bench]]
name = "bench"
path = "benches/bench.rs"
harness = false

[dependencies]

[dev-dependencies.criterion]
version = "0.5"
features = ["html_reports"]

[dev-dependencies.proptest]
version = "1"

[profile.release]
opt-level = 3
lto = "fat"
codegen-units = 1
panic = "abort"
strip = "symbols"