Skip to content

Commit

Permalink
Merge pull request #95 from garbageslam/uprev_generic_array
Browse files Browse the repository at this point in the history
Uprev generic array to version 0.14
  • Loading branch information
tarcieri committed May 5, 2020
2 parents 109317e + 30e4fb6 commit f80a345
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 9 deletions.
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

0 comments on commit f80a345

Please sign in to comment.