adjective-adjective-animal/Cargo.toml
Fletcher Nichol d9dc0eafbf Inline the word data with a build script.
This gets me back to exactly what I was hoping for: 2 plaintext files
that would be "inlined" into native code which could be statically
built. The build script was the key here. Happy now ;)

Signed-off-by: Fletcher Nichol <fnichol@nichol.ca>
2016-04-29 19:07:14 -06:00

24 lines
577 B
TOML

[package]
name = "names"
version = "0.10.0"
authors = ["Fletcher Nichol <fnichol@nichol.ca>"]
license = "MIT"
readme = "README.md"
documentation = "http://fnichol.github.io/names/names/"
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.
"""
exclude = ["cli"]
build = "build.rs"
[lib]
name = "names"
path = "src/lib.rs"
[dependencies]
rand = "0.3.0"