@@ -86,7 +86,6 @@ macro_rules! newtype_traits (($newtype:ident, $len:expr) => (
86
86
/// by using `x[a..b] == y[a..b]`. This will open up for timing attacks
87
87
/// when comparing for example authenticator tags. Because of this only
88
88
/// use the comparison functions exposed by the sodiumoxide API.
89
- #[ deprecated( since="0.2.2" , note="Use the `AsRef` or `AsMut` implementation instead" ) ]
90
89
impl :: std:: ops:: Index <:: std:: ops:: Range <usize >> for $newtype {
91
90
type Output = [ u8 ] ;
92
91
fn index( & self , _index: :: std:: ops:: Range <usize >) -> & [ u8 ] {
@@ -99,7 +98,6 @@ macro_rules! newtype_traits (($newtype:ident, $len:expr) => (
99
98
/// by using `x[..b] == y[..b]`. This will open up for timing attacks
100
99
/// when comparing for example authenticator tags. Because of this only
101
100
/// use the comparison functions exposed by the sodiumoxide API.
102
- #[ deprecated( since="0.2.2" , note="Use the `AsRef` or `AsMut` implementation instead" ) ]
103
101
impl :: std:: ops:: Index <:: std:: ops:: RangeTo <usize >> for $newtype {
104
102
type Output = [ u8 ] ;
105
103
fn index( & self , _index: :: std:: ops:: RangeTo <usize >) -> & [ u8 ] {
@@ -112,7 +110,6 @@ macro_rules! newtype_traits (($newtype:ident, $len:expr) => (
112
110
/// by using `x[a..] == y[a..]`. This will open up for timing attacks
113
111
/// when comparing for example authenticator tags. Because of this only
114
112
/// use the comparison functions exposed by the sodiumoxide API.
115
- #[ deprecated( since="0.2.2" , note="Use the `AsRef` or `AsMut` implementation instead" ) ]
116
113
impl :: std:: ops:: Index <:: std:: ops:: RangeFrom <usize >> for $newtype {
117
114
type Output = [ u8 ] ;
118
115
fn index( & self , _index: :: std:: ops:: RangeFrom <usize >) -> & [ u8 ] {
@@ -125,7 +122,6 @@ macro_rules! newtype_traits (($newtype:ident, $len:expr) => (
125
122
/// by using `x[] == y[]`. This will open up for timing attacks
126
123
/// when comparing for example authenticator tags. Because of this only
127
124
/// use the comparison functions exposed by the sodiumoxide API.
128
- #[ deprecated( since="0.2.2" , note="Use the `AsRef` or `AsMut` implementation instead" ) ]
129
125
impl :: std:: ops:: Index <:: std:: ops:: RangeFull > for $newtype {
130
126
type Output = [ u8 ] ;
131
127
fn index( & self , _index: :: std:: ops:: RangeFull ) -> & [ u8 ] {
0 commit comments