This repository has been archived on 2025-05-08. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
key-rwlock/Cargo.toml
2023-09-20 10:42:38 +02:00

15 lines
490 B
TOML

[package]
name = "key-rwlock"
version = "0.1.2"
description = "Simple library for keyed asynchronous reader-writer locks"
license = "MIT"
documentation = "https://docs.rs/key-rwlock/"
repository = "https://github.com/Defelo/key-rwlock"
edition = "2021"
rust-version = "1.63.0"
[dependencies]
tokio = { version = "1.27.0", default-features = false, features = ["sync"] }
[dev-dependencies]
tokio = { version = "1.27.0", default-features = false, features = ["rt-multi-thread", "macros"] }