Skip to content

Commit

Permalink
Update Cargo.toml; introduce MSRV
Browse files Browse the repository at this point in the history
  • Loading branch information
Finomnis committed Oct 12, 2023
1 parent 73c92b3 commit a0fead6
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 2 deletions.
7 changes: 6 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,12 +36,17 @@ jobs:
runs-on: ubuntu-latest
env:
RUSTFLAGS: "-D warnings"
strategy:
matrix:
rust_version:
- "stable"
- "1.63.0"
steps:
- name: Checkout sources
uses: actions/checkout@v3

- name: Install stable toolchain
uses: dtolnay/rust-toolchain@stable
uses: dtolnay/rust-toolchain@${{ matrix.rust_version }}

#- uses: Swatinem/rust-cache@v1

Expand Down
17 changes: 16 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,10 +1,25 @@
[package]
name = "tokio-graceful-shutdown"
version = "0.1.0"
authors = ["Finomnis <[email protected]>"]
version = "0.14.0"
edition = "2021"
rust-version = "1.63"
license = "MIT OR Apache-2.0"
readme = "README.md"
repository = "https://github.com/Finomnis/tokio-graceful-shutdown"
description = "Utilities to perform a graceful shutdown on a Tokio based service."
keywords = ["tokio", "shutdown"]
categories = ["asynchronous"]

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

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

[dependencies]
tracing = { version = "0.1.37", default-features = false }

Expand Down

0 comments on commit a0fead6

Please sign in to comment.