Skip to content

Commit f80a345

Browse files
authored
Merge pull request #95 from garbageslam/uprev_generic_array
Uprev generic array to version 0.14
2 parents 109317e + 30e4fb6 commit f80a345

File tree

7 files changed

+9
-9
lines changed

7 files changed

+9
-9
lines changed

.travis.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,16 @@ sudo: required
44

55
matrix:
66
include:
7-
- rust: 1.31.0
7+
- rust: 1.41.0
88
script: cargo test --verbose --all --exclude aead --exclude signature --exclude universal-hash --release
9-
- rust: 1.36.0
9+
- rust: 1.43.0
1010
script: cargo test --verbose --package aead --package signature --package universal-hash --release
1111
- rust: stable
1212
script: cargo test --verbose --all --release
1313
- rust: nightly
1414
script: cargo test --verbose --all --release
1515
# tests if crates can be built with std feature
16-
- rust: 1.31.0
16+
- rust: 1.41.0
1717
script: ./build_std.sh
1818

1919
- env: TARGET=i686-unknown-linux-gnu

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Collection of traits which describe functionality of cryptographic primitives.
1212
| [`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) |
1313

1414
### Minimum Rust version
15-
All crates in this repository support Rust 1.31 or higher unless otherwise noted.
15+
All crates in this repository support Rust 1.41 or higher unless otherwise noted.
1616

1717
In future minimally supported version of Rust can be changed, but it will be done
1818
with the minor version bump.

aead/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ keywords = ["crypto", "encryption"]
1111
categories = ["cryptography", "no-std"]
1212

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

1717
[features]

block-cipher-trait/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ keywords = ["crypto", "block-cipher", "trait"]
1010
categories = ["cryptography", "no-std"]
1111

1212
[dependencies]
13-
generic-array = "0.13"
13+
generic-array = "0.14"
1414
blobby = { version = "0.1", optional = true }
1515

1616
[features]

digest/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ keywords = ["digest", "crypto", "hash"]
1010
categories = ["cryptography", "no-std"]
1111

1212
[dependencies]
13-
generic-array = "0.13"
13+
generic-array = "0.14"
1414
blobby = { version = "0.1", optional = true }
1515

1616
[features]

stream-cipher/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ keywords = ["crypto", "stream-cipher", "trait"]
1010
categories = ["cryptography", "no-std"]
1111

1212
[dependencies]
13-
generic-array = "0.13"
13+
generic-array = "0.14"
1414
blobby = { version = "0.1", optional = true }
1515

1616
[features]

universal-hash/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ categories = ["cryptography", "no-std"]
1111
edition = "2018"
1212

1313
[dependencies]
14-
generic-array = "0.13"
14+
generic-array = "0.14"
1515
subtle = { version = "2", default-features = false }
1616

1717
[features]

0 commit comments

Comments
 (0)