mirror of
https://github.com/simonask/libyaml-safer
synced 2024-11-22 11:23:02 +00:00
No description
6a235b324e
error: variables can be used directly in the `format!` string --> tests/data/build.rs:24:18 | 24 | let prefix = format!("yaml-test-suite-{}", TAG); | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#uninlined_format_args = note: `-D clippy::uninlined-format-args` implied by `-D clippy::pedantic` help: change this to | 24 - let prefix = format!("yaml-test-suite-{}", TAG); 24 + let prefix = format!("yaml-test-suite-{TAG}"); | |
||
---|---|---|
.github | ||
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.2"
Compiler support: requires rustc 1.56+
License
MIT license, same as libyaml.