No description
Find a file
David Tolnay 902f100327
Fix unused imports
warning: unused imports: `i8 as c_schar`, `u16 as c_ushort`
      --> src/lib.rs:50:52
       |
    50 |         i32 as c_int, i64 as c_long, i8 as c_char, i8 as c_schar, u16 as c_ushort, u32 as c_uint,
       |                                                    ^^^^^^^^^^^^^  ^^^^^^^^^^^^^^^
       |
       = note: `#[warn(unused_imports)]` on by default

    warning: unused imports: `yaml_break_t::*`, `yaml_emitter_state_t::*`, `yaml_error_type_t::*`, `yaml_mapping_style_t::*`, `yaml_parser_state_t::*`, `yaml_scalar_style_t::*`, `yaml_sequence_style_t::*`, `yaml_token_type_t::*`
     --> src/yaml.rs:6:5
      |
    6 |     yaml_break_t::*, yaml_emitter_state_t::*, yaml_encoding_t::*, yaml_error_type_t::*,
      |     ^^^^^^^^^^^^^^^  ^^^^^^^^^^^^^^^^^^^^^^^                      ^^^^^^^^^^^^^^^^^^^^
    7 |     yaml_event_type_t::*, yaml_mapping_style_t::*, yaml_node_type_t::*, yaml_parser_state_t::*,
      |                           ^^^^^^^^^^^^^^^^^^^^^^^                       ^^^^^^^^^^^^^^^^^^^^^^
    8 |     yaml_scalar_style_t::*, yaml_sequence_style_t::*, yaml_token_type_t::*,
      |     ^^^^^^^^^^^^^^^^^^^^^^  ^^^^^^^^^^^^^^^^^^^^^^^^  ^^^^^^^^^^^^^^^^^^^^
2023-10-24 22:14:30 -07:00
.github Test docs.rs documentation build in CI 2023-09-24 10:53:44 -07:00
fuzz Drop braces from fuzz closure 2023-08-10 19:21:01 -07:00
src Fix unused imports 2023-10-24 22:14:30 -07:00
tests Resolve needless_borrow pedantic clippy lint in test 2022-10-24 21:42:13 -07:00
.gitignore Add parser fuzz target 2022-07-08 12:54:44 -07:00
Cargo.toml Remove 'remember to update' reminder from Cargo.toml 2023-10-17 21:05:31 -07:00
LICENSE-MIT MIT license 2022-07-03 07:58:18 -07:00
README.md Update build status badge 2022-12-15 17:52:43 -08: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.2"

Compiler support: requires rustc 1.56+

License

MIT license, same as libyaml.