[package]
edition = "2024"
name = "lockless-datastructures"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A bunch of lockless datastructures"
homepage = "https://github.com/vighnesh-sawant/lockless-datastructures"
readme = "README.md"
license = "MIT"
repository = "https://github.com/vighnesh-sawant/lockless-datastructures"
[lib]
name = "lockless_datastructures"
crate-type = [
"cdylib",
"rlib",
]
path = "src/lib.rs"
[[bench]]
name = "benchmark"
path = "benches/benchmark.rs"
harness = false
[dependencies.js-sys]
version = "0.3.85"
[dependencies.parking_lot]
version = "0.12.5"
[dependencies.wasm-bindgen]
version = "0.2.108"
[dependencies.web-sys]
version = "0.3.85"
features = [
"Window",
"Document",
"HtmlCanvasElement",
"CanvasRenderingContext2d",
"Element",
"HtmlInputElement",
]
[dev-dependencies.criterion]
version = "0.8.1"
features = ["html_reports"]