Skip to content

Releases: nwrenger/console-utils-rs

1.2.0

29 Nov 15:43

Choose a tag to compare

✨New in v1.2.0: Added reveal function!

Features:

  • Reveal: Added Reveal function.
  • Docs: Updated Documentation accordingly.

1.1.10

29 Nov 14:57

Choose a tag to compare

✨New in v1.1.10: Made Input Generic and Fixed Docs

Features:

  • Input: Made Generic, for easier input type conversion.
  • Docs: Fixed Documentation accordingly.

1.1.9

29 Nov 14:34

Choose a tag to compare

✨New in v1.1.9: Fixed Documentation

Features:

  • Docs: Fixed Documentation, now you can see and use the to_frames fn on SpinnerType.

1.1.8

29 Nov 14:19

Choose a tag to compare

✨New in v1.1.8: Documentation and Code refactor!

Features:

  • Spinner: Added to_frames, refactored.
  • Docs: Updated accordingly.

1.1.7

28 Nov 17:28

Choose a tag to compare

✨New in v1.1.7: Updated Docs!

Features:

  • Docs: Updated.

1.1.6

28 Nov 17:23

Choose a tag to compare

✨New in v1.1.6: Added a Spinner function and Updated Docs!

Features:

  • Spinner Function: Added with different types.
  • Docs: Updated accordingly

1.0.3

28 Nov 15:52

Choose a tag to compare

✨New in v1.0.3: Enhancments in types and code structure!

Features:

  • Select Function: Refactored a bit.

1.0.2

28 Nov 14:43

Choose a tag to compare

✨New in v1.0.2: Enhancements and a Splash of Color!

Features:

  • Select Function: Added Color when selected.

1.0.1

28 Nov 14:30

Choose a tag to compare

🚀 Initial release of Console Utility Libary v1.0.1

Features:

  • Input Function: Simplifies user input with customizable prompts.
  • Select Function: Interactive options selection with arrow keys and spacebar.

Getting Started:

// Read user input
let user_input = console_util::input("Enter something: ", false, false);

// Interactive options selection
let options = vec!["Option 1", "Option 2", "Option 3"];
let selected_options = console_util::select("Select an option:", &options, false, false);