Skip to content

Commit

Permalink
Update version to 0.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
nathiss committed Jul 25, 2023
1 parent c1c786c commit 2199904
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cancellable"
version = "0.1.0"
version = "0.1.1"
authors = ["Kamil Rusin <[email protected]>"]
edition = "2021"
description = "A Rust library providing a generic cancellable utility."
Expand All @@ -15,9 +15,17 @@ include = ["/src", "LICENSE.txt"]
[dependencies]
async-trait = "0.1.71"
pin-project = "1.1.2"
tokio = { version = "1.29.1", default-features = false, features = ["rt", "macros"] }
tokio = { version = "1.29.1", default-features = false, features = [
"rt",
"macros",
] }
tokio-util = { version = "0.7.8", default-features = false }

[dev-dependencies]
anyhow = "1.0.71"
tokio = { version = "1.29.1", default-features = false, features = ["rt-multi-thread", "net", "macros", "time"] }
tokio = { version = "1.29.1", default-features = false, features = [
"rt-multi-thread",
"net",
"macros",
"time",
] }

0 comments on commit 2199904

Please sign in to comment.