From 13285e356377c5c8cd6f0f0d2305ff9e40d17d78 Mon Sep 17 00:00:00 2001 From: iximeow Date: Thu, 6 May 2021 23:30:11 -0700 Subject: swap termion dep for crossterm, simplify Colorization interfaces --- Cargo.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'Cargo.toml') diff --git a/Cargo.toml b/Cargo.toml index f72f8ad..cb49e90 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -7,11 +7,11 @@ keywords = ["disassembly", "disassembler"] license = "0BSD" name = "yaxpeax-arch" repository = "https://git.iximeow.net/yaxpeax-arch/" -version = "0.0.4" +version = "0.0.5" [dependencies] "num-traits" = { version = "0.2", default-features = false } -"termion" = { version = "1.4.0", optional = true } +"crossterm" = { version = "0.19.0", optional = true } "serde" = { version = "1.0", optional = true } "serde_derive" = { version = "1.0", optional = true } @@ -25,6 +25,6 @@ default = ["use-serde", "colors", "address-parse"] # Arch and Arch::Address use-serde = ["serde", "serde_derive"] -colors = ["termion"] +colors = ["crossterm"] address-parse = [] -- cgit v1.1