Disable unneeded features in deps

This commit is contained in:
mo8it 2024-04-27 04:32:06 +02:00
parent c3a92b1248
commit 12504b01e9
2 changed files with 2 additions and 4 deletions

1
Cargo.lock generated
View file

@ -474,7 +474,6 @@ version = "0.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5d40b221972a1fc5ef4d858a2f671fb34c75983eb385463dff3780eeff6a9d43" checksum = "5d40b221972a1fc5ef4d858a2f671fb34c75983eb385463dff3780eeff6a9d43"
dependencies = [ dependencies = [
"crossbeam-channel",
"log", "log",
"notify", "notify",
] ]

View file

@ -26,7 +26,6 @@ toml_edit = { version = "0.22.12", default-features = false, features = ["parse"
[package] [package]
name = "rustlings" name = "rustlings"
description = "Small exercises to get you used to reading and writing Rust code!" description = "Small exercises to get you used to reading and writing Rust code!"
default-run = "rustlings"
version.workspace = true version.workspace = true
authors.workspace = true authors.workspace = true
repository.workspace = true repository.workspace = true
@ -52,9 +51,9 @@ anyhow = "1.0.82"
clap = { version = "4.5.4", features = ["derive"] } clap = { version = "4.5.4", features = ["derive"] }
crossterm = "0.27.0" crossterm = "0.27.0"
hashbrown = "0.14.3" hashbrown = "0.14.3"
notify-debouncer-mini = "0.4.1" notify-debouncer-mini = { version = "0.4.1", default-features = false }
os_pipe = "1.1.5" os_pipe = "1.1.5"
ratatui = "0.26.2" ratatui = { version = "0.26.2", default-features = false, features = ["crossterm"] }
rustlings-macros = { path = "rustlings-macros", version = "=6.0.0-beta.4" } rustlings-macros = { path = "rustlings-macros", version = "=6.0.0-beta.4" }
serde_json = "1.0.116" serde_json = "1.0.116"
serde.workspace = true serde.workspace = true