Skip to content

Commit

Permalink
prune unnecessary features
Browse files Browse the repository at this point in the history
  • Loading branch information
miguelraz committed Feb 13, 2025
1 parent 923d14e commit a46df1f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion exercise-solutions/async-chat/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ version = "0.1.0"
edition = "2021"

[dependencies]
tokio = { version = "1", features = ["full"] }
tokio = { version = "1", features = ["io-std", "io-util", "macros", "net", "rt-multi-thread", "signal", "sync"] }
2 changes: 1 addition & 1 deletion exercise-solutions/shapes-part-3/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ name = "shapes-part-3"
version = "0.1.0"

[dependencies]
num = "0.4.0"
num = { version = "0.4.0", default-features = false }
2 changes: 1 addition & 1 deletion exercise-solutions/urls-match-result/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ name = "urls_match_result"
version = "0.1.0"

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

0 comments on commit a46df1f

Please sign in to comment.