Skip to content

Tags

Tags give the ability to mark specific points in history as being important
  • 1.7.0
    01ec121d · chore(release): 1.7.0 ·
    [1.7.0] - 2022-09-04
    
    * added `Guard::new`
    * improved clarity of error messages
    * cleaned up implementation of `Stopwatch::guard` and `Stopwatch::is_stopped`
    * defined MSRV as 1.58.1
    
  • 1.6.0
    16067a55 · chore(release): 1.6.0 ·
    [1.6.0] - 2022-09-03
    
    * added `PartialEq`, `Eq`, and `Hash` impls for `Guard`
    * minor docs improvements
    
  • 1.5.0
    52159caf · chore(release): 1.5.0 ·
    [1.5.0] - 2022-09-02
    
    * added `PartialEq` and `Eq` impls for `Stopwatch`
    * added `Result<T>` type, an alias for `Result<T, Error>`
    * changed implementation of `Hash` for `Stopwatch`
    * updated documentation for `Stopwatch::from_raw`
    * minor docs improvements
    
  • 1.4.0
    76341e7f · chore(release): 1.4.0 ·
    [1.4.0] - 2022-08-20
    
    * added `Guard::elapsed`
    * added `Guard::elapsed_at`
    * minor docs improvements
    
  • 1.3.0
    51e51ba7 · chore(release): 1.3.0 ·
    [1.3.0] - 2022-08-10
    
    * added `Guard`
      * added `Stopwatch::guard`
      * added `Stopwatch::guard_at`
      * added `Debug` and `Drop` impl for `Guard`
    
  • 1.2.0
    3a5b05c2 · chore(release): 1.2.0 ·
    [1.2.0] - 2022-08-09
    
    * added `Stopwatch::elapsed_at`
    * added `Stopwatch::start_at`
    * added `Stopwatch::stop_at`
    
  • 1.1.0
    57a7ba47 · chore(release): 1.1.0 ·
    [1.1.0] - 2022-08-09
    
    * added `Stopwatch::saturating_add`
    * added `Stopwatch::saturating_sub`
    * improved docs organisation
    
  • 1.0.0
    05eb48a4 · chore(release): 1.0.0 ·
    [1.0.0] - 2022-08-09
    
    * changed `Stopwatch::new`
    * added `Stopwatch::new_started`
    * added `Stopwatch::with_elapsed`
    * added `Stopwatch::with_elapsed_started`
    * added `Stopwatch::from_raw`
    * added `Stopwatch::replace`
    * added `Hash` impl for `Stopwatch`
    * added `Display`, `Error`, and `Hash` impls for `Error`
    * added examples to docs
    * improved test consistency
    * renamed license files
    
  • 0.2.0
    b1b0a0d0 · chore(release): 0.2.0 ·
    [0.2.0] - 2022-08-07
    
    * added Debug impl for Stopwatch
    * improved docs organisation
    
  • 0.1.1
    42ec8b34 · chore(release): 0.1.1 ·
    [0.1.1] - 2022-08-07
    
    * added README.md
    * updated crate metadata
    
  • 0.1.0
    [0.1.0] - 2022-08-07
    
    * added Stopwatch
      * added Stopwatch::new
      * added Stopwatch::start
      * added Stopwatch::stop
      * added Stopwatch::toggle
      * added Stopwatch::reset
      * added Stopwatch::set
      * added Stopwatch::elapsed
      * added Stopwatch::is_running
      * added Stopwatch::is_stopped
      * added Add, Sub, AddAssign, and SubAssign impls for Stopwatch