File tree Expand file tree Collapse file tree 3 files changed +5
-2
lines changed
infer/crates/kanalizer-rs Expand file tree Collapse file tree 3 files changed +5
-2
lines changed Original file line number Diff line number Diff line change 11[package ]
22name = " kanalizer"
33version.workspace = true
4- edition.workspace = true
4+ edition = " 2021 "
55license.workspace = true
66exclude = [" tasks" , " models" ]
77description.workspace = true
@@ -20,7 +20,7 @@ compress_model = ["dep:brotli-decompressor"]
2020[dependencies ]
2121anyhow = " 1.0.95"
2222brotli-decompressor = { version = " 4.0.2" , optional = true }
23- cfg-elif = " 0.6.3 "
23+ cfg-elif = " 0.6.2 "
2424clap = { version = " 4.5.29" , features = [" derive" ] }
2525duplicate = " 2.0.0"
2626educe = " 0.6.0"
Original file line number Diff line number Diff line change 1+ #[ rustfmt:: skip] // TODO: Rust 2024に移行したらこの抑制をやめる
12use criterion:: { Criterion , criterion_group, criterion_main} ;
23
34fn criterion_benchmark ( c : & mut Criterion ) {
Original file line number Diff line number Diff 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( )
You can’t perform that action at this time.
0 commit comments