declarative_lock 0.1.0

A thread-aware resource locking manager for Rust that enforces declaration-before-locking, guaranteeing deadlock freedom and preventing double-locking by tracking resource usage per thread.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
[package]
name = "declarative_lock"
version = "0.1.0"
edition = "2024"
authors = ["msr1k <msr0210@gmail.com>"]
license = "MIT"
description = """
A thread-aware resource locking manager for Rust that enforces declaration-before-locking, guaranteeing deadlock freedom and preventing double-locking by tracking resource usage per thread.
"""
repository = "https://github.com/msr1k/declarative_lock"
documentation = "https://docs.rs/declarative_lock"
keyword = ["lock", "mutex", "concurrency", "thread", "deadlock", "declarative"]
readme = "README.md"

[dependencies]