Skip to content

Commit

Permalink
0.6.0-rc.1
Browse files Browse the repository at this point in the history
  • Loading branch information
ironpeak committed Dec 28, 2024
1 parent 484fa2a commit 4590fc9
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "slow_function_warning"
version = "0.5.0"
version = "0.6.0-rc.1"
authors = ["Hrafn Orri Hrafnkelsson <[email protected]>"]
edition = "2021"
description = "A simple macro that prints a warning if a function takes longer than expected"
Expand Down
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,9 @@ You can specify the duration using numeric literals followed by a suffix:
* `elapsed_ns: u128` - The elapsed time in nanoseconds
* `elapsed_nanos: u128` - The elapsed time in nanoseconds
* `elapsed_nanoseconds: u128` - The elapsed time in nanoseconds
* `elapsed_us: u128` - The elapsed time in microseconds
* `elapsed_micros: u128` - The elapsed time in microseconds
* `elapsed_microseconds: u128` - The elapsed time in microseconds
* `elapsed_ms: u128` - The elapsed time in milliseconds
* `elapsed_millis: u128` - The elapsed time in milliseconds
* `elapsed_milliseconds: u128` - The elapsed time in milliseconds
Expand All @@ -98,6 +101,9 @@ You can specify the duration using numeric literals followed by a suffix:
* `limit_ns: u128` - The limit time in nanoseconds
* `limit_nanos: u128` - The limit time in nanoseconds
* `limit_nanoseconds: u128` - The limit time in nanoseconds
* `limit_us: u128` - The limit time in microseconds
* `limit_micros: u128` - The limit time in microseconds
* `limit_microseconds: u128` - The limit time in microseconds
* `limit_ms: u128` - The limit time in milliseconds
* `limit_millis: u128` - The limit time in milliseconds
* `limit_milliseconds: u128` - The limit time in milliseconds
Expand Down

0 comments on commit 4590fc9

Please sign in to comment.