[package]
edition = "2024"
name = "crossync"
version = "0.1.2"
authors = ["Andrea Frolli dev.sh1zen@outlook.it"]
build = false
exclude = [
".gitignore",
".github/*",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A fast concurrent programming suite for Rust."
homepage = "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",
]
license = "Apache-2.0"
repository = "https://github.com/sh1zen/crossync"
[lib]
name = "crossync"
path = "src/lib.rs"
[[bench]]
name = "all"
path = "benches/bench.rs"
harness = false
[[bench]]
name = "bench_array"
path = "benches/bench_array.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.8.2"
[target.'cfg(any(target_os = "linux", target_os = "android", target_os = "freebsd"))'.dependencies.libc]
version = "0.2.185"
[target."cfg(windows)".dependencies.windows-sys]
version = "0.61.2"
features = [
"Win32_System_Threading",
"Win32_Foundation",
"Win32_System_WindowsProgramming",
]