diff --git a/README.md b/README.md index 438d12e..c1b3efa 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,7 @@ # `simd` -[![Build Status](https://travis-ci.org/hsivonen/simd.svg?branch=master)](https://travis-ci.org/hsivonen/simd) -[![crates.io](https://meritbadge.herokuapp.com/simd)](https://crates.io/crates/simd) -[![docs.rs](https://docs.rs/simd/badge.svg)](https://docs.rs/simd/) +[![crates.io](https://img.shields.io/crates/v/simd.svg)](https://crates.io/crates/simd) +[![docs.rs](https://docs.rs/simd/badge.svg)](https://docs.rs/simd) _This crate no londer builds as of Rust 1.33 nightly_ due to the [removal of compiler features](https://github.com/rust-lang/rust/pull/57416) that this crates depends on. See the [`packed_simd`](https://crates.io/crates/packed_simd) crate instead. diff --git a/examples/fannkuch-redux-nosimd.rs b/examples/fannkuch-redux-nosimd.rs index fa30b22..aff40ac 100644 --- a/examples/fannkuch-redux-nosimd.rs +++ b/examples/fannkuch-redux-nosimd.rs @@ -1,5 +1,5 @@ // The Computer Language Benchmarks Game -// http://benchmarksgame.alioth.debian.org/ +// https://benchmarksgame-team.pages.debian.net/benchmarksgame/ // // contributed by the Rust Project Developers // contributed by TeXitoi diff --git a/examples/nbody-nosimd.rs b/examples/nbody-nosimd.rs index d5f1bb4..6d6f6c9 100644 --- a/examples/nbody-nosimd.rs +++ b/examples/nbody-nosimd.rs @@ -1,5 +1,5 @@ // The Computer Language Benchmarks Game -// http://benchmarksgame.alioth.debian.org/ +// https://benchmarksgame-team.pages.debian.net/benchmarksgame/ // // contributed by the Rust Project Developers // contributed by TeXitoi diff --git a/examples/spectral-norm-nosimd.rs b/examples/spectral-norm-nosimd.rs index 919f9c6..06ff494 100644 --- a/examples/spectral-norm-nosimd.rs +++ b/examples/spectral-norm-nosimd.rs @@ -1,5 +1,5 @@ // The Computer Language Benchmarks Game -// http://benchmarksgame.alioth.debian.org/ +// https://benchmarksgame-team.pages.debian.net/benchmarksgame/ // // contributed by the Rust Project Developers // contributed by TeXitoi