diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 0aaad7d..8275c15 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -83,7 +83,7 @@ cleanup-stable: cleanup-msrv: extends: cleanup-stable - image: "rust:1.54.0" + image: "rust:1.56.0" cache: key: msrv paths: @@ -107,7 +107,7 @@ build-base-stable: build-base-msrv: extends: build-base-stable needs: ["cleanup-msrv"] - image: "rust:1.54.0" + image: "rust:1.56.0" cache: key: msrv paths: @@ -133,7 +133,7 @@ build-stable: build-msrv: extends: build-stable needs: ["build-base-msrv"] - image: "rust:1.54.0" + image: "rust:1.56.0" cache: key: msrv paths: @@ -158,7 +158,7 @@ test-stable: test-msrv: extends: test-stable - image: "rust:1.54.0" + image: "rust:1.56.0" needs: ["build-msrv"] cache: key: msrv diff --git a/CHANGELOG.md b/CHANGELOG.md index a0a5179..f6ef523 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,7 +6,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), ## Unreleased ## Changed -- MSRV is now 1.54.0 +- MSRV is now 1.56.0 - A few dependencies have been updated, most notably [`clap`] ### Added - AIFF (Audio Interchange File Format, a PCM audio format like WAV) detection to [`infer`] diff --git a/Cargo.lock b/Cargo.lock index 9a4c347..25a1afa 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -27,9 +27,9 @@ checksum = "cdb031dd78e28731d87d56cc8ffef4a8f36ca26c38fe2de700543e627f8a464a" [[package]] name = "bitflags" -version = "1.3.2" +version = "1.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" +checksum = "cf1de2fe8c75bc145a2f577add951f8134889b4795d47466a54a5c846d691693" [[package]] name = "byteorder" diff --git a/Cargo.toml b/Cargo.toml index ab8386f..fab3a45 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,16 +3,22 @@ name = "fif" description = "A command-line tool for detecting and optionally correcting files with incorrect extensions." version = "0.3.6" authors = ["Lynnesbian "] -edition = "2018" +edition = "2021" license = "GPL-3.0-or-later" -rust-version = "1.54.0" +rust-version = "1.56.0" repository = "https://gitlab.com/Lynnesbian/fif" readme = "README.md" keywords = ["mime", "mimetype", "utilities", "tools"] categories = ["command-line-utilities"] exclude = [".idea/", "*.toml", "!Cargo.toml", "*.sh", "*.py", "*.yml", "*.md", ".mailmap", "pkg/"] -#resolver = "2" -#license-file = "LICENSE" + +# unfortunately, we can't use resolver v2 right now, because one of the phf crates (i think it's phf_codegen) that are +# pulled in by new_mime_guess' phf-map feature doesn't enable phf_shared's unicase feature when it should. +# this causes new_mime_guess' build.rs to fail with errors about PhfHash traits and such not being implemented for +# UniCase<&str>. +# there's no way to fix this in either fif or new_mime_guess itself, short of a patch (which can't be used on +# crates.io), so we'll have to disable the new resolver for now :( +resolver = "1" [badges] maintenance = { status = "experimental" } @@ -83,4 +89,4 @@ opt-level = 3 opt-level = 3 [package.metadata] -msrv = "1.54.0" \ No newline at end of file +msrv = "1.56.0" \ No newline at end of file diff --git a/README.md b/README.md index 6ca710f..4694c7b 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ [![Version](https://img.shields.io/crates/v/fif.svg?logo=rust&style=flat-square) ](https://crates.io/crates/fif) -[![Minimum Supported Rust Version](https://img.shields.io/badge/msrv-1.54.0-orange?logo=rust&style=flat-square) +[![Minimum Supported Rust Version](https://img.shields.io/badge/msrv-1.56.0-orange?logo=rust&style=flat-square) ](https://gitlab.com/Lynnesbian/fif/-/blob/master/README.md#version-policy) [![License](https://img.shields.io/crates/l/fif.svg?style=flat-square) ](https://gitlab.com/Lynnesbian/fif/-/blob/master/LICENSE) diff --git a/clippy.toml b/clippy.toml index 840d1ad..a636165 100644 --- a/clippy.toml +++ b/clippy.toml @@ -1,3 +1,3 @@ # avoid-breaking-exported-api = false # only available on nightly for now cognitive-complexity-threshold = 15 -msrv = "1.54.0" \ No newline at end of file +msrv = "1.56.0" \ No newline at end of file diff --git a/test.py b/test.py index 79fde34..04c263c 100755 --- a/test.py +++ b/test.py @@ -24,7 +24,9 @@ def test_versions(): print("Couldn't find rust-version") exit(1) - versions = [match.group(1), "stable", "nightly"] + # versions = [match.group(1), "stable", "nightly"] + # remove this when 1.56 is released + versions = ["beta", "nightly"] backends = ["xdg-mime", "infer"] upto = 1