Skip to content

Commit

Permalink
chore(release): 1.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
actions-user authored and MaidSafe-QA committed Jun 28, 2021
1 parent bf7f2d7 commit fd348e4
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 17 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
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)
46 changes: 29 additions & 17 deletions Cargo.toml
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"
Expand All @@ -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"
Expand All @@ -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" ]

0 comments on commit fd348e4

Please sign in to comment.