Skip to content

Stable 1.1.0

Choose a tag to compare

@AsfhtgkDavid AsfhtgkDavid released this 27 Feb 11:39
· 2 commits to main since this release
6477b33

Stable 1.1.0

Added

  • Async Support: New tokio feature flag for async task execution
  • AsyncRunnable trait: Define async tasks that can be executed with Tokio runtime
  • TokioTask trait: Extension trait providing async_start() method for spawning async tasks
  • TokioParallelRun trait: Run multiple async tasks in parallel with async_par_run() method
  • Custom Thread Builder: start_with_builder() method for customizing thread properties (name, stack size, etc.)
  • Parallel Execution: ParallelRun trait for running multiple tasks in parallel across CPU cores
  • Comprehensive documentation for all features
  • Examples for async usage, parallel execution, and custom thread configuration

Changed

  • Enhanced documentation with detailed examples for all traits
  • Improved README with feature descriptions and usage examples