Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump env_logger from 0.10.1 to 0.11.1 #195

Merged
merged 2 commits into from
Feb 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,23 +14,23 @@ jobs:

build_and_test:
runs-on: ubuntu-22.04
container: rust:1.70
container: rust:1.71
steps:
- uses: actions/checkout@v3
- run: cargo build
- run: cargo test

lint:
runs-on: ubuntu-22.04
container: rust:1.70
container: rust:1.71
steps:
- uses: actions/checkout@v3
- run: rustup component add clippy
- run: cargo clippy --all-targets --all-features -- -D warnings

fmt:
runs-on: ubuntu-22.04
container: rust:1.70
container: rust:1.71
steps:
- uses: actions/checkout@v3
- run: rustup component add rustfmt
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Changed

* Bump MSRV to 1.70
* Update dependencies

### Added

* Add `--version` flag and about text to CLI
Expand Down
74 changes: 69 additions & 5 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "attractorr"
version = "0.6.1"
authors = ["Raphael Nestler <[email protected]>"]
edition = "2021"
rust-version = "1.70"
rust-version = "1.71"
description = "A CLI tool to scrape the web for magnet links"
repository = "https://github.com/rnestler/attractorr/"
license = "MIT OR Apache-2.0"
Expand All @@ -26,7 +26,7 @@ termcolor = "1.3.0"
is-terminal = "0.4.10"
serde = { version = "1.0.188", features = ["derive"] }
serde_json = "1.0.107"
env_logger = "0.10.0"
env_logger = "0.11.1"
log = "^0.4"
async-trait = "^0.1.77"
tokio = { version = "1.35.1", features = ["macros", "rt-multi-thread"] }
Expand Down
Loading