box-o-sand/rustbook/guessing_game/Cargo.lock

21 lines
453 B
Plaintext
Raw Normal View History

2016-08-31 02:45:37 +00:00
[root]
2016-08-31 02:49:38 +00:00
name = "guessing_game"
2016-08-31 02:45:37 +00:00
version = "0.1.0"
2016-08-31 12:00:15 +00:00
dependencies = [
"rand 0.3.14 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
name = "libc"
version = "0.2.15"
source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
name = "rand"
version = "0.3.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
"libc 0.2.15 (registry+https://github.com/rust-lang/crates.io-index)",
]
2016-08-31 02:45:37 +00:00