File tree Expand file tree Collapse file tree 3 files changed +19
-4
lines changed
Expand file tree Collapse file tree 3 files changed +19
-4
lines changed Original file line number Diff line number Diff line change 3333 - name : tests
3434 run : cargo test --all --all-features
3535
36+ check_fuzz_target :
37+ name : Check fuzz target
38+ runs-on : ubuntu-latest
39+
40+ steps :
41+ - uses : actions/checkout@v4
42+
43+ - name : Install stable
44+ uses : dtolnay/rust-toolchain@stable
45+ with :
46+ toolchain : stable
47+
48+ - name : check fuzz target
49+ run : cargo check --manifest-path fuzz/Cargo.toml
50+
3651 check_fmt_and_docs :
3752 name : Checking fmt, clippy, and docs
3853 runs-on : ubuntu-latest
Original file line number Diff line number Diff line change 11[package ]
2- name = " multer -fuzz"
2+ name = " multra -fuzz"
33version = " 0.0.0"
44authors = [" Automatically generated" ]
55publish = false
@@ -19,7 +19,7 @@ libfuzzer-sys = "0.3"
1919futures-util = { version = " 0.3" , default-features = false }
2020tokio = { version = " 1" , features = [" rt" , " time" ] }
2121
22- [dependencies .multer ]
22+ [dependencies .multra ]
2323path = " .."
2424
2525# Prevent this from interfering with workspaces
Original file line number Diff line number Diff line change 33use std:: convert:: Infallible ;
44use std:: time:: Duration ;
55
6- use multer:: Multipart ;
7- use multer:: bytes:: Bytes ;
86use futures_util:: stream:: once;
97use libfuzzer_sys:: fuzz_target;
8+ use multra:: Multipart ;
9+ use multra:: bytes:: Bytes ;
1010use tokio:: { runtime, time:: timeout} ;
1111
1212const FIELD_TIMEOUT : Duration = Duration :: from_millis ( 10 ) ;
You can’t perform that action at this time.
0 commit comments