Skip to content

Commit

Permalink
Update rand to 0.8 and rand_core to 0.6
Browse files Browse the repository at this point in the history
This makes better user experience when targeting wasm.
Closes facebook#101
  • Loading branch information
PaulGrandperrin committed Jan 10, 2021
1 parent ba53089 commit 133f94f
Show file tree
Hide file tree
Showing 2 changed files with 82 additions and 28 deletions.
100 changes: 74 additions & 26 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 8 additions & 2 deletions Cargo.toml
Expand Up @@ -26,7 +26,7 @@ generic-bytes = { version = "0.1.0" }
generic-bytes-derive = { version = "0.1.0" }
hkdf = "0.10.0"
hmac = "0.10.1"
rand_core = "0.5.1"
rand_core = { version = "0.6.0", features = ["getrandom"] }
scrypt = { version = "0.5.0", optional = true }
sha2 = "0.9.2"
subtle = { version = "2.3.0", default-features = false }
Expand All @@ -42,10 +42,16 @@ hex = "0.4.2"
lazy_static = "1.4.0"
serde_json = "1.0.60"
proptest = "0.10.1"
rand = "0.7"
rand = "0.8"
rustyline = "7.0.0"

[[bench]]
name = "oprf"
harness = false
required-features = ["bench"]

# TEMPORARY, DO NOT MERGE
[patch.crates-io]
x25519-dalek = { git = "https://github.com/PaulGrandperrin/x25519-dalek.git", branch="patch-1" }
curve25519-dalek = { git = "https://github.com/PaulGrandperrin/curve25519-dalek.git", branch="patch-1" }
proptest = { git = "https://github.com/PaulGrandperrin/proptest.git", branch="master" }

0 comments on commit 133f94f

Please sign in to comment.