Skip to content

Commit b06ae60

Browse files
authored
Bump poly1305 crate dependency to v0.7; MSRV 1.49+ (#289)
1 parent e00a191 commit b06ae60

5 files changed

Lines changed: 9 additions & 14 deletions

File tree

.github/workflows/xsalsa20poly1305.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
strategy:
2323
matrix:
2424
rust:
25-
- 1.41.0 # MSRV
25+
- 1.49.0 # MSRV
2626
- stable
2727
target:
2828
- thumbv7em-none-eabi
@@ -42,7 +42,7 @@ jobs:
4242
strategy:
4343
matrix:
4444
rust:
45-
- 1.41.0 # MSRV
45+
- 1.49.0 # MSRV
4646
- stable
4747
steps:
4848
- uses: actions/checkout@v1

Cargo.lock

Lines changed: 4 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

chacha20poly1305/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ categories = ["cryptography", "no-std"]
2121
aead = { version = "0.4", default-features = false }
2222
chacha20 = { version = "0.7", features = ["zeroize"], optional = true }
2323
cipher = "0.3"
24-
poly1305 = "0.6"
24+
poly1305 = "0.7"
2525
zeroize = { version = "1", default-features = false }
2626

2727
[dev-dependencies]

xsalsa20poly1305/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ categories = ["cryptography", "no-std"]
1717
[dependencies]
1818
aead = { version = "0.4", default-features = false }
1919
salsa20 = { version = "0.8", features = ["xsalsa20", "zeroize"] }
20-
poly1305 = "0.6"
20+
poly1305 = "0.7"
2121
rand_core = { version = "0.5", optional = true }
2222
subtle = { version = "2", default-features = false }
2323
zeroize = { version = "1", default-features = false }

xsalsa20poly1305/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ dual licensed as above, without any additional terms or conditions.
5050
[docs-image]: https://docs.rs/xsalsa20poly1305/badge.svg
5151
[docs-link]: https://docs.rs/xsalsa20poly1305/
5252
[license-image]: https://img.shields.io/badge/license-Apache2.0/MIT-blue.svg
53-
[rustc-image]: https://img.shields.io/badge/rustc-1.41+-blue.svg
53+
[rustc-image]: https://img.shields.io/badge/rustc-1.49+-blue.svg
5454
[codecov-image]: https://codecov.io/gh/RustCrypto/AEADs/branch/master/graph/badge.svg
5555
[codecov-link]: https://codecov.io/gh/RustCrypto/AEADs
5656
[chat-image]: https://img.shields.io/badge/zulip-join_chat-blue.svg

0 commit comments

Comments
 (0)