Specify and document MSRV for 0.26 (#798)

As of 318f810a39, crossterm uses RFC
2795 implicit named arguments, which shipped in Rust 1.58.

Co-authored-by: Timon <timonpost@hotmail.nl>
This commit is contained in:
Wilfred Hughes 2023-08-05 06:34:37 -07:00 committed by GitHub
parent 10c54b0056
commit db443b08e8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 0 deletions

View File

@ -23,6 +23,7 @@
## Breaking ⚠️ ## Breaking ⚠️
- Remove `SetCursorShape` in favour of `SetCursorStyle`. (#742) - Remove `SetCursorShape` in favour of `SetCursorStyle`. (#742)
- Make Windows resize event match `terminal::size` (#714) - Make Windows resize event match `terminal::size` (#714)
- Rust 1.58 or later is now required.
- Add key release event for windows. (#745) - Add key release event for windows. (#745)
# Version 0.25.0 # Version 0.25.0

View File

@ -10,6 +10,7 @@ keywords = ["event", "color", "cli", "input", "terminal"]
exclude = ["target", "Cargo.lock"] exclude = ["target", "Cargo.lock"]
readme = "README.md" readme = "README.md"
edition = "2021" edition = "2021"
rust-version = "1.58.0"
categories = ["command-line-interface", "command-line-utilities"] categories = ["command-line-interface", "command-line-utilities"]
[lib] [lib]