summaryrefslogtreecommitdiff
path: root/Cargo.toml.orig
diff options
context:
space:
mode:
Diffstat (limited to 'Cargo.toml.orig')
-rw-r--r--Cargo.toml.orig9
1 files changed, 8 insertions, 1 deletions
diff --git a/Cargo.toml.orig b/Cargo.toml.orig
index c21bd8a..683e69f 100644
--- a/Cargo.toml.orig
+++ b/Cargo.toml.orig
@@ -1,6 +1,6 @@
[package]
name = "lock_api"
-version = "0.4.9"
+version = "0.4.11"
authors = ["Amanieu d'Antras <amanieu@gmail.com>"]
description = "Wrappers to create fully-featured Mutex and RwLock types. Compatible with no_std."
license = "MIT OR Apache-2.0"
@@ -8,6 +8,11 @@ repository = "https://github.com/Amanieu/parking_lot"
keywords = ["mutex", "rwlock", "lock", "no_std"]
categories = ["concurrency", "no-std"]
edition = "2018"
+rust-version = "1.49.0"
+
+[package.metadata.docs.rs]
+all-features = true
+rustdoc-args = ["--cfg", "docsrs", "--generate-link-to-definition"]
[dependencies]
scopeguard = { version = "1.1.0", default-features = false }
@@ -22,5 +27,7 @@ serde = { version = "1.0.126", default-features = false, optional = true }
autocfg = "1.1.0"
[features]
+default = ["atomic_usize"]
nightly = []
arc_lock = []
+atomic_usize = []