Skip to content

Commit 50f933c

Browse files
authored
feat(infer): kanalizer-rsのMSRVを1.84に (#127)
1 parent 891299b commit 50f933c

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

infer/crates/kanalizer-rs/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "kanalizer"
33
version.workspace = true
4-
edition.workspace = true
4+
edition = "2021"
55
license.workspace = true
66
exclude = ["tasks", "models"]
77
description.workspace = true
@@ -20,7 +20,7 @@ compress_model = ["dep:brotli-decompressor"]
2020
[dependencies]
2121
anyhow = "1.0.95"
2222
brotli-decompressor = { version = "4.0.2", optional = true }
23-
cfg-elif = "0.6.3"
23+
cfg-elif = "0.6.2"
2424
clap = { version = "4.5.29", features = ["derive"] }
2525
duplicate = "2.0.0"
2626
educe = "0.6.0"

infer/crates/kanalizer-rs/benches/benchmark.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
#[rustfmt::skip] // TODO: Rust 2024に移行したらこの抑制をやめる
12
use criterion::{Criterion, criterion_group, criterion_main};
23

34
fn criterion_benchmark(c: &mut Criterion) {

infer/crates/kanalizer-rs/src/lib.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -120,6 +120,7 @@ mod tests {
120120
.iter()
121121
.map(|&c| c.to_string())
122122
.collect();
123+
#[rustfmt::skip] // TODO: Rust 2024に移行したらこの抑制をやめる
123124
assert!(
124125
INPUT_CHARS
125126
.iter()
@@ -133,6 +134,7 @@ mod tests {
133134
fn test_output_chars() {
134135
// OUTPUT_CHARSがKANASのサブセットであることを確認する。
135136
let kana_entries: HashSet<_> = constants::KANAS.iter().map(|&c| c.to_string()).collect();
137+
#[rustfmt::skip] // TODO: Rust 2024に移行したらこの抑制をやめる
136138
assert!(
137139
OUTPUT_CHARS
138140
.iter()

0 commit comments

Comments
 (0)