Skip to content

Commit

Permalink
Bump MSRV, update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
dralley committed Oct 17, 2023
1 parent 407f9a2 commit 19348e0
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 12 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,9 @@ jobs:
matrix:
rust:
- stable
- 1.65.0
- 1.67.0
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ matrix.rust }}
Expand All @@ -59,7 +59,7 @@ jobs:
matrix:
rust:
- stable
- 1.65.0
- 1.67.0
flags:
- "--all-features"
- "--no-default-features"
Expand All @@ -81,7 +81,7 @@ jobs:
rust:
- stable
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ matrix.rust }}
Expand All @@ -95,7 +95,7 @@ jobs:
rust:
- stable
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ matrix.rust }}
Expand All @@ -111,7 +111,7 @@ jobs:
rust:
- stable
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ matrix.rust }}
Expand All @@ -127,7 +127,7 @@ jobs:
rust:
- stable
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ matrix.rust }}
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Breaking Changes

- Bumped MSRV to 1.67

### Added

- Support for symbolic link in file mode.
Expand Down
6 changes: 2 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ repository = "https://github.com/rpm-rs/rpm"
readme = "README.md"
keywords = ["RPM", "packaging"]
categories = ["parsing", "development-tools"]
rust-version = "1.65.0"
rust-version = "1.67.0"

[lib]
name = "rpm"
Expand Down Expand Up @@ -51,15 +51,13 @@ chrono = { version = "0.4", optional = true }
log = "0.4"
itertools = "0.11"
hex = { version = "0.4", features = ["std"] }
zstd = "0.12"
zstd = "0.13"
xz2 = "0.1"
capctl = "0.2.3"

[dev-dependencies]
rsa = { version = "0.9.2" }
rsa-der = { version = "0.3.0" }
# Pin time due to msrv
time = "=0.3.23"
env_logger = "0.10.0"
serial_test = "2.0"
pretty_assertions = "1.3.0"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[![crates.io](https://img.shields.io/crates/v/rpm.svg)](https://crates.io/crates/rpm)
[![docs.rs](https://docs.rs/rpm/badge.svg)](https://docs.rs/rpm)
[![MSRV](https://img.shields.io/badge/rustc-1.65.0+-ab6000.svg)](https://blog.rust-lang.org/2022/11/03/Rust-1.65.0.html)
[![MSRV](https://img.shields.io/badge/rustc-1.67.0+-ab6000.svg)](https://blog.rust-lang.org/2023/01/26/Rust-1.67.0.html)

## RPM-RS

Expand Down

0 comments on commit 19348e0

Please sign in to comment.