Skip to content

Commit 1020b94

Browse files
committed
Update version to reflect change in dependencies
1 parent e4a7060 commit 1020b94

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
[package]
22
name = "tokio-cadence"
33
description = "Tokio-based metric sinks for Cadence "
4-
version = "0.3.0"
4+
version = "0.4.0"
55
repository = "https://github.com/ecliptical/tokio-cadence"
66
authors = ["Peter Nehrer <pnehrer@eclipticalsoftware.com>"]
77
license = "MIT"
88
keywords = ["cadence", "statsd", "metrics", "async", "tokio"]
9-
edition = "2018"
9+
edition = "2021"
1010

1111
[dependencies]
1212
cadence = "0.29"

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
[![Crates.io](https://img.shields.io/crates/v/tokio-cadence.svg)](https://crates.io/crates/tokio-cadence/)
44
[![Docs.rs](https://docs.rs/tokio-cadence/badge.svg)](https://docs.rs/tokio-cadence/)
55

6-
A collection of [Cadence](https://crates.io/crates/cadence/) [Metric Sink](https://docs.rs/cadence/0.22/cadence/trait.MetricSink.html)
6+
A collection of [Cadence](https://crates.io/crates/cadence/) [Metric Sink](https://docs.rs/cadence/0.29/cadence/trait.MetricSink.html)
77
implementations that process metrics asynchronously using [Tokio](https://crates.io/crates/tokio/).
88

99
The Statsd client provided by Cadence does not support asynchronous operation -- submitting a metric may in fact block the caller!
@@ -25,9 +25,9 @@ Add `cadence`, `tokio`, and `tokio-cadence` to your `Cargo.toml`:
2525

2626
```toml
2727
[dependencies]
28-
cadence = "0.24"
29-
tokio = { version = "1.1", features = ["full"] }
30-
tokio-cadence = "0.3"
28+
cadence = "0.29"
29+
tokio = { version = "1", features = ["full"] }
30+
tokio-cadence = "0.4"
3131
```
3232

3333
## Usage

0 commit comments

Comments
 (0)