Skip to content

Commit 969f541

Browse files
committed
Align to dependencies. Bump version number.
1 parent ee7678e commit 969f541

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bc-shamir"
3-
version = "0.3.2"
3+
version = "0.3.3"
44
edition = "2021"
55
description = "Shamir's Secret Sharing (SSS) for Rust."
66
authors = ["Blockchain Commons"]
@@ -12,7 +12,7 @@ categories = ["cryptography"]
1212
documentation = "https://docs.rs/bc-shamir"
1313

1414
[dependencies]
15-
bc-rand = "^0.1.0"
15+
bc-rand = "^0.1.2"
1616

1717
# bc-crypto = { path = "../bc-crypto-rust" }
1818
bc-crypto = "^0.3.0"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ This is a pure-Rust implementation of [Shamir's Secret Sharing (SSS)](https://en
1414

1515
```toml
1616
[dependencies]
17-
bc-shamir = "0.3.2"
17+
bc-shamir = "0.3.3"
1818
```
1919
## Related Projects
2020

src/lib.rs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#![doc(html_root_url = "https://docs.rs/bc-shamir/0.3.2")]
1+
#![doc(html_root_url = "https://docs.rs/bc-shamir/0.3.3")]
22
#![warn(rust_2018_idioms)]
33

44
//! ## Introduction
@@ -16,7 +16,7 @@
1616
//!
1717
//! ```toml
1818
//! [dependencies]
19-
//! bc-shamir = "0.3.2"
19+
//! bc-shamir = "0.3.3"
2020
//!```
2121
//!
2222
//! ## Usage
@@ -79,6 +79,7 @@ mod tests {
7979
use bc_rand::RandomNumberGenerator;
8080
use hex_literal::hex;
8181

82+
#[derive(Debug)]
8283
struct FakeRandomNumberGenerator;
8384

8485
impl RandomNumberGenerator for FakeRandomNumberGenerator {

0 commit comments

Comments
 (0)