read_utf8 0.1.2

The ReadUTF8 crate allows to easily read a file with efficiency. It allows to read all UTF-8 files encoded, by giving the content between delimiters, or by giving the content character by character.
Documentation
[[bin]]
name = "read_utf8"
path = "src/main.rs"

[dependencies]

[lib]
crate-type = ["rlib"]
name = "read_utf8"
path = "src/lib.rs"

[package]
autobenches = false
autobins = false
autoexamples = false
autotests = false
build = false
categories = ["filesystem"]
description = "The ReadUTF8 crate allows to easily read a file with efficiency. It allows to read all UTF-8 files encoded, by giving the content between delimiters, or by giving the content character by character."
edition = "2021"
exclude = ["tests_files/DDHC_custom_delims.txt", "tests_files/", "tests_files/DDHC_custom_delims_corrupted.txt", "DDHC_custom_delims_corrupted_ref.txt"]
keywords = ["read", "readline", "readchar", "utf8", "utf-8"]
license-file = "LICENSE"
name = "read_utf8"
readme = "README.md"
repository = "https://github.com/FlaveFlav20/ReadUTF8"
version = "0.1.2"

[[test]]
name = "test_non_ascii_char"
path = "tests/test_non_ascii_char.rs"

[[test]]
name = "test_number_bytes"
path = "tests/test_number_bytes.rs"

[[test]]
name = "test_read_char"
path = "tests/test_read_char.rs"

[[test]]
name = "test_read_delim_EOL"
path = "tests/test_read_delim_EOL.rs"

[[test]]
name = "test_read_delim_custom_delims"
path = "tests/test_read_delim_custom_delims.rs"