diff --git a/Cargo.toml b/Cargo.toml index d27d42e..dff3ab0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,16 @@ [package] name = "names" -version = "0.1.0" +version = "0.9.0" authors = ["Fletcher Nichol "] +license = "MIT/Apache-2.0" +readme = "README.md" +repository = "https://github.com/fnichol/names.git" +homepage = "https://github.com/fnichol/names.git" +keywords = ["name", "random"] +description = """ +A library to generate random name strings suitable for use in container +instances, project names, application instances, etc. +""" [lib] name = "names" diff --git a/cli/Cargo.lock b/cli/Cargo.lock index a9982ee..65f6722 100644 --- a/cli/Cargo.lock +++ b/cli/Cargo.lock @@ -1,9 +1,9 @@ [root] name = "names-cli" -version = "0.1.0" +version = "0.9.0" dependencies = [ "clap 1.4.0 (git+https://github.com/kbknapp/clap-rs?rev=40104af)", - "names 0.1.0", + "names 0.9.0", ] [[package]] @@ -36,7 +36,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "names" -version = "0.1.0" +version = "0.9.0" dependencies = [ "rand 0.3.11 (registry+https://github.com/rust-lang/crates.io-index)", ] diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 172af21..5c0760b 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -1,7 +1,13 @@ [package] name = "names-cli" -version = "0.1.0" +version = "0.9.0" authors = ["Fletcher Nichol "] +license = "MIT/Apache-2.0" +repository = "https://github.com/fnichol/names.git" +homepage = "https://github.com/fnichol/names.git" +description = """ +A program to generate random names that look like 'used-jellyfish'. +""" [[bin]] name = "names"