changeset 1:d4a954e8992a

Add more info to Cargo.toml
author Lewin Bormann <lbo@spheniscida.de>
date Sat, 02 Sep 2017 19:39:59 +0200
parents 95fcaa3adf3b
children c21d8b7b61cb
files Cargo.toml example/Cargo.toml
diffstat 2 files changed, 6 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/Cargo.toml	Sat Sep 02 19:35:18 2017 +0200
+++ b/Cargo.toml	Sat Sep 02 19:39:59 2017 +0200
@@ -1,7 +1,11 @@
 [package]
-name = "time_test"
+name = "time-test"
 version = "0.1.0"
 authors = ["Lewin Bormann <lewin@lewin-bormann.info>"]
+license = "MIT"
+description = "Measure how long your test cases take with one simple macro."
+repository = "https://bitbucket.org/dermesser/time_test"
+documentation = "https://docs.rs/time-test"
 
 [dependencies]
 time = "0.1"
--- a/example/Cargo.toml	Sat Sep 02 19:35:18 2017 +0200
+++ b/example/Cargo.toml	Sat Sep 02 19:39:59 2017 +0200
@@ -4,4 +4,4 @@
 authors = ["Lewin Bormann <lewin@lewin-bormann.info>"]
 
 [dependencies]
-time_test = { path = "../" }
+time-test = { path = "../" }