Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: RustCrypto/universal-hashes
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 4e41879029bf4a86cc2eb495173ad41a7671fc5b
Choose a base ref
..
head repository: RustCrypto/universal-hashes
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 452a2ffa6e47023d2df674c1972749d06ea9a7cc
Choose a head ref
Showing with 8 additions and 15 deletions.
  1. +8 −14 .travis.yml
  2. +0 −1 poly1305/Cargo.toml
22 changes: 8 additions & 14 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -27,34 +27,28 @@ matrix:
- name: "Rust: 1.34.0 (polyval)"
rust: 1.34.0
env: RUSTFLAGS="-Ctarget-cpu=sandybridge -Ctarget-feature=+sse2,+sse4.1"
script: cd polyval && cargo test --no-default-features --release --tests
script: cd polyval && cargo test --release --tests
- name: "Rust: stable (polyval)"
rust: stable
env: RUSTFLAGS="-Ctarget-cpu=sandybridge -Ctarget-feature=+sse2,+sse4.1"
script: cd polyval && cargo test --no-default-features --release --tests
script: cd polyval && cargo test --release --tests

# no_std build
- name: "Rust: stable (thumbv7em-none-eabihf)"
rust: stable
install:
- rustup target add thumbv7em-none-eabihf
script:
- cargo build --all --exclude polyval --target thumbv7em-none-eabihf --release
install: rustup target add thumbv7em-none-eabihf
script: cargo build --all --target thumbv7em-none-eabihf --release
- name "Rust: nightly (benches)"
rust: nightly
script: cargo build --all-features --benches
- name: rustfmt
rust: stable
install:
- rustup component add rustfmt
script:
- cargo fmt --all -- --check
install: rustup component add rustfmt
script: cargo fmt --all -- --check
- name: clippy
rust: stable
install:
- rustup component add clippy
script:
- cargo clippy --all
install: rustup component add clippy
script: cargo clippy --all

branches:
only:
1 change: 0 additions & 1 deletion poly1305/Cargo.toml
Original file line number Diff line number Diff line change
@@ -16,7 +16,6 @@ universal-hash = { version = "0.2", default-features = false }
zeroize = { version = "0.10", optional = true, default-features = false }

[features]
default = []
std = ["universal-hash/std"]

[badges]