File tree Expand file tree Collapse file tree 3 files changed +12
-3
lines changed
Expand file tree Collapse file tree 3 files changed +12
-3
lines changed Original file line number Diff line number Diff line change 1+ # 0.3.1 (October 12th, 2023)
2+
3+ ### Fixed
4+ - task: fix doc error in idle definition ([ #54 ] )
5+ - chore: support tokio 1.33 without stats feature ([ #55 ] )
6+
7+ [ #54 ] : https://github.com/tokio-rs/tokio-metrics/pull/54
8+ [ #55 ] : https://github.com/tokio-rs/tokio-metrics/pull/55
9+
110# 0.3.0 (August 14th, 2023)
211
312### Added
Original file line number Diff line number Diff line change 11[package ]
22name = " tokio-metrics"
3- version = " 0.3.0 "
3+ version = " 0.3.1 "
44edition = " 2021"
55rust-version = " 1.56.0"
66authors = [
" Tokio Contributors <[email protected] >" ]
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ runtime and per-task metrics.
55
66``` toml
77[dependencies ]
8- tokio-metrics = { version = " 0.3.0 " , default-features = false }
8+ tokio-metrics = { version = " 0.3.1 " , default-features = false }
99```
1010
1111## Getting Started With Task Metrics
@@ -157,7 +157,7 @@ The `rt` feature of `tokio-metrics` is on by default; simply check that you do
157157not set ` default-features = false ` when declaring it as a dependency; e.g.:
158158``` toml
159159[dependencies ]
160- tokio-metrics = " 0.2.2 "
160+ tokio-metrics = " 0.3.1 "
161161```
162162
163163From within a Tokio runtime, use ` RuntimeMonitor ` to monitor key metrics of
You can’t perform that action at this time.
0 commit comments