update readme and crates.io badges, categories, etc. (#141)

* [readme] badges

* [crates.io] add badges, categories, etc.
This commit is contained in:
gnzlbg 2017-10-23 15:37:41 +02:00 committed by Alex Crichton
parent 6f134c3dfa
commit 3e1e52f413
2 changed files with 24 additions and 7 deletions

View file

@ -1,15 +1,23 @@
[package]
name = "stdsimd"
version = "0.0.2" #:version
version = "0.0.2"
authors = ["Andrew Gallant <jamslam@gmail.com>"]
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]

View file

@ -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/