From 8c52b6b313db691f2903105caf8ac97b16747dcc Mon Sep 17 00:00:00 2001 From: Timon_Post Date: Wed, 15 May 2019 18:15:38 +0200 Subject: [PATCH] 0.9.4 --- Cargo.toml | 14 +++++++------- crossterm_cursor/Cargo.toml | 4 ++-- crossterm_input/Cargo.toml | 6 +++--- crossterm_screen/Cargo.toml | 4 ++-- crossterm_style/Cargo.toml | 4 ++-- crossterm_terminal/Cargo.toml | 6 +++--- crossterm_utils/Cargo.toml | 2 +- 7 files changed, 20 insertions(+), 20 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 6d62f45..5ef402b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "crossterm" -version = "0.9.3" +version = "0.9.4" authors = ["T. Post"] description = "An crossplatform terminal library for manipulating terminals." repository = "https://github.com/TimonPost/crossterm" @@ -32,12 +32,12 @@ members = [ ] [dependencies] -crossterm_screen = { optional = true, path = "./crossterm_screen" } -crossterm_cursor = { optional = true, path = "./crossterm_cursor" } -crossterm_terminal = { optional = true, path = "./crossterm_terminal" } -crossterm_style = { optional = true, path = "./crossterm_style" } -crossterm_input = { optional = true, path = "./crossterm_input" } -crossterm_utils = { optional = false, path = "./crossterm_utils" } +crossterm_screen = { optional = true, version = "0.2.2" } +crossterm_cursor = { optional = true, version = "0.2.2" } +crossterm_terminal = { optional = true, version = "0.2.3" } +crossterm_style = { optional = true, version = "0.3.2" } +crossterm_input = { optional = true, version = "0.3.4" } +crossterm_utils = { optional = false, version = "0.2.2" } [lib] name = "crossterm" diff --git a/crossterm_cursor/Cargo.toml b/crossterm_cursor/Cargo.toml index af62e9f..cf6c3b9 100644 --- a/crossterm_cursor/Cargo.toml +++ b/crossterm_cursor/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "crossterm_cursor" -version = "0.2.1" +version = "0.2.2" authors = ["T. Post"] description = "A cross-platform library for moving the terminal cursor." repository = "https://github.com/TimonPost/crossterm" @@ -16,4 +16,4 @@ winapi = { version = "0.3.7", features = ["wincon","winnt","minwindef"] } crossterm_winapi = "0.1.2" [dependencies] -crossterm_utils = { path = "../crossterm_utils" } \ No newline at end of file +crossterm_utils = "0.2.2" \ No newline at end of file diff --git a/crossterm_input/Cargo.toml b/crossterm_input/Cargo.toml index 7990e3d..79c43f4 100644 --- a/crossterm_input/Cargo.toml +++ b/crossterm_input/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "crossterm_input" -version = "0.3.3" +version = "0.3.4" authors = ["T. Post"] description = "A cross-platform library for reading userinput." repository = "https://github.com/TimonPost/crossterm" @@ -19,5 +19,5 @@ crossterm_winapi = "0.1.2" libc = "0.2.51" [dependencies] -crossterm_utils = {path = "../crossterm_utils"} -crossterm_screen = {path = "../crossterm_screen"} \ No newline at end of file +crossterm_utils = "0.2.2" +crossterm_screen = "0.2.2" \ No newline at end of file diff --git a/crossterm_screen/Cargo.toml b/crossterm_screen/Cargo.toml index c1c059a..6df98c6 100644 --- a/crossterm_screen/Cargo.toml +++ b/crossterm_screen/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "crossterm_screen" -version = "0.2.1" +version = "0.2.2" authors = ["T. Post"] description = "A cross-platform library for raw and alternate screen." repository = "https://github.com/TimonPost/crossterm" @@ -12,7 +12,7 @@ readme = "README.md" edition = "2018" [dependencies] -crossterm_utils = {path = "../crossterm_utils"} +crossterm_utils = "0.2.2" [target.'cfg(windows)'.dependencies] winapi = { version = "0.3.7", features = ["minwindef", "wincon"] } diff --git a/crossterm_style/Cargo.toml b/crossterm_style/Cargo.toml index 86d3e97..4bee39a 100644 --- a/crossterm_style/Cargo.toml +++ b/crossterm_style/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "crossterm_style" -version = "0.3.1" +version = "0.3.2" authors = ["T. Post"] description = "A cross-platform library styling the terminal output." repository = "https://github.com/TimonPost/crossterm" @@ -16,4 +16,4 @@ winapi = { version = "0.3.7", features = ["wincon"] } crossterm_winapi = "0.1.2" [dependencies] -crossterm_utils = {path = "../crossterm_utils"} \ No newline at end of file +crossterm_utils = "0.2.2" \ No newline at end of file diff --git a/crossterm_terminal/Cargo.toml b/crossterm_terminal/Cargo.toml index 380f51b..9af1401 100644 --- a/crossterm_terminal/Cargo.toml +++ b/crossterm_terminal/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "crossterm_terminal" -version = "0.2.2" +version = "0.2.3" authors = ["T. Post"] description = "A cross-platform library for doing terminal related actions." repository = "https://github.com/TimonPost/crossterm" @@ -18,5 +18,5 @@ crossterm_winapi = "0.1.2" libc = "0.2.51" [dependencies] -crossterm_utils = {path = "../crossterm_utils"} -crossterm_cursor = {path = "../crossterm_cursor"} \ No newline at end of file +crossterm_utils = "0.2.2" +crossterm_cursor = "0.2.2" \ No newline at end of file diff --git a/crossterm_utils/Cargo.toml b/crossterm_utils/Cargo.toml index 4a10a00..e29c448 100644 --- a/crossterm_utils/Cargo.toml +++ b/crossterm_utils/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "crossterm_utils" -version = "0.2.1" +version = "0.2.2" authors = ["T. Post"] description = "Common logic used by the crossterm crates." repository = "https://github.com/TimonPost/crossterm"