qubit-lock 0.3.2

Lock utilities library providing synchronous, asynchronous, and monitor-based locking primitives
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
rust-version = "1.94"
name = "qubit-lock"
version = "0.3.2"
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 = "Lock utilities library providing synchronous, asynchronous, and monitor-based locking primitives"
homepage = "https://github.com/qubit-ltd/rs-lock"
documentation = "https://docs.rs/qubit-lock"
readme = "README.md"
keywords = [
    "lock",
    "mutex",
    "rwlock",
    "monitor",
    "async",
]
categories = [
    "concurrency",
    "asynchronous",
]
license = "Apache-2.0"
repository = "https://github.com/qubit-ltd/rs-lock"

[lib]
name = "qubit_lock"
path = "src/lib.rs"
doctest = true

[[example]]
name = "clone_test"
path = "examples/clone_test.rs"

[[test]]
name = "mod"
path = "tests/mod.rs"

[dependencies.parking_lot]
version = "0.12"

[dependencies.tokio]
version = "1.5"
features = ["sync"]
default-features = false

[dev-dependencies.tokio]
version = "1.5"
features = [
    "macros",
    "rt-multi-thread",
    "time",
]
default-features = false