Skip to content

Commit eef1cd9

Browse files
authored
fix TOML in Cargo.toml
per https://toml.io/en/v1.0.0#inline-table, `No newlines are allowed between the curly braces unless they are valid within a value`. Partially fixes rust-in-action#77 (there's also the "unresolved import `smoltcp::phy::TapInterface`" issue).
1 parent 6ebd519 commit eef1cd9

File tree

1 file changed

+2
-8
lines changed

1 file changed

+2
-8
lines changed

ch8/ch8-mget/Cargo.toml

+2-8
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,6 @@ edition = "2018"
77
[dependencies]
88
clap = "2"
99
rand = "0.7"
10-
smoltcp = {
11-
version = "0.6",
12-
features = ["proto-igmp", "proto-ipv4", "verbose", "log"]
13-
}
14-
trust-dns = {
15-
version = "0.16",
16-
default-features = false
17-
}
10+
smoltcp = {version = "0.6",features = ["proto-igmp", "proto-ipv4", "verbose", "log"]}
11+
trust-dns = {version = "0.16",default-features = false}
1812
url = "2"

0 commit comments

Comments
 (0)