dev: Disable crossterm default features

This commit is contained in:
Arne Beer 2022-11-21 15:05:07 +01:00
parent 7df4a38d65
commit cc64191d40
No known key found for this signature in database
GPG key ID: CC9408F679023B65
2 changed files with 3 additions and 3 deletions

4
Cargo.lock generated
View file

@ -307,9 +307,9 @@ dependencies = [
[[package]] [[package]]
name = "comfy-table" name = "comfy-table"
version = "6.1.2" version = "6.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1090f39f45786ec6dc6286f8ea9c75d0a7ef0a0d3cda674cef0c3af7b307fbc2" checksum = "e621e7e86c46fd8a14c32c6ae3cb95656621b4743a27d0cffedb831d46e7ad21"
dependencies = [ dependencies = [
"crossterm", "crossterm",
"strum", "strum",

View file

@ -65,7 +65,7 @@ clap = { version = "3", features = ["derive", "cargo"] }
clap_complete = "3" clap_complete = "3"
comfy-table = "6" comfy-table = "6"
crossbeam-channel = "0.5" crossbeam-channel = "0.5"
crossterm = "0.25" crossterm = { version = "0.25", default-features = false }
ctrlc = { version = "3", features = ["termination"] } ctrlc = { version = "3", features = ["termination"] }
handlebars = "4" handlebars = "4"
pest = "2" pest = "2"