Skip to content

Commit

Permalink
Remove "fs" feature in tokio dependency (#504)
Browse files Browse the repository at this point in the history
Move it to the dev-dependencies only.
  • Loading branch information
azriel91 committed Jan 3, 2023
1 parent d54fb0e commit 51e8597
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ console = { version = "0.15", default-features = false, features = ["ansi-parsin
number_prefix = "0.4"
portable-atomic = "0.3.15"
rayon = { version = "1.1", optional = true }
tokio = { version = "1", optional = true, features = ["fs", "io-util"] }
tokio = { version = "1", optional = true, features = ["io-util"] }
unicode-segmentation = { version = "1", optional = true }
unicode-width = { version = "0.1", optional = true }
vt100 = { version = "0.15.1", optional = true }
Expand All @@ -26,7 +26,7 @@ vt100 = { version = "0.15.1", optional = true }
once_cell = "1"
rand = "0.8"
structopt = "0.3"
tokio = { version = "1", features = ["time", "rt"] }
tokio = { version = "1", features = ["fs", "time", "rt"] }

[features]
default = ["unicode-width", "console/unicode-width"]
Expand Down

0 comments on commit 51e8597

Please sign in to comment.