advreader 2.7.1

Split text file into text sequences, strings and (line) comments.
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
name = "advreader"
version = "2.7.1"
authors = ["Martin Bammer <mrbm74@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Split text file into text sequences, strings and (line) comments."
homepage = "https://gitlab.com/brmmm3/advreader"
readme = "README.md"
keywords = ["reader"]
categories = [
    "parsing",
    "text-processing",
]
license = "MIT"
repository = "https://gitlab.com/brmmm3/advreader"
resolver = "2"

[badges.travis-ci]
repository = "brmmm3/advreader"

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

[[example]]
name = "read_dir_block_mode"
path = "examples/read_dir_block_mode.rs"

[[example]]
name = "read_dir_block_mode_threaded"
path = "examples/read_dir_block_mode_threaded.rs"

[[example]]
name = "read_file"
path = "examples/read_file.rs"

[[example]]
name = "read_file_block_mode"
path = "examples/read_file_block_mode.rs"

[[example]]
name = "read_file_by_line"
path = "examples/read_file_by_line.rs"

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

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

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

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

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

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

[[bench]]
name = "big_file"
path = "benches/big_file.rs"
harness = false

[dependencies.encoding_rs]
version = "0.8"
features = [
    "simd-accel",
    "fast-legacy-encode",
]

[dependencies.flume]
version = "0.12"

[dev-dependencies.criterion]
version = "0.8"
features = ["html_reports"]

[dev-dependencies.num_cpus]
version = "1.17"

[dev-dependencies.threadpool]
version = "1.8"