From dce5e7500fd709987f9bf8f3911e4daa61d0ad14 Mon Sep 17 00:00:00 2001 From: Jeremy Soller Date: Tue, 26 Jan 2021 12:41:55 -0700 Subject: [PATCH] 1.5.6 - upgrade redox_syscall to 0.2 --- Cargo.toml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 1e60cac..eb0a2ba 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "termion" -version = "1.5.5" +version = "1.5.6" authors = ["ticki ", "gycos ", "IGI-111 "] description = "A bindless library for manipulating terminals." repository = "https://gitlab.redox-os.org/redox-os/termion" @@ -10,11 +10,11 @@ keywords = ["tty", "color", "terminal", "password", "tui"] exclude = ["target", "CHANGELOG.md", "image.png", "Cargo.lock"] [dependencies] -numtoa = { version = "0.1.0", features = ["std"]} +numtoa = { version = "0.1", features = ["std"]} [target.'cfg(not(target_os = "redox"))'.dependencies] -libc = "0.2.8" +libc = "0.2" [target.'cfg(target_os = "redox")'.dependencies] -redox_syscall = "0.1" +redox_syscall = "0.2" redox_termios = "0.1"