From f7292433ea661e21d3fc8441719efa26b89bc9ed Mon Sep 17 00:00:00 2001 From: Alexander Fadeev Date: Mon, 8 May 2023 20:13:15 +0300 Subject: [PATCH] Make `command` bin Windows-compatible (#13) using `crossterm-backend` instead of `termion` --- behavioral/command/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/behavioral/command/Cargo.toml b/behavioral/command/Cargo.toml index 8dc92bc..8939818 100644 --- a/behavioral/command/Cargo.toml +++ b/behavioral/command/Cargo.toml @@ -8,4 +8,4 @@ name = "command" path = "main.rs" [dependencies] -cursive = {version = "0.19", default-features = false, features = ["termion-backend"]} +cursive = {version = "0.20", default-features = false, features = ["crossterm-backend"]}