This commit is contained in:
Fletcher Nichol 2015-09-19 11:06:58 -07:00
commit f852f53302
4 changed files with 2186 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
target

41
Cargo.lock generated Normal file
View File

@ -0,0 +1,41 @@
[root]
name = "names"
version = "0.1.0"
dependencies = [
"rand 0.3.11 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
name = "advapi32-sys"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
"winapi 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)",
"winapi-build 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
name = "libc"
version = "0.1.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
name = "rand"
version = "0.3.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
"advapi32-sys 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
"libc 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)",
"winapi 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
name = "winapi"
version = "0.2.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
name = "winapi-build"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"

7
Cargo.toml Normal file
View File

@ -0,0 +1,7 @@
[package]
name = "names"
version = "0.1.0"
authors = ["Fletcher Nichol <fnichol@nichol.ca>"]
[dependencies]
rand = "0.3.0"

2137
src/main.rs Normal file

File diff suppressed because it is too large Load Diff