Skip to content

Commit

Permalink
Merge pull request #57 from paolobarbolini/bump-deps
Browse files Browse the repository at this point in the history
Bump base64 to 0.13 and getrandom to 0.2
  • Loading branch information
Keats authored Oct 25, 2020
2 parents 02a4b9f + 87f8d8b commit 5152a04
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,15 @@ edition = "2018"

[features]
default = ["std"]
std = ["base64/std"]
std = ["getrandom/std", "base64/std", "byteorder/std"]
alloc = ["base64/alloc"]
wasm-bindgen = ["getrandom/wasm-bindgen"]
stdweb = ["getrandom/stdweb"]
js = ["getrandom/js"]

[dependencies]
blowfish = { version = "0.6", features = ["bcrypt"] }
getrandom = "0.1"
base64 = { version = "0.12.1", default-features = false }
getrandom = "0.2"
base64 = { version = "0.13", default-features = false }
byteorder = { version = "1", default-features = false }

[dev-dependencies]
quickcheck = "0.9.0"
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ for new projects.

## Changelog

* 0.9.0: update base64 to 0.13 and getrandom to 0.2
* 0.8.2: fix no-std build
* 0.8.0: constant time verification for hash, remove custom base64 code from repo and add `std` feature
* 0.7.0: add HashParts::from_str and remove Error::description impl, it's deprecated
Expand Down

0 comments on commit 5152a04

Please sign in to comment.