press-btn-continue 0.2.0

A smalll no-dependency library to get a "Press any key to continue" console prompt.
Documentation
  • Coverage
  • 0%
    0 out of 2 items documented0 out of 0 items with examples
  • Size
  • Source code size: 7.47 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 1.03 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 11s Average build duration of successful builds.
  • all releases: 11s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • cfsamson/press-btn-continue
    5 0 1
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • cfsamson

Press any button to continue

Small crate that gives an easy access to the classic Windows "Press any key to continue" console prompt.

There is currently no way to implement this using Rust's standard library. The closest you can get is to read one character from stdin but the user has to press "ENTER" to do that so you essentially get "Press ENTER to continue..." doing like this:

println!("Press ENTER to continue...");
let buffer = &mut [0u8];
std::io::stdin().read_exact(buffer).unwrap();

This crate provides only one method called wait which progresses on any keypress.

fn main() {
    println!("Hello world!");
    press_btn_continue::wait("Press any key to continue...").unwrap();
}

Compatibility

As of now this library only compiles on Windows but I'd be happy to add support for other platforms as well later on.

Dependencies

There are no external dependencies. I try to keep this library as lightweight and transparent as possible (easy to review, and adds very little to compile times).