We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fc0a843 commit 70de794Copy full SHA for 70de794
CHANGELOG.md
@@ -1,3 +1,7 @@
1
+# Version 2.1.3
2
+
3
+- Add `#![forbid(unsafe_code)]`.
4
5
# Version 2.1.2
6
7
- Update dependencies.
Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "async-lock"
-version = "2.1.2"
+version = "2.1.3"
authors = ["Stjepan Glavina <stjepang@gmail.com>"]
edition = "2018"
description = "Async synchronization primitives"
src/lib.rs
@@ -7,6 +7,7 @@
//! * [`RwLock`] - a reader-writer lock, allowing any number of readers or a single writer.
8
//! * [`Semaphore`] - limits the number of concurrent operations.
9
10
+#![forbid(unsafe_code)]
11
#![warn(missing_docs, missing_debug_implementations, rust_2018_idioms)]
12
13
#[doc(inline)]
0 commit comments