Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions infer/crates/kanalizer-rs/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "kanalizer"
version.workspace = true
edition = "2021"
edition.workspace = true
license.workspace = true
exclude = ["tasks", "models"]
description.workspace = true
Expand All @@ -20,7 +20,7 @@ compress_model = ["dep:brotli-decompressor"]
[dependencies]
anyhow = "1.0.95"
brotli-decompressor = { version = "4.0.2", optional = true }
cfg-elif = "0.6.2"
cfg-elif = "0.6.3"
clap = { version = "4.5.29", features = ["derive"] }
duplicate = "2.0.0"
educe = "0.6.0"
Expand Down
1 change: 0 additions & 1 deletion infer/crates/kanalizer-rs/benches/benchmark.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
#[rustfmt::skip] // TODO: Rust 2024に移行したらこの抑制をやめる
use criterion::{Criterion, criterion_group, criterion_main};

fn criterion_benchmark(c: &mut Criterion) {
Expand Down
2 changes: 0 additions & 2 deletions infer/crates/kanalizer-rs/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,6 @@ mod tests {
.iter()
.map(|&c| c.to_string())
.collect();
#[rustfmt::skip] // TODO: Rust 2024に移行したらこの抑制をやめる
assert!(
INPUT_CHARS
.iter()
Expand All @@ -134,7 +133,6 @@ mod tests {
fn test_output_chars() {
// OUTPUT_CHARSがKANASのサブセットであることを確認する。
let kana_entries: HashSet<_> = constants::KANAS.iter().map(|&c| c.to_string()).collect();
#[rustfmt::skip] // TODO: Rust 2024に移行したらこの抑制をやめる
assert!(
OUTPUT_CHARS
.iter()
Expand Down
Loading