Skip to content

Commit

Permalink
Bump to 0.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Finomnis committed Jun 7, 2022
1 parent 1e01489 commit 2a0c616
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 8 deletions.
15 changes: 8 additions & 7 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "tokio-graceful-shutdown"
authors = ["Finomnis <finomnis@gmail.com>"]
version = "0.10.0-beta.0"
version = "0.10.0"
edition = "2018"
license = "Apache-2.0"
readme = "README.md"
Expand All @@ -12,19 +12,20 @@ categories = ["asynchronous"]

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

exclude = [
"/.github/",
"/TODO.txt",
"/UPCOMING_VERSION_CHANGES.txt"
]
exclude = ["/.github/", "/TODO.txt", "/UPCOMING_VERSION_CHANGES.txt"]

[dependencies]
# Error definitions
thiserror = "1.0"
miette = "4.4"

# For async utilities
tokio = { version = "1", default-features = false, features = ["signal", "rt", "macros", "time"] }
tokio = { version = "1", default-features = false, features = [
"signal",
"rt",
"macros",
"time",
] }
tokio-util = { version = "0.7.2", default-features = false }
futures = "0.3"
async-recursion = "1.0"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ Further examples can be seen in the [**examples**](https://github.com/Finomnis/t
To use this library in your project, add the following to the `[dependencies]` section of `Cargo.toml`:
```toml
[dependencies]
tokio-graceful-shutdown = "0.10.0-beta"
tokio-graceful-shutdown = "0.10"
```

To run one of the examples (here `01_normal_shutdown.rs`), simply enter the repository folder and execute:
Expand Down

0 comments on commit 2a0c616

Please sign in to comment.