mirror of
https://github.com/rust-lang-cn/book-cn.git
synced 2025-01-23 07:20:20 +08:00
29 lines
512 B
TOML
29 lines
512 B
TOML
[package]
|
|
name = "rust-book"
|
|
version = "0.0.1"
|
|
authors = ["Steve Klabnik <steve@steveklabnik.com>"]
|
|
description = "The Rust Book"
|
|
|
|
[[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"
|
|
|
|
[dependencies]
|
|
walkdir = "0.1.5"
|
|
docopt = "0.6.82"
|
|
rustc-serialize = "0.3.19"
|
|
regex = "0.1.73"
|
|
lazy_static = "0.2.1"
|