File tree Expand file tree Collapse file tree 4 files changed +8
-3
lines changed Expand file tree Collapse file tree 4 files changed +8
-3
lines changed Original file line number Diff line number Diff line change 22
33Entries are listed in reverse chronological order.
44
5+ ## 2.4.0
6+
7+ * Add new ` ConstantTimeGreater ` and ` ConstantTimeLess ` traits, as well
8+ as implementations for unsigned integers, by @isislovecruft .
9+
510## 2.3.0
611
712* Add ` impl ConstantTimeEq for Choice ` by @tarcieri .
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ name = "subtle"
44# - update CHANGELOG
55# - update html_root_url
66# - update README if necessary by semver
7- version = " 2.3 .0"
7+ version = " 2.4 .0"
88authors = [
" Isis Lovecruft <[email protected] >" ,
99 " Henry de Valence <[email protected] >" ]
1010readme = " 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`
77type is a wrapper around a ` u8 ` that holds a ` 0 ` or ` 1 ` .
88
99``` toml
10- subtle = " 2.3 "
10+ subtle = " 2.4 "
1111```
1212
1313This crate represents a “best-effort” attempt, since side-channels
Original file line number Diff line number Diff line change 1313#![ cfg_attr( feature = "nightly" , doc( include = "../README.md" ) ) ]
1414#![ cfg_attr( feature = "nightly" , deny( missing_docs) ) ]
1515#![ doc( html_logo_url = "https://doc.dalek.rs/assets/dalek-logo-clear.png" ) ]
16- #![ doc( html_root_url = "https://docs.rs/subtle/2.3 .0" ) ]
16+ #![ doc( html_root_url = "https://docs.rs/subtle/2.4 .0" ) ]
1717
1818//! Note that docs will only build on nightly Rust until
1919//! [RFC 1990 stabilizes](https://github.com/rust-lang/rust/issues/44732).
You can’t perform that action at this time.
0 commit comments