Skip to content

Commit 6a58afa

Browse files
committed
More vulnarabilities in dependencies
1 parent 61bb3ad commit 6a58afa

File tree

2 files changed

+20
-93
lines changed

2 files changed

+20
-93
lines changed

listings/ch02-guessing-game-tutorial/listing-02-06/Cargo.lock

-87
This file was deleted.

second-edition/Cargo.toml

+20-6
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,17 @@
11
[package]
22
name = "rust-book"
33
version = "0.0.1"
4-
authors = ["Steve Klabnik <steve@steveklabnik.com>"]
54
description = "The Rust Book"
5+
edition = "2018"
66

77
[[bin]]
88
name = "concat_chapters"
99
path = "tools/src/bin/concat_chapters.rs"
1010

11+
[[bin]]
12+
name = "convert_quotes"
13+
path = "tools/src/bin/convert_quotes.rs"
14+
1115
[[bin]]
1216
name = "lfp"
1317
path = "tools/src/bin/lfp.rs"
@@ -16,6 +20,14 @@ path = "tools/src/bin/lfp.rs"
1620
name = "link2print"
1721
path = "tools/src/bin/link2print.rs"
1822

23+
[[bin]]
24+
name = "release_listings"
25+
path = "tools/src/bin/release_listings.rs"
26+
27+
[[bin]]
28+
name = "remove_hidden_lines"
29+
path = "tools/src/bin/remove_hidden_lines.rs"
30+
1931
[[bin]]
2032
name = "remove_links"
2133
path = "tools/src/bin/remove_links.rs"
@@ -25,8 +37,10 @@ name = "remove_markup"
2537
path = "tools/src/bin/remove_markup.rs"
2638

2739
[dependencies]
28-
walkdir = "0.1.5"
29-
docopt = "0.6.82"
30-
rustc-serialize = "0.3.19"
31-
regex = "0.1.73"
32-
lazy_static = "0.2.1"
40+
walkdir = "2.3.1"
41+
docopt = "1.1.0"
42+
serde = "1.0"
43+
regex = "1.3.3"
44+
lazy_static = "1.4.0"
45+
flate2 = "1.0.13"
46+
tar = "0.4.26"

0 commit comments

Comments
 (0)