Skip to content

Commit

Permalink
Get Cargo.toml ready for release.
Browse files Browse the repository at this point in the history
  • Loading branch information
orium committed Nov 17, 2017
1 parent 05ddb34 commit 1663719
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 4 deletions.
24 changes: 20 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,33 @@ description = "Persistent data structures with structural sharing"
version = "0.0.0"
authors = ["Diogo Sousa <[email protected]>"]

# TODO add more properties (see http://doc.crates.io/manifest.html)
homepage = "https://github.com/orium/rpds"
repository = "https://github.com/orium/rpds"
# documentation = "..."
documentation = "https://docs.rs/rpds"
readme = "README.md"

keywords = ["data-structures", "persistent-data-structures", "immutable-data-structures"]
categories = ["data-structures"]
keywords = [
"data-structure",
"data-structures",
"persistent",
"immutable",
]
categories = [
"data-structures",
]

license = "LGPL-3.0"

include = [
"src/**/*.rs",
"Cargo.toml",
"LICENSE",
]

[badges]
travis-ci = { repository = "orium/rpds", branch = "master" }
codecov = { repository = "orium/rpds", branch = "master", service = "github" }

[dev-dependencies]
# TODO This will probably be part of rust in the future (see https://github.com/rust-lang/rust/issues/29553)
bencher = "0.1"
Expand Down
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
[![Build Status (master)](https://travis-ci.org/orium/rpds.svg?branch=master)](https://travis-ci.org/orium/rpds)
[![Code Coverage (master)](https://codecov.io/gh/orium/rpds/branch/master/graph/badge.svg)](https://codecov.io/gh/orium/rpds)
[![crates.io](http://meritbadge.herokuapp.com/rpds)](https://crates.io/crates/rpds)
[![Documentation (latest)](https://docs.rs/rpds/badge.svg)](https://docs.rs/rpds/)
[![LGPLv3.0 licensed](https://img.shields.io/badge/license-LGPLv3-blue.svg)](./LICENSE)



# Rust Persistent Data Structures

Expand Down

0 comments on commit 1663719

Please sign in to comment.