crossync 0.0.3

Rust Concurrent Programming Tools.
Documentation
[[bench]]
harness = false
name = "all"
path = "benches/bench.rs"

[[bench]]
name = "bench_hashmap"
path = "benches/bench_hashmap.rs"

[[bench]]
name = "bench_spincell"
path = "benches/bench_spincell.rs"

[[bench]]
name = "bench_vec"
path = "benches/bench_vec.rs"

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

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

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

[package]
authors = ["Andrea Frolli dev.sh1zen@outlook.it"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["data-structures", "concurrency", "development-tools"]
description = "Rust Concurrent Programming Tools."
documentation = "https://docs.rs/crossync"
edition = "2024"
exclude = [".gitignore", ".github/*"]
homepage = "https://github.com/sh1zen/crossync"
keywords = ["no_std", "atomic", "thread-safe", "reference-counted", "fast"]
license = "Apache-2.0"
name = "crossync"
readme = "README.md"
repository = "https://github.com/sh1zen/crossync"
version = "0.0.3"

[target.'cfg(any(target_os = "linux", target_os = "android", target_os = "freebsd"))'.dependencies.libc]
version = "0.2.177"

[target."cfg(windows)".dependencies.windows-sys]
features = ["Win32_System_Threading", "Win32_Foundation", "Win32_System_WindowsProgramming"]
version = "0.61.2"