# 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 = "rust-cc" version = "0.3.0" authors = ["fren_gor "] description = "A cycle collector for Rust programs" readme = "README.md" keywords = [ "cycle-collector", "garbage-collector", "gc", "reference-counting", "memory", ] categories = [ "memory-management", "no-std", ] license = "MIT OR Apache-2.0" repository = "https://github.com/frengor/rust-cc" [package.metadata.docs.rs] all-features = true rustdoc-args = [ "--cfg", "doc_auto_cfg", "--generate-link-to-definition", ] [[bench]] name = "bench" harness = false required-features = [ "std", "derive", ] [dependencies.rust-cc-derive] version = "=0.3.0" optional = true [dependencies.slotmap] version = "1.0" optional = true [dependencies.thiserror] version = "1.0" default-features = false package = "thiserror-core" [dev-dependencies.iai-callgrind] version = "=0.7.3" [dev-dependencies.rand] version = "0.8.3" [dev-dependencies.test-case] version = "3.3.1" [dev-dependencies.trybuild] version = "1.0.85" [features] auto-collect = [] cleaners = [ "dep:slotmap", "weak-ptr", ] default = [ "auto-collect", "finalization", "derive", "std", ] derive = ["dep:rust-cc-derive"] finalization = [] nightly = [] pedantic-debug-assertions = [] std = [ "slotmap?/std", "thiserror/std", ] weak-ptr = []