toml update
This commit is contained in:
parent
8dfcf2756b
commit
5e84a6a578
12
Cargo.toml
12
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"
|
||||
|
@ -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"
|
||||
crossterm_utils = "0.2.0"
|
@ -19,5 +19,5 @@ crossterm_winapi = "0.1.2"
|
||||
libc = "0.2.51"
|
||||
|
||||
[dependencies]
|
||||
crossterm_utils = { path = "../crossterm_utils" }
|
||||
crossterm_screen = { path = "../crossterm_screen" }
|
||||
crossterm_utils = "0.2.0"
|
||||
crossterm_screen = "0.2.0"
|
@ -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"] }
|
||||
|
@ -16,4 +16,4 @@ winapi = { version = "0.3.7", features = ["wincon"] }
|
||||
crossterm_winapi = "0.1.2"
|
||||
|
||||
[dependencies]
|
||||
crossterm_utils = { path = "../crossterm_utils" }
|
||||
crossterm_utils = "0.2.0"
|
@ -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" }
|
||||
crossterm_utils = "0.2.0"
|
||||
crossterm_cursor = "0.2.0"
|
Loading…
Reference in New Issue
Block a user