Skip to content

Commit

Permalink
Add badges to readme
Browse files Browse the repository at this point in the history
  • Loading branch information
TomGillen committed Mar 9, 2019
1 parent 7f0ebeb commit 145969f
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "legion"
version = "0.1.0"
version = "0.1.1"
description = "High performance entity component system (ECS) library"
authors = ["Thomas Gillen <thomas.gillen@googlemail.com>"]
repository = "https://github.com/TomGillen/legion"
Expand All @@ -11,7 +11,7 @@ license = "MIT"
edition = "2018"

[badges]
travis-ci = { repository = "https://travis-ci.org/TomGillen/legion", branch = "master" }
travis-ci = { repository = "TomGillen/legion", branch = "master" }

[features]
default = ["par-iter", "serde"]
Expand Down
9 changes: 8 additions & 1 deletion readme.md
@@ -1,6 +1,13 @@
# Legion

[![Build Status](https://travis-ci.org/TomGillen/legion.svg?branch=master)](https://travis-ci.org/TomGillen/legion)
[![Build Status][build_img]][build_lnk] [![Crates.io][crates_img]][crates_lnk] [![Docs.rs][doc_img]][doc_lnk]

[build_img]: https://img.shields.io/travis/TomGillen/legion/master.svg
[build_lnk]: https://travis-ci.org/TomGillen/legion
[crates_img]: https://img.shields.io/crates/v/legion.svg
[crates_lnk]: https://crates.io/crates/legion
[doc_img]: https://docs.rs/legion/badge.svg
[doc_lnk]: https://docs.rs/legion

Legion aims to be a feature rich high performance ECS library for Rust game projects with minimal boilerplate.

Expand Down

0 comments on commit 145969f

Please sign in to comment.