[package]
name = "crossync"
version = "0.1.1"
authors = ["Andrea Frolli dev.sh1zen@outlook.it"]
edition = "2024"
description = "A fast concurrent programming suite for Rust."
license = "Apache-2.0"
repository = "https://github.com/sh1zen/crossync"
documentation = "https://docs.rs/crossync"
readme = "README.md"
keywords = ["atomic", "thread-safe", "concurrent", "no_std", "mutex"]
categories = ["data-structures", "concurrency", "development-tools", "algorithms"]
exclude = [".gitignore", ".github/*"]
homepage = "https://github.com/sh1zen/crossync"
[lib]
name = "crossync"
path = "src/lib.rs"
[dependencies]
crossbeam-utils = "0.8.21"
[dev-dependencies]
criterion = "0.8.1"
[[bench]]
name = "all"
path = "benches/bench.rs"
harness = false
[target.'cfg(any(target_os = "linux", target_os = "android", target_os = "freebsd"))'.dependencies]
libc = "0.2.180"
[target.'cfg(windows)'.dependencies]
windows-sys = { version = "0.61.2", features = ["Win32_System_Threading", "Win32_Foundation", "Win32_System_WindowsProgramming"] }