mirror of
https://github.com/simonask/libyaml-safer
synced 2024-11-26 21:30:24 +00:00
No description
692ad8bc18
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 |
||
---|---|---|
.github/workflows | ||
fuzz | ||
src | ||
tests | ||
.gitignore | ||
Cargo.toml | ||
LICENSE-MIT | ||
README.md |
unsafe-libyaml
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.