rslock 0.7.4

Implementation of the distributed locking mechanism built on top of Async Redis
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 = "2021"
name = "rslock"
version = "0.7.4"
authors = [
    "Jan-Erik Rediger <badboy@archlinux.us>",
    "Romain Boces <bocesr@gmail.com>",
    "hexcowboy <hex@cowboy.dev",
]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Implementation of the distributed locking mechanism built on top of Async Redis"
homepage = "https://github.com/hexcowboy/redlock-async-rs"
readme = "README.md"
keywords = [
    "distributed",
    "locking",
    "dls",
    "redis",
    "redlock",
]
license = "BSD-3-Clause"
repository = "https://github.com/hexcowboy/redlock-async-rs"

[features]
async-std-comp = ["redis/async-std-rustls-comp"]
default = ["async-std-comp"]
tokio-comp = ["redis/tokio-rustls-comp"]

[lib]
name = "rslock"
path = "src/lib.rs"

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

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

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

[dependencies.futures]
version = "0.3.31"

[dependencies.rand]
version = "0.9.2"

[dependencies.redis]
version = "0.32.7"

[dependencies.thiserror]
version = "2.0.18"

[dependencies.tokio]
version = "1.49.0"
features = [
    "rt",
    "time",
]

[dev-dependencies.anyhow]
version = "^1.0.101"

[dev-dependencies.once_cell]
version = "^1.21.3"

[dev-dependencies.testcontainers]
version = "^0.23.3"

[dev-dependencies.tokio]
version = "^1.49.0"
features = [
    "macros",
    "rt-multi-thread",
]

[dev-dependencies.tokio-test]
version = "^0.4.5"