Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Uprev generic array to version 0.14 #95

Merged
merged 2 commits into from
May 5, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,16 @@ sudo: required

matrix:
include:
- rust: 1.31.0
- rust: 1.41.0
script: cargo test --verbose --all --exclude aead --exclude signature --exclude universal-hash --release
- rust: 1.36.0
- rust: 1.43.0
script: cargo test --verbose --package aead --package signature --package universal-hash --release
- rust: stable
script: cargo test --verbose --all --release
- rust: nightly
script: cargo test --verbose --all --release
# tests if crates can be built with std feature
- rust: 1.31.0
- rust: 1.41.0
script: ./build_std.sh

- env: TARGET=i686-unknown-linux-gnu
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Collection of traits which describe functionality of cryptographic primitives.
| [`stream-cipher`](https://en.wikipedia.org/wiki/Stream_cipher) | [![crates.io](https://img.shields.io/crates/v/stream-cipher.svg)](https://crates.io/crates/stream-cipher) | [![Documentation](https://docs.rs/stream-cipher/badge.svg)](https://docs.rs/stream-cipher) |

### Minimum Rust version
All crates in this repository support Rust 1.31 or higher unless otherwise noted.
All crates in this repository support Rust 1.41 or higher unless otherwise noted.

In future minimally supported version of Rust can be changed, but it will be done
with the minor version bump.
Expand Down
2 changes: 1 addition & 1 deletion aead/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ keywords = ["crypto", "encryption"]
categories = ["cryptography", "no-std"]

[dependencies]
generic-array = { version = "0.13", default-features = false }
generic-array = { version = "0.14", default-features = false }
heapless = { version = "0.5", optional = true }

[features]
Expand Down
2 changes: 1 addition & 1 deletion block-cipher-trait/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ keywords = ["crypto", "block-cipher", "trait"]
categories = ["cryptography", "no-std"]

[dependencies]
generic-array = "0.13"
generic-array = "0.14"
blobby = { version = "0.1", optional = true }

[features]
Expand Down
2 changes: 1 addition & 1 deletion digest/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ keywords = ["digest", "crypto", "hash"]
categories = ["cryptography", "no-std"]

[dependencies]
generic-array = "0.13"
generic-array = "0.14"
blobby = { version = "0.1", optional = true }

[features]
Expand Down
2 changes: 1 addition & 1 deletion stream-cipher/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ keywords = ["crypto", "stream-cipher", "trait"]
categories = ["cryptography", "no-std"]

[dependencies]
generic-array = "0.13"
generic-array = "0.14"
blobby = { version = "0.1", optional = true }

[features]
Expand Down
2 changes: 1 addition & 1 deletion universal-hash/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ categories = ["cryptography", "no-std"]
edition = "2018"

[dependencies]
generic-array = "0.13"
generic-array = "0.14"
subtle = { version = "2", default-features = false }

[features]
Expand Down