Skip to content

Commit 70de794

Browse files
author
Stjepan Glavina
committed
Bump to v2.1.3
1 parent fc0a843 commit 70de794

File tree

3 files changed

+6
-1
lines changed

3 files changed

+6
-1
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# Version 2.1.3
2+
3+
- Add `#![forbid(unsafe_code)]`.
4+
15
# Version 2.1.2
26

37
- Update dependencies.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "async-lock"
3-
version = "2.1.2"
3+
version = "2.1.3"
44
authors = ["Stjepan Glavina <stjepang@gmail.com>"]
55
edition = "2018"
66
description = "Async synchronization primitives"

src/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
//! * [`RwLock`] - a reader-writer lock, allowing any number of readers or a single writer.
88
//! * [`Semaphore`] - limits the number of concurrent operations.
99
10+
#![forbid(unsafe_code)]
1011
#![warn(missing_docs, missing_debug_implementations, rust_2018_idioms)]
1112

1213
#[doc(inline)]

0 commit comments

Comments
 (0)