Skip to content

Commit

Permalink
Merge pull request #41 from epage/update
Browse files Browse the repository at this point in the history
chore: Upgrade tracing-subscriber
  • Loading branch information
epage committed Jul 1, 2022
2 parents db6e94b + 2e68a71 commit 896ce25
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .clippy.toml
@@ -1 +1 @@
msrv = "1.56.0" # MSRV
msrv = "1.56.1" # MSRV
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Expand Up @@ -51,15 +51,15 @@ jobs:
- name: No-default features
run: cargo test --workspace --no-default-features
msrv:
name: "Check MSRV: 1.56.0"
name: "Check MSRV: 1.56.1"
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
toolchain: 1.56.0 # MSRV
toolchain: 1.56.1 # MSRV
profile: minimal
override: true
- uses: Swatinem/rust-cache@v1
Expand Down Expand Up @@ -113,7 +113,7 @@ jobs:
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
toolchain: 1.56.0 # MSRV
toolchain: 1.56.1 # MSRV
profile: minimal
override: true
components: clippy
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/rust-next.yml
Expand Up @@ -57,9 +57,9 @@ jobs:
strategy:
matrix:
rust:
- 1.56.0 # MSRV
- 1.56.1 # MSRV
- stable
continue-on-error: ${{ matrix.rust != '1.56.0' }} # MSRV
continue-on-error: ${{ matrix.rust != '1.56.1' }} # MSRV
runs-on: ubuntu-latest
steps:
- name: Checkout repository
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Expand Up @@ -7,7 +7,7 @@ license = "MIT OR Apache-2.0"
repository = "https://github.com/rust-clique/clap-verbosity-flag"
readme = "README.md"
edition = "2021"
rust-version = "1.56.0" # MSRV
rust-version = "1.56.1" # MSRV
include = [
"src/**/*",
"Cargo.toml",
Expand Down Expand Up @@ -35,5 +35,5 @@ clap = { version = "3.0", default-features = false, features = ["std", "derive"]
[dev-dependencies]
env_logger = "0.9.0"
tracing = "0.1"
tracing-subscriber = "0.2"
tracing-subscriber = "0.3"
tracing-log = "0.1.3"

0 comments on commit 896ce25

Please sign in to comment.