Skip to content

Commit de2a7eb

Browse files
committed
Working.
1 parent c73aac8 commit de2a7eb

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "sskr"
3-
version = "0.1.0"
3+
version = "0.1.1"
44
edition = "2021"
55
description = "Sharded Secret Key Reconstruction (SSKR) for Rust."
66
authors = ["Blockchain Commons"]
@@ -12,8 +12,8 @@ categories = ["cryptography"]
1212
documentation = "https://docs.rs/sskr"
1313

1414
[dependencies]
15-
bc-crypto = "0.1.0"
16-
bc-shamir = "0.1.0"
15+
bc-crypto = "0.1.1"
16+
bc-shamir = "0.1.1"
1717

1818
[dev-dependencies]
1919
hex-literal = "0.4.1"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Sharded Secret Key Reconstruction (SSKR) is a protocol for splitting a *secret*
1414

1515
```toml
1616
[dependencies]
17-
sskr = "0.1.0"
17+
sskr = "0.1.1"
1818
```
1919

2020
## Specification

src/error.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/// Errors that can occur when using the SSKR library.
2-
#[derive(Debug, PartialEq)]
2+
#[derive(Debug, PartialEq, Eq, Clone)]
33
pub enum Error {
44
/// When combining shares, the provided shares contained a duplicate member index.
55
DuplicateMemberIndex,

src/lib.rs

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

44
//! # Introduction
@@ -9,7 +9,7 @@
99
//!
1010
//! ```toml
1111
//! [dependencies]
12-
//! sskr = "0.1.0"
12+
//! sskr = "0.1.1"
1313
//! ```
1414
//!
1515
//! # Example

0 commit comments

Comments
 (0)