Skip to content

Commit c60b48e

Browse files
authored
prune unnecessary features (#171)
1 parent 923d14e commit c60b48e

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

exercise-solutions/async-chat/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ version = "0.1.0"
44
edition = "2021"
55

66
[dependencies]
7-
tokio = { version = "1", features = ["full"] }
7+
tokio = { version = "1", features = ["io-std", "io-util", "macros", "net", "rt-multi-thread", "signal", "sync"] }

exercise-solutions/shapes-part-3/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ name = "shapes-part-3"
55
version = "0.1.0"
66

77
[dependencies]
8-
num = "0.4.0"
8+
num = { version = "0.4.0", default-features = false }

exercise-solutions/urls-match-result/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ name = "urls_match_result"
55
version = "0.1.0"
66

77
[dependencies]
8-
url = "2"
8+
url = { version = "2", default-features = false }

0 commit comments

Comments
 (0)