Skip to content

Commit 47a87c8

Browse files
committed
update dependencies
1 parent 59d0fd9 commit 47a87c8

File tree

2 files changed

+3
-10
lines changed

2 files changed

+3
-10
lines changed

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@ keywords = ["cryptography"] # Up to five
1212
categories = ["cryptography"] # https://crates.io/category_slugs
1313

1414
[dependencies]
15-
bc-rand = "^0.4.1"
16-
bc-shamir = "^0.10.0"
15+
bc-rand = { git = "https://github.com/willrnch/bc-rand-rust.git", rev = "4013ca45388a9bc1c8ca822ba09b551886857e31" }
16+
bc-shamir = { git = "https://github.com/willrnch/bc-shamir-rust.git", rev = "df157d1fa4521cb8b1bd2743d27631127fd7a24e" }
1717

1818
thiserror = "^2.0"
1919

2020
[dev-dependencies]
2121
hex-literal = "^0.4.1"
2222
hex = "^0.4.3"
2323
version-sync = "^0.9.0"
24-
rand = "^0.8.5"
24+
rand = "^0.9.2"

src/lib.rs

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -113,13 +113,6 @@ mod tests {
113113
fn fill_bytes(&mut self, _dest: &mut [u8]) {
114114
unimplemented!()
115115
}
116-
117-
fn try_fill_bytes(
118-
&mut self,
119-
_dest: &mut [u8],
120-
) -> std::result::Result<(), rand::Error> {
121-
unimplemented!()
122-
}
123116
}
124117

125118
// Testing purposes only!

0 commit comments

Comments
 (0)