summaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
authorMica White <botahamec@gmail.com>2024-12-25 22:49:42 -0500
committerMica White <botahamec@gmail.com>2024-12-26 10:54:31 -0500
commit129c13c21254ca104bddf020170edaca1fb7107d (patch)
treef6904fc15a315d9962c64f30ba73bc73b1969fcf /Cargo.toml
parent311842d28d1fbb6da945f0d98f1655f77a58abf9 (diff)
Implement common traits
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml3
1 files changed, 2 insertions, 1 deletions
diff --git a/Cargo.toml b/Cargo.toml
index b7d06ba..5fb9dbf 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -3,7 +3,7 @@ name = "happylock"
version = "0.3.0"
authors = ["Mica White <botahamec@outlook.com>"]
edition = "2021"
-rust-version = "1.80"
+rust-version = "1.82"
description = "Free deadlock prevention"
documentation = "https://docs.rs/happylock"
readme = "README.md"
@@ -11,6 +11,7 @@ repository = "https://github.com/botahamec/happylock/"
license = "CC0-1.0"
keywords = ["deadlock", "mutex", "rwlock"]
categories = ["concurrency"]
+include = ["src/**/*", "LICENSE", "README.md"]
[dependencies]
lock_api = "0.4"