Skip to content

Commit

Permalink
v0.14.2
Browse files Browse the repository at this point in the history
  • Loading branch information
brycx committed Jun 10, 2019
1 parent f02e0ca commit c4acd7d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "orion"
version = "0.14.1" # Update html_root_url in lib.rs along with this.
version = "0.14.2" # Update html_root_url in lib.rs along with this.
authors = ["brycx <brycx@protonmail.com>"]
description = "Easy and usable rust crypto"
keywords = [ "cryptography", "crypto", "aead", "hash", "mac" ]
Expand All @@ -20,7 +20,7 @@ exclude = [
[dependencies]
subtle = { version = "2.1.0", default-features = false }
zeroize = { version = "0.9.1", default-features = false }
getrandom = { version = "0.1.2", optional = true }
getrandom = { version = "0.1.3", optional = true }

[features]
default = [ "safe_api" ]
Expand All @@ -31,7 +31,7 @@ no_std = [ "subtle/nightly" ]
[dev-dependencies]
hex = "0.3.2"
serde_json = "1.0.39"
quickcheck = "0.8.2"
quickcheck = "0.8.5"

[profile.dev]
opt-level = 1
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
#![deny(overflowing_literals)]
#![deny(missing_docs)]
#![deny(warnings)]
#![doc(html_root_url = "https://docs.rs/orion/0.14.1")]
#![doc(html_root_url = "https://docs.rs/orion/0.14.2")]

#[cfg(feature = "safe_api")]
extern crate getrandom;
Expand Down

0 comments on commit c4acd7d

Please sign in to comment.