2016-08-07 09:27:15 +08:00
|
|
|
[package]
|
|
|
|
name = "rust-book"
|
|
|
|
version = "0.0.1"
|
|
|
|
authors = ["Steve Klabnik <steve@steveklabnik.com>"]
|
|
|
|
description = "The Rust Book"
|
|
|
|
|
2016-10-15 02:42:35 +08:00
|
|
|
[[bin]]
|
|
|
|
name = "concat_chapters"
|
|
|
|
path = "tools/src/bin/concat_chapters.rs"
|
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
name = "lfp"
|
|
|
|
path = "tools/src/bin/lfp.rs"
|
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
name = "link2print"
|
|
|
|
path = "tools/src/bin/link2print.rs"
|
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
name = "remove_links"
|
|
|
|
path = "tools/src/bin/remove_links.rs"
|
|
|
|
|
2016-08-07 09:27:15 +08:00
|
|
|
[dependencies]
|
|
|
|
walkdir = "0.1.5"
|
|
|
|
docopt = "0.6.82"
|
2016-08-11 07:14:25 +08:00
|
|
|
rustc-serialize = "0.3.19"
|
2016-08-16 05:40:12 +08:00
|
|
|
regex = "0.1.73"
|
|
|
|
lazy_static = "0.2.1"
|