[package]
edition = "2024"
rust-version = "1.94"
name = "qubit-dcl"
version = "0.2.3"
authors = ["Haixing Hu <starfish.hu@gmail.com>"]
build = false
exclude = [
"coverage.sh",
".circleci/*",
"align-ci.sh",
"ci-check.sh",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Reusable double-checked lock executor for Rust lock abstractions"
homepage = "https://github.com/qubit-ltd/rs-dcl"
documentation = "https://docs.rs/qubit-dcl"
readme = "README.md"
keywords = [
"lock",
"double-checked",
"executor",
"concurrency",
]
categories = ["concurrency"]
license = "Apache-2.0"
repository = "https://github.com/qubit-ltd/rs-dcl"
[lib]
name = "qubit_dcl"
path = "src/lib.rs"
doctest = true
[[example]]
name = "double_checked_lock_executor_demo"
path = "examples/double_checked_lock_executor_demo.rs"
[[test]]
name = "mod"
path = "tests/mod.rs"
[dependencies.log]
version = "0.4"
[dependencies.qubit-function]
version = "0.11"
[dependencies.qubit-lock]
version = "0.3"
[dev-dependencies.thiserror]
version = "2.0"