Skip to content

Commit

Permalink
Declare MSRV 1.64 and test it on CI
Browse files Browse the repository at this point in the history
  • Loading branch information
jirutka committed Aug 2, 2023
1 parent 42c7069 commit 03036ff
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 2 deletions.
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ jobs:
include:
- { target: x86_64-unknown-linux-musl }
- { target: x86_64-unknown-linux-musl, rust: nightly }
- { target: x86_64-unknown-linux-musl, rust: '1.64' } # MSRV
- { target: x86_64-unknown-linux-gnu }
- { target: x86_64-apple-darwin, os: macos-latest }
- { target: aarch64-unknown-linux-musl }
Expand Down
2 changes: 2 additions & 0 deletions README.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,11 @@
:gh-name: jirutka/{proj-name}
:version: 0.1.0-pre.2
:releases-uri: https://github.com/{gh-name}/releases/download/v{version}
:msrv: 1.64

ifdef::env-github[]
image:https://img.shields.io/crates/v/{proj-name}.svg[Version on crates.io, link=https://crates.io/crates/{proj-name}]
image:https://img.shields.io/badge/MSRV-{msrv}-informational[Minimal supported Rust version]
image:https://docs.rs/{proj-name}/badge.svg[docs.rs, link=https://docs.rs/crate/{proj-name}/]
image:https://github.com/{gh-name}/workflows/CI/badge.svg[CI Workflow, link=https://github.com/{gh-name}/actions?query=workflow%3A%22CI%22]
endif::env-github[]
Expand Down
4 changes: 3 additions & 1 deletion alpkit/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,14 @@
name = "alpkit"
version = "0.1.0-pre.2"
authors = ["Jakub Jirutka <jakub@jirutka.cz>"]
edition = "2021"
description = "A library for reading metadata from the APKv2 package format and APKBUILD."
repository = "https://github.com/jirutka/alpkit"
license = "MIT"
keywords = ["alpine", "alpine-linux", "apk", "apk-tools"]

edition = "2021"
rust-version = "1.64"

[features]
default = ["flate2-rust"]
# Encode/decode `xattrs` in JSON with base64. If disabled, `xattr` values will
Expand Down
4 changes: 3 additions & 1 deletion apk-inspect/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,14 @@
name = "apk-inspect"
version = "0.1.0-pre.2"
authors = ["Jakub Jirutka <jakub@jirutka.cz>"]
edition = "2021"
description = "A CLI tool for reading metadata from the APKv2 package format and APKBUILD."
repository = "https://github.com/jirutka/alpkit"
license = "MIT"
keywords = ["cli", "alpine", "alpine-linux", "apk", "apk-tools"]

edition = "2021"
rust-version = "1.64"

[features]
default = ["flate2-rust"]
# Choose the flate2 backend. Note that flate2-rust and flate2-zlib
Expand Down

0 comments on commit 03036ff

Please sign in to comment.