Skip to content

Commit 727f7a5

Browse files
kpcyrdklittlepage
authored andcommitted
Remove useless deprecation annotation
rust-lang/rust#78626
1 parent 9cb492a commit 727f7a5

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

src/newtype_macros.rs

-4
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,6 @@ macro_rules! newtype_traits (($newtype:ident, $len:expr) => (
8686
/// by using `x[a..b] == y[a..b]`. This will open up for timing attacks
8787
/// when comparing for example authenticator tags. Because of this only
8888
/// use the comparison functions exposed by the sodiumoxide API.
89-
#[deprecated(since="0.2.2", note="Use the `AsRef` or `AsMut` implementation instead")]
9089
impl ::std::ops::Index<::std::ops::Range<usize>> for $newtype {
9190
type Output = [u8];
9291
fn index(&self, _index: ::std::ops::Range<usize>) -> &[u8] {
@@ -99,7 +98,6 @@ macro_rules! newtype_traits (($newtype:ident, $len:expr) => (
9998
/// by using `x[..b] == y[..b]`. This will open up for timing attacks
10099
/// when comparing for example authenticator tags. Because of this only
101100
/// use the comparison functions exposed by the sodiumoxide API.
102-
#[deprecated(since="0.2.2", note="Use the `AsRef` or `AsMut` implementation instead")]
103101
impl ::std::ops::Index<::std::ops::RangeTo<usize>> for $newtype {
104102
type Output = [u8];
105103
fn index(&self, _index: ::std::ops::RangeTo<usize>) -> &[u8] {
@@ -112,7 +110,6 @@ macro_rules! newtype_traits (($newtype:ident, $len:expr) => (
112110
/// by using `x[a..] == y[a..]`. This will open up for timing attacks
113111
/// when comparing for example authenticator tags. Because of this only
114112
/// use the comparison functions exposed by the sodiumoxide API.
115-
#[deprecated(since="0.2.2", note="Use the `AsRef` or `AsMut` implementation instead")]
116113
impl ::std::ops::Index<::std::ops::RangeFrom<usize>> for $newtype {
117114
type Output = [u8];
118115
fn index(&self, _index: ::std::ops::RangeFrom<usize>) -> &[u8] {
@@ -125,7 +122,6 @@ macro_rules! newtype_traits (($newtype:ident, $len:expr) => (
125122
/// by using `x[] == y[]`. This will open up for timing attacks
126123
/// when comparing for example authenticator tags. Because of this only
127124
/// use the comparison functions exposed by the sodiumoxide API.
128-
#[deprecated(since="0.2.2", note="Use the `AsRef` or `AsMut` implementation instead")]
129125
impl ::std::ops::Index<::std::ops::RangeFull> for $newtype {
130126
type Output = [u8];
131127
fn index(&self, _index: ::std::ops::RangeFull) -> &[u8] {

0 commit comments

Comments
 (0)