rcu_list 0.1.1

a lockless concurrent list implementation
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 = "rcu_list"
version = "0.1.1"
authors = ["Xudong Huang <huangxu008@hotmail.com>"]
build = false
exclude = [
    ".gitignore",
    "benches/**",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "a lockless concurrent list implementation"
homepage = "https://github.com/Xudong-Huang/rcu_list"
documentation = "https://docs.rs/rcu_list"
readme = "README.md"
keywords = [
    "rcu",
    "lockless",
    "atomic",
    "list",
]
categories = [
    "concurrency",
    "data-structures",
    "no-std",
]
license = "LGPL-3.0"
repository = "https://github.com/Xudong-Huang/rcu_list"

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

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

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

[dependencies.crossbeam-utils]
version = "0.8.20"

[dependencies.rcu_cell]
version = "1.1.6"

[dev-dependencies.criterion]
version = "0.3.5"

[dev-dependencies.crossbeam-epoch]
version = "0.9.8"

[dev-dependencies.crossbeam-queue]
version = "0.3.11"

[dev-dependencies.parking_lot]
version = "0.12"

[dev-dependencies.scc]
version = "2.2.5"

[dev-dependencies.seize]
version = "0.4.9"