1e332daaed
- Major refactor and cleanup. - Improved performance; - No locking when writing to stdout. - UNIX doesn't have any dynamic dispatch anymore. - Windows has improved the way to check if ANSI modes are enabled. - Removed lot's of complex API calls: `from_screen`, `from_output` - Removed `Arc<TerminalOutput>` from all internal Api's. - Removed termios dependency for UNIX systems. - Upgraded deps. - Removed about 1000 lines of code - `TerminalOutput` - `Screen` - unsafe code - Some duplicated code introduced by a previous refactor. - Raw modes UNIX systems improved - Added `NoItalic` attribute
14 lines
557 B
TOML
14 lines
557 B
TOML
[package]
|
|
name = "crossterm_winapi"
|
|
version = "0.1.2"
|
|
authors = ["T. Post"]
|
|
description = "An WinApi wrapper that provides some basic simple abstractions aground common WinApi calls"
|
|
repository = "https://github.com/TimonPost/crossterm_winapi"
|
|
documentation = "https://docs.rs/crossterm_winapi/"
|
|
license = "MIT"
|
|
keywords = ["winapi", "abstractions", "crossterm", "windows", "screen_buffer"]
|
|
exclude = ["target", "Cargo.lock"]
|
|
readme = "README.md"
|
|
|
|
[dependencies]
|
|
winapi = { version = "0.3.7", features = ["winbase","consoleapi","processenv", "handleapi"] } |