Crates.io | nelf |
lib.rs | nelf |
version | 0.1.0 |
source | src |
created_at | 2022-09-18 13:17:58.711514 |
updated_at | 2022-09-18 13:17:58.711514 |
description | Implementation of a NELF parser |
homepage | |
repository | https://github.com/Daniikk1012/nelf-rs |
max_upload_size | |
id | 668621 |
size | 28,866 |
NELF (No Escape List Format) is a human-readable file format for encoding lists of arbitrary strings without escaping their contents. This file format has the same use cases as CSV and allows programs to take out strings contained in a NELF list by taking a pointer (A string slice, view) to the source string, which removes the need to allocate additional space for them. The specification is yet to be developed.
The API for this cratee is unstable, if you want to use it, always specify the
minor version you want to use in your Cargo.toml
.
There are plans to generalize the parser for string slices and to use serde
crate for easier serializing/deserizalizing in the future.
The API docs are available here
This library is licensed under Mozilla Public License, v. 2.0. The text of the license is available here.