Skip to content

Commit 5ce6371

Browse files
committed
Bumped version number.
1 parent bbcfc01 commit 5ce6371

File tree

3 files changed

+5
-6
lines changed

3 files changed

+5
-6
lines changed

Cargo.toml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "bc-crypto"
3-
version = "0.3.4"
3+
version = "0.4.0"
44
edition = "2021"
55
description = "A uniform API for cryptographic primitives used in Blockchain Commons projects"
66
authors = ["Blockchain Commons"]
@@ -12,14 +12,13 @@ categories = ["cryptography"]
1212
documentation = "https://docs.rs/bc-crypto"
1313

1414
[dependencies]
15-
bc-rand = "^0.1.0"
15+
bc-rand = "^0.2.0"
1616
sha2 = "^0.10.6"
1717
hmac = "^0.12.1"
1818
pbkdf2 = "^0.12.1"
1919
hkdf = "^0.12.3"
2020
crc32fast = "^1.3.2"
2121
chacha20poly1305 = "^0.10.1"
22-
#k256 = {version = "^0.13.1", default-features = false, features = ["ecdsa", "arithmetic"]}
2322
secp256k1 = "^0.27.0"
2423
x25519-dalek = {version = "2.0.0-rc.2", features = ["static_secrets"]}
2524
thiserror = "^1.0.48"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727

2828
```toml
2929
[dependencies]
30-
bc-crypto = "0.3.4"
30+
bc-crypto = "0.4.0"
3131
```
3232

3333
## Related Projects

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/bc-crypto/0.3.4")]
1+
#![doc(html_root_url = "https://docs.rs/bc-crypto/0.4.0")]
22
#![warn(rust_2018_idioms)]
33

44
//! # Introduction
@@ -24,7 +24,7 @@
2424
//!
2525
//! ```toml
2626
//! [dependencies]
27-
//! bc-crypto = "0.3.4"
27+
//! bc-crypto = "0.4.0"
2828
//! ```
2929
3030
pub const CRC32_SIZE: usize = 4;

0 commit comments

Comments
 (0)