From 3e1e52f4133284d3c49fa6e5f482108977dcd52f Mon Sep 17 00:00:00 2001 From: gnzlbg Date: Mon, 23 Oct 2017 15:37:41 +0200 Subject: [PATCH] update readme and crates.io badges, categories, etc. (#141) * [readme] badges * [crates.io] add badges, categories, etc. --- library/stdarch/Cargo.toml | 14 +++++++++++--- library/stdarch/README.md | 17 +++++++++++++---- 2 files changed, 24 insertions(+), 7 deletions(-) diff --git a/library/stdarch/Cargo.toml b/library/stdarch/Cargo.toml index b4839270d145..a8ef502ea60f 100644 --- a/library/stdarch/Cargo.toml +++ b/library/stdarch/Cargo.toml @@ -1,15 +1,23 @@ [package] name = "stdsimd" -version = "0.0.2" #:version +version = "0.0.2" authors = ["Andrew Gallant "] description = "Experiments for adding SIMD support to Rust's standard library." documentation = "https://docs.rs/stdsimd" homepage = "https://github.com/BurntSushi/stdsimd" repository = "https://github.com/BurntSushi/stdsimd" readme = "README.md" -keywords = ["std", "simd", "intrinsics", "sse", "avx"] +keywords = ["std", "simd", "intrinsics"] +categories = ["hardware-support", "no-std"] license = "MIT/Apache-2.0" +[badges] +travis-ci = { repository = "BurntSushi/stdsimd" } +appveyor = { repository = "BurntSushi/stdsimd" } +is-it-maintained-issue-resolution = { repository = "BurntSushi/stdsimd" } +is-it-maintained-open-issues = { repository = "BurntSushi/stdsimd" } +maintenance = { status = "experimental" } + [profile.release] debug = true opt-level = 3 @@ -19,7 +27,7 @@ debug = true opt-level = 3 [dev-dependencies] -stdsimd-test = { path = "stdsimd-test" } +stdsimd-test = { version = "0.*", path = "stdsimd-test" } cupid = "0.3" [features] diff --git a/library/stdarch/README.md b/library/stdarch/README.md index 0cd2d1d22cbb..4d0f42c3a140 100644 --- a/library/stdarch/README.md +++ b/library/stdarch/README.md @@ -1,11 +1,10 @@ stdsimd ======= -Experimental support for SIMD destined to eventually become part of Rust's -standard library +[![Travis-CI Status]][travis] [![Appveyor Status]][appveyor] [![Latest Version]][crates.io] [![docs]][docs.rs] -[![Build Status](https://travis-ci.org/rust-lang-nursery/stdsimd.svg?branch=master)](https://travis-ci.org/rust-lang-nursery/stdsimd) -[![Build status](https://ci.appveyor.com/api/projects/status/ix74qhmilpibn00x/branch/master?svg=true)](https://ci.appveyor.com/project/rust-lang-libs/stdsimd/branch/master) +> Experimental support for SIMD destined to eventually become part of Rust's +> standard library This is a **work in progress**. @@ -36,3 +35,13 @@ the Apache License (Version 2.0), with portions covered by various BSD-like licenses. See LICENSE-APACHE, and LICENSE-MIT for details. + + +[travis]: https://travis-ci.org/rust-lang-nursery/stdsimd +[Travis-CI Status]: https://travis-ci.org/rust-lang-nursery/stdsimd.svg?branch=master +[appveyor]: https://ci.appveyor.com/project/rust-lang-libs/stdsimd/branch/master +[Appveyor Status]: https://ci.appveyor.com/api/projects/status/ix74qhmilpibn00x/branch/master?svg=true +[Latest Version]: https://img.shields.io/crates/v/stdsimd.svg +[crates.io]: https://crates.io/crates/stdsimd +[docs]: https://docs.rs/stdsimd/badge.svg +[docs.rs]: https://docs.rs/stdsimd/0.0.2/stdsimd/