-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
bf7f2d7
commit fd348e4
Showing
2 changed files
with
34 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# Changelog | ||
|
||
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. | ||
|
||
### 1.0.1 (2021-06-28) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,16 @@ | ||
[package] | ||
name = "blsttc" | ||
# REMINDER: Update version in `README.md` when incrementing: | ||
version = "0.4.1" | ||
version = "1.0.1" | ||
authors = [ | ||
"Vladimir Komendantskiy <[email protected]>", | ||
"Andreas Fackler <[email protected]>", | ||
"Peter van Nostrand <[email protected]>", | ||
"Andrew Gross <[email protected]>", | ||
"Nick Sanders <[email protected]>", | ||
"Marc Brinkmann <[email protected]>", | ||
"Vladimir Komendantskiy <[email protected]>", | ||
"Andreas Fackler <[email protected]>", | ||
"Peter van Nostrand <[email protected]>", | ||
"Andrew Gross <[email protected]>", | ||
"Nick Sanders <[email protected]>", | ||
"Marc Brinkmann <[email protected]>" | ||
] | ||
categories = ["cryptography"] | ||
keywords = ["pairing", "threshold"] | ||
categories = [ "cryptography" ] | ||
keywords = [ "pairing", "threshold" ] | ||
license = "MIT/Apache-2.0" | ||
readme = "README.md" | ||
repository = "https://github.com/maidsafe/blsttc" | ||
|
@@ -28,14 +27,27 @@ log = "0.4.8" | |
pairing = "0.16.0" | ||
rand = "0.7.3" | ||
rand_chacha = "0.2.2" | ||
serde = { version = "1.0.104", features = ["derive"] } | ||
thiserror = "1.0.22" | ||
tiny-keccak = { version = "2.0.1", features = ["sha3"] } | ||
zeroize = "1.1.0" | ||
|
||
# optional | ||
bincode = { version = "1.2.1", optional = true } | ||
codec = { package = "parity-scale-codec", version = "1.2.0", default-features = false, features = ["derive"], optional = true } | ||
[dependencies.serde] | ||
version = "1.0.104" | ||
features = [ "derive" ] | ||
|
||
[dependencies.tiny-keccak] | ||
version = "2.0.1" | ||
features = [ "sha3" ] | ||
|
||
[dependencies.bincode] | ||
version = "1.2.1" | ||
optional = true | ||
|
||
[dependencies.codec] | ||
package = "parity-scale-codec" | ||
version = "1.2.0" | ||
default-features = false | ||
features = [ "derive" ] | ||
optional = true | ||
|
||
[dev-dependencies] | ||
bincode = "1.2.1" | ||
|
@@ -47,5 +59,5 @@ name = "bench" | |
harness = false | ||
|
||
[features] | ||
use-insecure-test-only-mock-crypto = [] | ||
codec-support = ["codec", "bincode"] | ||
use-insecure-test-only-mock-crypto = [ ] | ||
codec-support = [ "codec", "bincode" ] |