From 6d3f23b3b3e45de52ba108dc68193bb333487f71 Mon Sep 17 00:00:00 2001 From: Timon_Post Date: Thu, 25 Jul 2019 20:31:45 +0200 Subject: [PATCH] 0.10.0 --- Cargo.toml | 14 +++++++------- crossterm_cursor/Cargo.toml | 6 +++--- crossterm_input/Cargo.toml | 8 ++++---- crossterm_screen/Cargo.toml | 6 +++--- crossterm_style/Cargo.toml | 6 +++--- crossterm_terminal/Cargo.toml | 8 ++++---- crossterm_utils/Cargo.toml | 4 ++-- crossterm_winapi/Cargo.toml | 2 +- 8 files changed, 27 insertions(+), 27 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 2a03d73..5052e89 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "crossterm" -version = "0.9.6" +version = "0.10.0" 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, path = "./crossterm_screen", version = "^0.2" } +crossterm_cursor = { optional = true, path = "./crossterm_cursor", version = "^0.2" } +crossterm_terminal = { optional = true, path = "./crossterm_terminal", version = "^0.2" } +crossterm_style = { optional = true, path = "./crossterm_style", version = "^0.3" } +crossterm_input = { optional = true, path = "./crossterm_input", version = "^0.3" } +crossterm_utils = { optional = false, path = "./crossterm_utils", version = "^0.2"} [lib] name = "crossterm" diff --git a/crossterm_cursor/Cargo.toml b/crossterm_cursor/Cargo.toml index 6508a3d..5ff8e50 100644 --- a/crossterm_cursor/Cargo.toml +++ b/crossterm_cursor/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "crossterm_cursor" -version = "0.2.4" +version = "0.2.5" authors = ["T. Post"] description = "A cross-platform library for moving the terminal cursor." repository = "https://github.com/TimonPost/crossterm" @@ -13,7 +13,7 @@ edition = "2018" [target.'cfg(windows)'.dependencies] winapi = { version = "0.3.7", features = ["wincon","winnt","minwindef"] } -crossterm_winapi = { path="../crossterm_winapi", version = "0.1.4"} +crossterm_winapi = { path="../crossterm_winapi", version = "^0.1"} [dependencies] -crossterm_utils = {path="../crossterm_utils"} \ No newline at end of file +crossterm_utils = { path="../crossterm_utils", version = "^0.2"} \ No newline at end of file diff --git a/crossterm_input/Cargo.toml b/crossterm_input/Cargo.toml index 9f16360..5a4124f 100644 --- a/crossterm_input/Cargo.toml +++ b/crossterm_input/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "crossterm_input" -version = "0.3.6" +version = "0.3.8" authors = ["T. Post"] description = "A cross-platform library for reading userinput." repository = "https://github.com/TimonPost/crossterm" @@ -13,11 +13,11 @@ edition = "2018" [target.'cfg(windows)'.dependencies] winapi = { version = "0.3.7", features = ["winnt", "winuser"] } -crossterm_winapi = { path="../crossterm_winapi", version = "0.1.4"} +crossterm_winapi = { path="../crossterm_winapi", version = "^0.1"} [target.'cfg(unix)'.dependencies] libc = "0.2.51" [dependencies] -crossterm_utils = {path="../crossterm_utils"} -crossterm_screen = {path="../crossterm_screen"} \ No newline at end of file +crossterm_utils = {path="../crossterm_utils", version = "^0.2"} +crossterm_screen = {path="../crossterm_screen", version = "^0.2"} \ No newline at end of file diff --git a/crossterm_screen/Cargo.toml b/crossterm_screen/Cargo.toml index 795290b..258bba6 100644 --- a/crossterm_screen/Cargo.toml +++ b/crossterm_screen/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "crossterm_screen" -version = "0.2.3" +version = "0.2.4" authors = ["T. Post"] description = "A cross-platform library for raw and alternate screen." repository = "https://github.com/TimonPost/crossterm" @@ -12,8 +12,8 @@ readme = "README.md" edition = "2018" [dependencies] -crossterm_utils = {path="../crossterm_utils"} +crossterm_utils = {path="../crossterm_utils", version = "^0.2"} [target.'cfg(windows)'.dependencies] winapi = { version = "0.3.7", features = ["minwindef", "wincon"] } -crossterm_winapi = { path="../crossterm_winapi", version = "0.1.4"} \ No newline at end of file +crossterm_winapi = { path="../crossterm_winapi", version = "^0.1"} \ No newline at end of file diff --git a/crossterm_style/Cargo.toml b/crossterm_style/Cargo.toml index 507b667..d516bcf 100644 --- a/crossterm_style/Cargo.toml +++ b/crossterm_style/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "crossterm_style" -version = "0.3.3" +version = "0.3.4" authors = ["T. Post"] description = "A cross-platform library styling the terminal output." repository = "https://github.com/TimonPost/crossterm" @@ -13,7 +13,7 @@ edition = "2018" [target.'cfg(windows)'.dependencies] winapi = { version = "0.3.7", features = ["wincon"] } -crossterm_winapi = { path="../crossterm_winapi", version = "0.1.4"} +crossterm_winapi = { path="../crossterm_winapi", version = "^0.1"} [dependencies] -crossterm_utils = {path="../crossterm_utils"} \ No newline at end of file +crossterm_utils = {path="../crossterm_utils", version = "^0.2"} \ No newline at end of file diff --git a/crossterm_terminal/Cargo.toml b/crossterm_terminal/Cargo.toml index 5ca9ca6..598dd24 100644 --- a/crossterm_terminal/Cargo.toml +++ b/crossterm_terminal/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "crossterm_terminal" -version = "0.2.4" +version = "0.2.5" authors = ["T. Post"] description = "A cross-platform library for doing terminal related actions." repository = "https://github.com/TimonPost/crossterm" @@ -12,11 +12,11 @@ readme = "README.md" edition = "2018" [target.'cfg(windows)'.dependencies] -crossterm_winapi = { path="../crossterm_winapi", version = "0.1.4"} +crossterm_winapi = { path="../crossterm_winapi", version = "^0.1"} [target.'cfg(unix)'.dependencies] libc = "0.2.51" [dependencies] -crossterm_utils = {path="../crossterm_utils"} -crossterm_cursor = {path="../crossterm_cursor"} \ No newline at end of file +crossterm_utils = {path="../crossterm_utils", version = "^0.2"} +crossterm_cursor = {path="../crossterm_cursor", version = "^0.2"} \ No newline at end of file diff --git a/crossterm_utils/Cargo.toml b/crossterm_utils/Cargo.toml index 2408787..5f1fc95 100644 --- a/crossterm_utils/Cargo.toml +++ b/crossterm_utils/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "crossterm_utils" -version = "0.2.3" +version = "0.2.4" authors = ["T. Post"] description = "Common logic used by the crossterm crates." repository = "https://github.com/TimonPost/crossterm" @@ -12,7 +12,7 @@ readme = "README.md" [target.'cfg(windows)'.dependencies] winapi = { version = "0.3.7", features = ["wincon"] } -crossterm_winapi = { path="../crossterm_winapi", version = "0.1.4"} +crossterm_winapi = { path="../crossterm_winapi", version = "0.1.5"} [target.'cfg(unix)'.dependencies] libc = "0.2.51" \ No newline at end of file diff --git a/crossterm_winapi/Cargo.toml b/crossterm_winapi/Cargo.toml index 0aec43e..ef98011 100644 --- a/crossterm_winapi/Cargo.toml +++ b/crossterm_winapi/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "crossterm_winapi" -version = "0.1.4" +version = "0.1.5" authors = ["T. Post"] description = "An WinApi wrapper that provides some basic simple abstractions aground common WinApi calls" repository = "https://github.com/TimonPost/crossterm_winapi"