No description
Find a file
David Tolnay 692ad8bc18
Ignore fn_params_excessive_bools pedantic clippy lint
warning: more than 3 bools in function parameters
       --> src/emitter.rs:975:1
        |
    975 | / unsafe fn yaml_emitter_emit_node(
    976 | |     mut emitter: *mut yaml_emitter_t,
    977 | |     event: *mut yaml_event_t,
    978 | |     root: bool,
    ...   |
    997 | |     }
    998 | | }
        | |_^
        |
    note: the lint level is defined here
       --> src/lib.rs:10:9
        |
    10  | #![warn(clippy::pedantic)]
        |         ^^^^^^^^^^^^^^^^
        = note: `#[warn(clippy::fn_params_excessive_bools)]` implied by `#[warn(clippy::pedantic)]`
        = help: consider refactoring bools into two-variant enums
        = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#fn_params_excessive_bools
2022-07-23 14:51:55 -07:00
.github/workflows Add CI build to cover fuzz target 2022-07-08 12:54:46 -07:00
fuzz Clean up error checking in fuzzer and bins 2022-07-23 12:47:09 -07:00
src Ignore fn_params_excessive_bools pedantic clippy lint 2022-07-23 14:51:55 -07:00
tests Deal with clippy lints 2022-07-08 12:54:44 -07:00
.gitignore Add parser fuzz target 2022-07-08 12:54:44 -07:00
Cargo.toml Release 0.1.3 2022-07-23 01:21:48 -07:00
LICENSE-MIT MIT license 2022-07-03 07:58:18 -07:00
README.md Release 0.1.0 2022-07-08 12:54:47 -07:00

unsafe-libyaml

github crates.io docs.rs build status

This library is libyaml translated from C to unsafe Rust with the assistance of c2rust.

[dependencies]
unsafe-libyaml = "0.1"

Compiler support: requires rustc 1.56+

License

MIT license, same as libyaml.