From 9c833593fac72fe21297be5fb089c01a17e30faa Mon Sep 17 00:00:00 2001 From: Koichi Akabe Date: Sat, 10 Feb 2024 00:05:02 +0900 Subject: [PATCH] Change MSRV to 1.74 (#120) * Change MSRV to 1.74 * Update README * Use 1.74.1 --- .github/workflows/rust.yml | 2 +- README-ja.md | 2 +- README.md | 2 +- vaporetto/Cargo.toml | 2 +- vaporetto_rules/Cargo.toml | 2 +- vaporetto_tantivy/Cargo.toml | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index fd71472..57a1505 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -18,7 +18,7 @@ jobs: strategy: matrix: rust: - - 1.70.0 # MSRV + - 1.74.1 # MSRV - stable - nightly steps: diff --git a/README-ja.md b/README-ja.md index 8e6c0aa..30a7d9b 100644 --- a/README-ja.md +++ b/README-ja.md @@ -5,7 +5,7 @@ Vaporetto は、高速で軽量な点予測に基づくトークナイザです [![Crates.io](https://img.shields.io/crates/v/vaporetto)](https://crates.io/crates/vaporetto) [![Documentation](https://docs.rs/vaporetto/badge.svg)](https://docs.rs/vaporetto) -![Build Status](https://github.com/daac-tools/vaporetto/actions/workflows/rust.yml/badge.svg) +[![Build Status](https://github.com/daac-tools/vaporetto/actions/workflows/rust.yml/badge.svg)](https://github.com/daac-tools/vaporetto/actions) [![Slack](https://img.shields.io/badge/join-chat-brightgreen?logo=slack)](https://join.slack.com/t/daac-tools/shared_invite/zt-1pwwqbcz4-KxL95Nam9VinpPlzUpEGyA) [English document](README.md) diff --git a/README.md b/README.md index 05af1d7..54382cc 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ This repository includes both a Rust crate that provides APIs for Vaporetto and [![Crates.io](https://img.shields.io/crates/v/vaporetto)](https://crates.io/crates/vaporetto) [![Documentation](https://docs.rs/vaporetto/badge.svg)](https://docs.rs/vaporetto) -![Build Status](https://github.com/daac-tools/vaporetto/actions/workflows/rust.yml/badge.svg) +[![Build Status](https://github.com/daac-tools/vaporetto/actions/workflows/rust.yml/badge.svg)](https://github.com/daac-tools/vaporetto/actions) [![Slack](https://img.shields.io/badge/join-chat-brightgreen?logo=slack)](https://join.slack.com/t/daac-tools/shared_invite/zt-1pwwqbcz4-KxL95Nam9VinpPlzUpEGyA) [日本語のドキュメント](README-ja.md) diff --git a/vaporetto/Cargo.toml b/vaporetto/Cargo.toml index d20780e..603fb8d 100644 --- a/vaporetto/Cargo.toml +++ b/vaporetto/Cargo.toml @@ -2,7 +2,7 @@ name = "vaporetto" version = "0.6.3" edition = "2021" -rust-version = "1.70" +rust-version = "1.74" authors = ["Koichi Akabe "] description = "Vaporetto: a pointwise prediction based tokenizer" license = "MIT OR Apache-2.0" diff --git a/vaporetto_rules/Cargo.toml b/vaporetto_rules/Cargo.toml index 2b1eb79..6822103 100644 --- a/vaporetto_rules/Cargo.toml +++ b/vaporetto_rules/Cargo.toml @@ -2,7 +2,7 @@ name = "vaporetto_rules" version = "0.6.3" edition = "2021" -rust-version = "1.70" +rust-version = "1.74" authors = ["Koichi Akabe "] description = "Rule-base filters for Vaporetto" license = "MIT OR Apache-2.0" diff --git a/vaporetto_tantivy/Cargo.toml b/vaporetto_tantivy/Cargo.toml index d005571..fa3e68c 100644 --- a/vaporetto_tantivy/Cargo.toml +++ b/vaporetto_tantivy/Cargo.toml @@ -2,7 +2,7 @@ name = "vaporetto_tantivy" version = "0.21.0" # Match with Tantivy version number edition = "2021" -rust-version = "1.70" +rust-version = "1.74" authors = ["Koichi Akabe "] description = "Vaporetto Tokenizer for Tantivy" license = "MIT OR Apache-2.0"