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: llogiq/bytecount
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: a07a2a4b6713c339e8521aaa757efd872589b0f3
Choose a base ref
..
head repository: llogiq/bytecount
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 50a1a5abf97b614e7561b5559973e356018431cd
Choose a head ref
Showing with 3 additions and 2 deletions.
  1. +1 −1 .travis.yml
  2. +2 −1 README.md
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -2,7 +2,7 @@ language: rust
sudo: false
cache: cargo
rust:
- 1.24.1
- 1.27
- stable
- beta
- nightly
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -64,7 +64,8 @@ RUSTFLAGS="-C target-cpu=native" cargo build --release

The scalar algorithm is explained in depth [here](https://llogiq.github.io/2016/09/27/count.html).

**Note: Versions until 0.4.0 worked with Rust as of 1.20.0. Version 0.5.0 and later requires Rust 1.24.1 or later.**
**Note: Versions until 0.4.0 worked with Rust as of 1.20.0. Version 0.5.0 and later requires Rust 1.26 or later,
and at least 1.27 to use SIMD.**

## License