Skip to content

Commit

Permalink
add readme, complete Cargo.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
h4llow3En committed Apr 13, 2017
1 parent ae410ef commit 0e74e25
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 0 deletions.
11 changes: 11 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,17 @@
name = "tdo-core"
version = "0.1.0"
authors = ["Felix Döring <[email protected]>", "Felix Wittwer <[email protected]>"]
description = "The core of every Rust-based tdo application"

homepage = "https://tdolist.de/tdo"
repository = "https://github.com/tdolist/tdo-core"
documentation = "https://docs.rs/crate/tdo-core"

license = "MIT"
keywords = ["todo", "tdo", "tdolist", "terminal"]
readme = "README.md"

include = [".gitignore", ".travis.yml", "Cargo.toml", "tests/*.rs", "src/*.rs"]

[dependencies]
json = "0.11.6"
Expand Down
17 changes: 17 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# tdo-core

[![license](https://img.shields.io/crates/l/tdo-core.svg)](https://crates.io/crates/tdo-core/)
[![version](https://img.shields.io/crates/v/tdo-core.svg)](https://crates.io/crates/tdo-core/)
[![Build Status](https://travis-ci.org/tdolist/tdo-core.svg?branch=master)](https://travis-ci.org/tdolist/tdo-core)

The core of every Rust-based tdo application.

## Usage
```toml
#Cargo.toml
[dependencies]
tdo-core = "0.1.0"
```
## Documentation

The documentation for this crate can be found [here](https://docs.rs/crate/tdo-core)

0 comments on commit 0e74e25

Please sign in to comment.