cdpt 0.1.0

An automatic, safe, and concurrent garbage collector for Rust
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.95"
name = "cdpt"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = " An automatic, safe, and concurrent garbage collector for Rust"
documentation = "https://docs.rs/cdpt"
readme = "README.md"
keywords = [
    "garbage-collection",
    "gc",
    "concurrency",
    "lock-free",
    "memory",
]
categories = [
    "concurrency",
    "memory-management",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/kaist-cp/cdpt"

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

[features]
tag = []

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

[[example]]
name = "bench"
path = "examples/bench.rs"
required-features = ["tag"]

[[example]]
name = "efrb_tree"
path = "examples/efrb_tree.rs"
required-features = ["tag"]

[[example]]
name = "lists"
path = "examples/lists.rs"
required-features = ["tag"]

[[example]]
name = "natarajan_mittal_tree"
path = "examples/natarajan_mittal_tree.rs"
required-features = ["tag"]

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

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

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

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

[dependencies.arrayvec]
version = "0.7.6"

[dependencies.cdpt-derive]
version = "0.1.0"

[dependencies.cfg-if]
version = "1.0.1"

[dependencies.crossbeam]
version = "0.8.4"

[dependencies.fastrand]
version = "2.3.0"

[dependencies.libc]
version = "0.2.174"

[dependencies.rustc-hash]
version = "2.1.1"

[dependencies.static_assertions]
version = "1.1.0"

[dependencies.windows-sys]
version = "0.60.2"

[dev-dependencies.bitflags]
version = "2.5"

[dev-dependencies.clap]
version = "4"
features = ["derive"]

[target."cfg(unix)".dev-dependencies.tikv-jemalloc-ctl]
version = "0.5"
features = ["use_std"]

[target."cfg(unix)".dev-dependencies.tikv-jemallocator]
version = "0.5"