toml update

This commit is contained in:
Timon Post 2019-04-11 00:08:09 +02:00
parent 8dfcf2756b
commit 5e84a6a578
6 changed files with 14 additions and 18 deletions

View File

@ -32,12 +32,12 @@ members = [
] ]
[dependencies] [dependencies]
crossterm_screen = { optional = true, path = "./crossterm_screen" } crossterm_screen = { optional = true, version = "0.2.0" }
crossterm_cursor = { optional = true, path = "./crossterm_cursor" } crossterm_cursor = { optional = true, version = "0.2.0" }
crossterm_terminal = { optional = true, path = "./crossterm_terminal" } crossterm_terminal = { optional = true, version = "0.2.0" }
crossterm_style = { optional = true, path = "./crossterm_style" } crossterm_style = { optional = true, version = "0.3.0" }
crossterm_input = { optional = true, path = "./crossterm_input" } crossterm_input = { optional = true, version = "0.3.0" }
crossterm_utils = { optional = false, path = "./crossterm_utils" } crossterm_utils = { optional = false, version = "0.2.0" }
[lib] [lib]
name = "crossterm" name = "crossterm"

View File

@ -16,8 +16,4 @@ winapi = { version = "0.3.7", features = ["wincon","winnt","minwindef"] }
crossterm_winapi = "0.1.2" crossterm_winapi = "0.1.2"
[dependencies] [dependencies]
crossterm_utils = { path = "../crossterm_utils" } crossterm_utils = "0.2.0"
[[example]]
name = "cursor"
path = "examples/cursor.rs"

View File

@ -19,5 +19,5 @@ crossterm_winapi = "0.1.2"
libc = "0.2.51" libc = "0.2.51"
[dependencies] [dependencies]
crossterm_utils = { path = "../crossterm_utils" } crossterm_utils = "0.2.0"
crossterm_screen = { path = "../crossterm_screen" } crossterm_screen = "0.2.0"

View File

@ -12,7 +12,7 @@ readme = "README.md"
edition = "2018" edition = "2018"
[dependencies] [dependencies]
crossterm_utils = { path = "../crossterm_utils" } crossterm_utils = "0.2.0"
[target.'cfg(windows)'.dependencies] [target.'cfg(windows)'.dependencies]
winapi = { version = "0.3.7", features = ["minwindef", "wincon"] } winapi = { version = "0.3.7", features = ["minwindef", "wincon"] }

View File

@ -16,4 +16,4 @@ winapi = { version = "0.3.7", features = ["wincon"] }
crossterm_winapi = "0.1.2" crossterm_winapi = "0.1.2"
[dependencies] [dependencies]
crossterm_utils = { path = "../crossterm_utils" } crossterm_utils = "0.2.0"

View File

@ -6,7 +6,7 @@ description = "A cross-platform library for doing terminal related actions."
repository = "https://github.com/TimonPost/crossterm" repository = "https://github.com/TimonPost/crossterm"
documentation = "https://docs.rs/crossterm_terminal/" documentation = "https://docs.rs/crossterm_terminal/"
license = "MIT" license = "MIT"
keywords = ["terminal", "clear", "crossplatform", "crossterm", "terminal size"] keywords = ["terminal", "clear", "console", "crossterm", "size"]
exclude = ["target", "Cargo.lock"] exclude = ["target", "Cargo.lock"]
readme = "README.md" readme = "README.md"
edition = "2018" edition = "2018"
@ -18,5 +18,5 @@ crossterm_winapi = "0.1.2"
libc = "0.2.51" libc = "0.2.51"
[dependencies] [dependencies]
crossterm_utils = { path = "../crossterm_utils" } crossterm_utils = "0.2.0"
crossterm_cursor = { path = "../crossterm_cursor" } crossterm_cursor = "0.2.0"