mirror of
https://github.com/rust-lang-cn/book-cn.git
synced 2025-01-23 07:20:20 +08:00
47 lines
802 B
TOML
47 lines
802 B
TOML
|
[package]
|
||
|
name = "rust-book"
|
||
|
version = "0.0.1"
|
||
|
description = "The Rust Book"
|
||
|
edition = "2018"
|
||
|
|
||
|
[[bin]]
|
||
|
name = "concat_chapters"
|
||
|
path = "tools/src/bin/concat_chapters.rs"
|
||
|
|
||
|
[[bin]]
|
||
|
name = "convert_quotes"
|
||
|
path = "tools/src/bin/convert_quotes.rs"
|
||
|
|
||
|
[[bin]]
|
||
|
name = "lfp"
|
||
|
path = "tools/src/bin/lfp.rs"
|
||
|
|
||
|
[[bin]]
|
||
|
name = "link2print"
|
||
|
path = "tools/src/bin/link2print.rs"
|
||
|
|
||
|
[[bin]]
|
||
|
name = "release_listings"
|
||
|
path = "tools/src/bin/release_listings.rs"
|
||
|
|
||
|
[[bin]]
|
||
|
name = "remove_hidden_lines"
|
||
|
path = "tools/src/bin/remove_hidden_lines.rs"
|
||
|
|
||
|
[[bin]]
|
||
|
name = "remove_links"
|
||
|
path = "tools/src/bin/remove_links.rs"
|
||
|
|
||
|
[[bin]]
|
||
|
name = "remove_markup"
|
||
|
path = "tools/src/bin/remove_markup.rs"
|
||
|
|
||
|
[dependencies]
|
||
|
walkdir = "2.3.1"
|
||
|
docopt = "1.1.0"
|
||
|
serde = "1.0"
|
||
|
regex = "1.3.3"
|
||
|
lazy_static = "1.4.0"
|
||
|
flate2 = "1.0.13"
|
||
|
tar = "0.4.26"
|