0.9.5
This commit is contained in:
parent
68792ca103
commit
4fca41d6c5
@ -2,7 +2,6 @@
|
|||||||
language: rust
|
language: rust
|
||||||
rust:
|
rust:
|
||||||
- stable
|
- stable
|
||||||
- nightly
|
|
||||||
|
|
||||||
before_script:
|
before_script:
|
||||||
- export PATH=$PATH:/home/travis/.cargo/bin
|
- export PATH=$PATH:/home/travis/.cargo/bin
|
||||||
|
14
Cargo.toml
14
Cargo.toml
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "crossterm"
|
name = "crossterm"
|
||||||
version = "0.9.4"
|
version = "0.9.5"
|
||||||
authors = ["T. Post"]
|
authors = ["T. Post"]
|
||||||
description = "An crossplatform terminal library for manipulating terminals."
|
description = "An crossplatform terminal library for manipulating terminals."
|
||||||
repository = "https://github.com/TimonPost/crossterm"
|
repository = "https://github.com/TimonPost/crossterm"
|
||||||
@ -32,12 +32,12 @@ members = [
|
|||||||
]
|
]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
crossterm_screen = { optional = true, version = "0.2.2" }
|
crossterm_screen = { optional = true, version = "0.2.3" }
|
||||||
crossterm_cursor = { optional = true, version = "0.2.2" }
|
crossterm_cursor = { optional = true, version = "0.2.3" }
|
||||||
crossterm_terminal = { optional = true, version = "0.2.3" }
|
crossterm_terminal = { optional = true, version = "0.2.4" }
|
||||||
crossterm_style = { optional = true, version = "0.3.2" }
|
crossterm_style = { optional = true, version = "0.3.3" }
|
||||||
crossterm_input = { optional = true, version = "0.3.4" }
|
crossterm_input = { optional = true, version = "0.3.5" }
|
||||||
crossterm_utils = { optional = false, version = "0.2.2" }
|
crossterm_utils = { optional = false, version = "0.2.3" }
|
||||||
|
|
||||||
[lib]
|
[lib]
|
||||||
name = "crossterm"
|
name = "crossterm"
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "crossterm_cursor"
|
name = "crossterm_cursor"
|
||||||
version = "0.2.2"
|
version = "0.2.3"
|
||||||
authors = ["T. Post"]
|
authors = ["T. Post"]
|
||||||
description = "A cross-platform library for moving the terminal cursor."
|
description = "A cross-platform library for moving the terminal cursor."
|
||||||
repository = "https://github.com/TimonPost/crossterm"
|
repository = "https://github.com/TimonPost/crossterm"
|
||||||
@ -13,7 +13,7 @@ edition = "2018"
|
|||||||
|
|
||||||
[target.'cfg(windows)'.dependencies]
|
[target.'cfg(windows)'.dependencies]
|
||||||
winapi = { version = "0.3.7", features = ["wincon","winnt","minwindef"] }
|
winapi = { version = "0.3.7", features = ["wincon","winnt","minwindef"] }
|
||||||
crossterm_winapi = "0.1.2"
|
crossterm_winapi = "0.1.4"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
crossterm_utils = "0.2.2"
|
crossterm_utils = "0.2.3"
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "crossterm_input"
|
name = "crossterm_input"
|
||||||
version = "0.3.4"
|
version = "0.3.5"
|
||||||
authors = ["T. Post"]
|
authors = ["T. Post"]
|
||||||
description = "A cross-platform library for reading userinput."
|
description = "A cross-platform library for reading userinput."
|
||||||
repository = "https://github.com/TimonPost/crossterm"
|
repository = "https://github.com/TimonPost/crossterm"
|
||||||
@ -13,11 +13,11 @@ edition = "2018"
|
|||||||
|
|
||||||
[target.'cfg(windows)'.dependencies]
|
[target.'cfg(windows)'.dependencies]
|
||||||
winapi = { version = "0.3.7", features = ["winnt", "winuser"] }
|
winapi = { version = "0.3.7", features = ["winnt", "winuser"] }
|
||||||
crossterm_winapi = "0.1.2"
|
crossterm_winapi = "0.1.4"
|
||||||
|
|
||||||
[target.'cfg(unix)'.dependencies]
|
[target.'cfg(unix)'.dependencies]
|
||||||
libc = "0.2.51"
|
libc = "0.2.51"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
crossterm_utils = "0.2.2"
|
crossterm_utils = "0.2.3"
|
||||||
crossterm_screen = "0.2.2"
|
crossterm_screen = "0.2.3"
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "crossterm_screen"
|
name = "crossterm_screen"
|
||||||
version = "0.2.2"
|
version = "0.2.3"
|
||||||
authors = ["T. Post"]
|
authors = ["T. Post"]
|
||||||
description = "A cross-platform library for raw and alternate screen."
|
description = "A cross-platform library for raw and alternate screen."
|
||||||
repository = "https://github.com/TimonPost/crossterm"
|
repository = "https://github.com/TimonPost/crossterm"
|
||||||
@ -12,8 +12,8 @@ readme = "README.md"
|
|||||||
edition = "2018"
|
edition = "2018"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
crossterm_utils = "0.2.2"
|
crossterm_utils = "0.2.3"
|
||||||
|
|
||||||
[target.'cfg(windows)'.dependencies]
|
[target.'cfg(windows)'.dependencies]
|
||||||
winapi = { version = "0.3.7", features = ["minwindef", "wincon"] }
|
winapi = { version = "0.3.7", features = ["minwindef", "wincon"] }
|
||||||
crossterm_winapi = "0.1.2"
|
crossterm_winapi = "0.1.4"
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "crossterm_style"
|
name = "crossterm_style"
|
||||||
version = "0.3.2"
|
version = "0.3.3"
|
||||||
authors = ["T. Post"]
|
authors = ["T. Post"]
|
||||||
description = "A cross-platform library styling the terminal output."
|
description = "A cross-platform library styling the terminal output."
|
||||||
repository = "https://github.com/TimonPost/crossterm"
|
repository = "https://github.com/TimonPost/crossterm"
|
||||||
@ -13,7 +13,7 @@ edition = "2018"
|
|||||||
|
|
||||||
[target.'cfg(windows)'.dependencies]
|
[target.'cfg(windows)'.dependencies]
|
||||||
winapi = { version = "0.3.7", features = ["wincon"] }
|
winapi = { version = "0.3.7", features = ["wincon"] }
|
||||||
crossterm_winapi = "0.1.2"
|
crossterm_winapi = "0.1.4"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
crossterm_utils = "0.2.2"
|
crossterm_utils = "0.2.3"
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "crossterm_terminal"
|
name = "crossterm_terminal"
|
||||||
version = "0.2.3"
|
version = "0.2.4"
|
||||||
authors = ["T. Post"]
|
authors = ["T. Post"]
|
||||||
description = "A cross-platform library for doing terminal related actions."
|
description = "A cross-platform library for doing terminal related actions."
|
||||||
repository = "https://github.com/TimonPost/crossterm"
|
repository = "https://github.com/TimonPost/crossterm"
|
||||||
@ -12,11 +12,11 @@ readme = "README.md"
|
|||||||
edition = "2018"
|
edition = "2018"
|
||||||
|
|
||||||
[target.'cfg(windows)'.dependencies]
|
[target.'cfg(windows)'.dependencies]
|
||||||
crossterm_winapi = "0.1.2"
|
crossterm_winapi = "0.1.4"
|
||||||
|
|
||||||
[target.'cfg(unix)'.dependencies]
|
[target.'cfg(unix)'.dependencies]
|
||||||
libc = "0.2.51"
|
libc = "0.2.51"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
crossterm_utils = "0.2.2"
|
crossterm_utils = "0.2.3"
|
||||||
crossterm_cursor = "0.2.2"
|
crossterm_cursor = "0.2.3"
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "crossterm_utils"
|
name = "crossterm_utils"
|
||||||
version = "0.2.2"
|
version = "0.2.3"
|
||||||
authors = ["T. Post"]
|
authors = ["T. Post"]
|
||||||
description = "Common logic used by the crossterm crates."
|
description = "Common logic used by the crossterm crates."
|
||||||
repository = "https://github.com/TimonPost/crossterm"
|
repository = "https://github.com/TimonPost/crossterm"
|
||||||
@ -11,8 +11,8 @@ exclude = ["target", "Cargo.lock"]
|
|||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
|
|
||||||
[target.'cfg(windows)'.dependencies]
|
[target.'cfg(windows)'.dependencies]
|
||||||
crossterm_winapi = "0.1.2"
|
|
||||||
winapi = { version = "0.3.7", features = ["wincon"] }
|
winapi = { version = "0.3.7", features = ["wincon"] }
|
||||||
|
crossterm_winapi = "0.1.4"
|
||||||
|
|
||||||
[target.'cfg(unix)'.dependencies]
|
[target.'cfg(unix)'.dependencies]
|
||||||
libc = "0.2.51"
|
libc = "0.2.51"
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "crossterm_winapi"
|
name = "crossterm_winapi"
|
||||||
version = "0.1.3"
|
version = "0.1.4"
|
||||||
authors = ["T. Post"]
|
authors = ["T. Post"]
|
||||||
description = "An WinApi wrapper that provides some basic simple abstractions aground common WinApi calls"
|
description = "An WinApi wrapper that provides some basic simple abstractions aground common WinApi calls"
|
||||||
repository = "https://github.com/TimonPost/crossterm_winapi"
|
repository = "https://github.com/TimonPost/crossterm_winapi"
|
||||||
|
@ -1,3 +1,6 @@
|
|||||||
|
# Changes crossterm 0.9.5
|
||||||
|
- Prefetching buffer size for more efficient windows input reads. [PR](https://github.com/TimonPost/crossterm/pull/144)
|
||||||
|
|
||||||
# Changes crossterm 0.9.4
|
# Changes crossterm 0.9.4
|
||||||
- Reset foreground and background color individually. [PR](https://github.com/TimonPost/crossterm/pull/138)
|
- Reset foreground and background color individually. [PR](https://github.com/TimonPost/crossterm/pull/138)
|
||||||
- Backtap input support. [PR](https://github.com/TimonPost/crossterm/pull/129)
|
- Backtap input support. [PR](https://github.com/TimonPost/crossterm/pull/129)
|
||||||
|
Loading…
Reference in New Issue
Block a user