Skip to content

Commit 5152a04

Browse files
authored
Merge pull request #57 from paolobarbolini/bump-deps
Bump base64 to 0.13 and getrandom to 0.2
2 parents 02a4b9f + 87f8d8b commit 5152a04

2 files changed

Lines changed: 6 additions & 5 deletions

File tree

Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,15 @@ edition = "2018"
1212

1313
[features]
1414
default = ["std"]
15-
std = ["base64/std"]
15+
std = ["getrandom/std", "base64/std", "byteorder/std"]
1616
alloc = ["base64/alloc"]
17-
wasm-bindgen = ["getrandom/wasm-bindgen"]
18-
stdweb = ["getrandom/stdweb"]
17+
js = ["getrandom/js"]
1918

2019
[dependencies]
2120
blowfish = { version = "0.6", features = ["bcrypt"] }
22-
getrandom = "0.1"
23-
base64 = { version = "0.12.1", default-features = false }
21+
getrandom = "0.2"
22+
base64 = { version = "0.13", default-features = false }
23+
byteorder = { version = "1", default-features = false }
2424

2525
[dev-dependencies]
2626
quickcheck = "0.9.0"

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ for new projects.
4848

4949
## Changelog
5050

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

0 commit comments

Comments
 (0)