Skip to content

Commit 4db03aa

Browse files
committed
remove const_panic dependency
Resolves #75
1 parent 8daf659 commit 4db03aa

File tree

2 files changed

+2
-5
lines changed

2 files changed

+2
-5
lines changed

Cargo.toml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "ringbuffer"
3-
version = "0.11.1"
3+
version = "0.12.0"
44
authors = [
55
"Victor Roest <[email protected]>",
66
"Jonathan Dönszelmann <[email protected]>",
@@ -13,9 +13,6 @@ keywords = ["ring", "cyclic", "circular", "buffer", "no-std"]
1313
categories = ["data-structures"]
1414
license = "MIT"
1515

16-
[dependencies]
17-
const_panic = "0.2"
18-
1916
[dev-dependencies]
2017
criterion = "0.1.2"
2118

src/ringbuffer_trait.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ pub trait RingBufferRead<T>: RingBuffer<T> {
110110
/// for every different index passed in. See the exact requirements
111111
/// in the safety comment on the next function of the mutable Iterator
112112
/// implementation, since these safety guarantees are necessary for
113-
/// [`iter_mut`] to work
113+
/// iter_mut to work
114114
pub unsafe trait RingBufferExt<T>:
115115
RingBuffer<T>
116116
+ RingBufferRead<T>

0 commit comments

Comments
 (0)