summaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
authorMica White <botahamec@gmail.com>2024-12-25 17:11:12 -0500
committerMica White <botahamec@gmail.com>2024-12-25 17:11:12 -0500
commitbfdbf20a813bb4b5527a3d6ff4a5c1bac134b466 (patch)
treeb7f1a7bbe5007a6cc47eac875322fbe970a267ea /Cargo.toml
parent3cf1224ccbff36d03e1e210e041eeb29cdfde02b (diff)
Remove once_cell and thread_local dependencies
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml4
1 files changed, 1 insertions, 3 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 4930fb4..b7d06ba 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.65"
+rust-version = "1.80"
description = "Free deadlock prevention"
documentation = "https://docs.rs/happylock"
readme = "README.md"
@@ -13,8 +13,6 @@ keywords = ["deadlock", "mutex", "rwlock"]
categories = ["concurrency"]
[dependencies]
-thread_local = "1"
-once_cell = "1"
lock_api = "0.4"
parking_lot = { version = "0.12", optional = true }
spin = { version = "0.9", optional = true }