forked from howtocodeit/lock_tree
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
19 lines (16 loc) · 700 Bytes
/
Cargo.toml
File metadata and controls
19 lines (16 loc) · 700 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
[package]
name = "lock_tree"
version = "0.1.0"
edition = "2021"
license-file = "LICENSE"
description = "Prevent deadlocks at compile time. A standalone republication of the netstack3 lock-ordering crate, part of Google's Fuchsia OS."
repository = "https://github.com/howtocodeit/lock_tree"
readme = "README.md"
keywords = ["locks", "concurrency", "parallelism", "deadlocks", "lock order"]
categories = ["concurrency", "no-std", "no-std::no-alloc"]
[features]
inherent_associate_types = ["lock_for_derive/inherent_associate_types"]
[dependencies]
lock_for_derive = {path = "lock_for_derive"}
[dev-dependencies]
lock_for_derive = {path = "lock_for_derive", features = ["inherent_associate_types"]}