File tree Expand file tree Collapse file tree 4 files changed +11
-3
lines changed Expand file tree Collapse file tree 4 files changed +11
-3
lines changed Original file line number Diff line number Diff line change 2
2
3
3
Entries are listed in reverse chronological order.
4
4
5
+ ## 2.3.0
6
+
7
+ * Add ` impl ConstantTimeEq for Choice ` by @tarcieri .
8
+ * Add ` impl From<CtOption<T>> for Option<T> ` by @CPerezz . This is useful for
9
+ handling library code that produces ` CtOption ` s in contexts where timing
10
+ doesn't matter.
11
+ * Introduce an MSRV policy.
12
+
5
13
## 2.2.3
6
14
7
15
* Remove the ` nightly ` -only asm-based ` black_box ` barrier in favor of the
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ name = "subtle"
4
4
# - update CHANGELOG
5
5
# - update html_root_url
6
6
# - update README if necessary by semver
7
- version = " 2.2.3 "
7
+ version = " 2.3.0 "
8
8
authors = [" Isis Lovecruft <isis@patternsinthevoid.net>" ,
9
9
" Henry de Valence <hdevalence@hdevalence.ca>" ]
10
10
readme = " README.md"
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ instead of `bool` which are intended to execute in constant-time. The `Choice`
7
7
type is a wrapper around a ` u8 ` that holds a ` 0 ` or ` 1 ` .
8
8
9
9
``` toml
10
- subtle = " 2.2 "
10
+ subtle = " 2.3 "
11
11
```
12
12
13
13
This crate represents a “best-effort” attempt, since side-channels
Original file line number Diff line number Diff line change 13
13
#![ cfg_attr( feature = "nightly" , doc( include = "../README.md" ) ) ]
14
14
#![ cfg_attr( feature = "nightly" , deny( missing_docs) ) ]
15
15
#![ doc( html_logo_url = "https://doc.dalek.rs/assets/dalek-logo-clear.png" ) ]
16
- #![ doc( html_root_url = "https://docs.rs/subtle/2.2.3 " ) ]
16
+ #![ doc( html_root_url = "https://docs.rs/subtle/2.3.0 " ) ]
17
17
18
18
//! Note that docs will only build on nightly Rust until
19
19
//! [RFC 1990 stabilizes](https://github.com/rust-lang/rust/issues/44732).
You can’t perform that action at this time.
0 commit comments