Skip to content

Commit 1162f1a

Browse files
committed
Revert "feat(infer): kanalizer-rsのMSRVを1.84に (#127)"
This reverts commit 50f933c.
1 parent f0b5c62 commit 1162f1a

3 files changed

Lines changed: 2 additions & 5 deletions

File tree

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 = "2021"
4+
edition.workspace = true
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.2"
23+
cfg-elif = "0.6.3"
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: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
#[rustfmt::skip] // TODO: Rust 2024に移行したらこの抑制をやめる
21
use criterion::{Criterion, criterion_group, criterion_main};
32

43
fn criterion_benchmark(c: &mut Criterion) {

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

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

0 commit comments

Comments
 (0)