Update Cargo.toml project definitions.
This commit is contained in:
parent
f69e2afc44
commit
e65056d86b
11
Cargo.toml
11
Cargo.toml
@ -1,7 +1,16 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "names"
|
name = "names"
|
||||||
version = "0.1.0"
|
version = "0.9.0"
|
||||||
authors = ["Fletcher Nichol <fnichol@nichol.ca>"]
|
authors = ["Fletcher Nichol <fnichol@nichol.ca>"]
|
||||||
|
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]
|
[lib]
|
||||||
name = "names"
|
name = "names"
|
||||||
|
6
cli/Cargo.lock
generated
6
cli/Cargo.lock
generated
@ -1,9 +1,9 @@
|
|||||||
[root]
|
[root]
|
||||||
name = "names-cli"
|
name = "names-cli"
|
||||||
version = "0.1.0"
|
version = "0.9.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"clap 1.4.0 (git+https://github.com/kbknapp/clap-rs?rev=40104af)",
|
"clap 1.4.0 (git+https://github.com/kbknapp/clap-rs?rev=40104af)",
|
||||||
"names 0.1.0",
|
"names 0.9.0",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
@ -36,7 +36,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "names"
|
name = "names"
|
||||||
version = "0.1.0"
|
version = "0.9.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"rand 0.3.11 (registry+https://github.com/rust-lang/crates.io-index)",
|
"rand 0.3.11 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
]
|
]
|
||||||
|
@ -1,7 +1,13 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "names-cli"
|
name = "names-cli"
|
||||||
version = "0.1.0"
|
version = "0.9.0"
|
||||||
authors = ["Fletcher Nichol <fnichol@nichol.ca>"]
|
authors = ["Fletcher Nichol <fnichol@nichol.ca>"]
|
||||||
|
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]]
|
[[bin]]
|
||||||
name = "names"
|
name = "names"
|
||||||
|
Loading…
Reference in New Issue
Block a user