From 5e84a6a5787b0aa0b62e7130bb9190c3a3de8648 Mon Sep 17 00:00:00 2001 From: Timon Post Date: Thu, 11 Apr 2019 00:08:09 +0200 Subject: [PATCH] toml update --- Cargo.toml | 12 ++++++------ crossterm_cursor/Cargo.toml | 6 +----- crossterm_input/Cargo.toml | 4 ++-- crossterm_screen/Cargo.toml | 2 +- crossterm_style/Cargo.toml | 2 +- crossterm_terminal/Cargo.toml | 6 +++--- 6 files changed, 14 insertions(+), 18 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index cd41c97..11917cf 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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.0" } +crossterm_cursor = { optional = true, version = "0.2.0" } +crossterm_terminal = { optional = true, version = "0.2.0" } +crossterm_style = { optional = true, version = "0.3.0" } +crossterm_input = { optional = true, version = "0.3.0" } +crossterm_utils = { optional = false, version = "0.2.0" } [lib] name = "crossterm" diff --git a/crossterm_cursor/Cargo.toml b/crossterm_cursor/Cargo.toml index bc3e08e..e480495 100644 --- a/crossterm_cursor/Cargo.toml +++ b/crossterm_cursor/Cargo.toml @@ -16,8 +16,4 @@ winapi = { version = "0.3.7", features = ["wincon","winnt","minwindef"] } crossterm_winapi = "0.1.2" [dependencies] -crossterm_utils = { path = "../crossterm_utils" } - -[[example]] -name = "cursor" -path = "examples/cursor.rs" \ No newline at end of file +crossterm_utils = "0.2.0" \ No newline at end of file diff --git a/crossterm_input/Cargo.toml b/crossterm_input/Cargo.toml index 2cc5683..3280f2c 100644 --- a/crossterm_input/Cargo.toml +++ b/crossterm_input/Cargo.toml @@ -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.0" +crossterm_screen = "0.2.0" \ No newline at end of file diff --git a/crossterm_screen/Cargo.toml b/crossterm_screen/Cargo.toml index 5f4bc9b..7cfdfc3 100644 --- a/crossterm_screen/Cargo.toml +++ b/crossterm_screen/Cargo.toml @@ -12,7 +12,7 @@ readme = "README.md" edition = "2018" [dependencies] -crossterm_utils = { path = "../crossterm_utils" } +crossterm_utils = "0.2.0" [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 f6d61d6..39a0c79 100644 --- a/crossterm_style/Cargo.toml +++ b/crossterm_style/Cargo.toml @@ -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.0" \ No newline at end of file diff --git a/crossterm_terminal/Cargo.toml b/crossterm_terminal/Cargo.toml index 5bea6b6..6d8cd52 100644 --- a/crossterm_terminal/Cargo.toml +++ b/crossterm_terminal/Cargo.toml @@ -6,7 +6,7 @@ description = "A cross-platform library for doing terminal related actions." repository = "https://github.com/TimonPost/crossterm" documentation = "https://docs.rs/crossterm_terminal/" license = "MIT" -keywords = ["terminal", "clear", "crossplatform", "crossterm", "terminal size"] +keywords = ["terminal", "clear", "console", "crossterm", "size"] exclude = ["target", "Cargo.lock"] readme = "README.md" edition = "2018" @@ -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.0" +crossterm_cursor = "0.2.0" \ No newline at end of file