Skip to content

Commit

Permalink
Bump
Browse files Browse the repository at this point in the history
  • Loading branch information
jedisct1 committed Dec 15, 2023
1 parent 3fbbb3a commit 17299aa
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pake-cpace"
version = "0.1.6"
version = "0.1.7"
authors = ["Frank Denis <github@pureftpd.org>"]
edition = "2018"
description = "A simple implementation of CPace, a balanced PAKE."
Expand All @@ -11,9 +11,14 @@ categories = ["algorithms", "cryptography", "no-std"]
license = "ISC"
readme = "README.md"

[target.'cfg(all(any(target_arch = "wasm32", target_arch = "wasm64"), target_os = "unknown"))'.dependencies]
getrandom = { version = "0.2", optional = false, default-features = false, features = ["js"] }

[target.'cfg(not(all(any(target_arch = "wasm32", target_arch = "wasm64"), target_os = "unknown")))'.dependencies]
getrandom = { version = "0.2", optional = false, default-features = false }

[dependencies]
curve25519-dalek = "4.1"
getrandom = { version = "0.2", default-features = false }
hmac-sha512 = "1.1"

[profile.release]
Expand Down

0 comments on commit 17299aa

Please sign in to comment.