adjective-adjective-animal/Cargo.toml

24 lines
577 B
TOML
Raw Normal View History

2015-09-19 14:06:58 -04:00
[package]
name = "names"
version = "0.11.0"
2015-09-19 14:06:58 -04:00
authors = ["Fletcher Nichol <fnichol@nichol.ca>"]
2015-09-22 12:08:34 -04:00
license = "MIT"
2015-09-22 11:36:02 -04:00
readme = "README.md"
2015-09-22 12:04:04 -04:00
documentation = "http://fnichol.github.io/names/names/"
2015-09-22 11:36:02 -04:00
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.
"""
2015-09-22 12:25:28 -04:00
exclude = ["cli"]
build = "build.rs"
2015-09-19 14:06:58 -04:00
2015-09-19 16:17:59 -04:00
[lib]
name = "names"
path = "src/lib.rs"
2015-09-19 14:06:58 -04:00
[dependencies]
rand = "0.3.0"