[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"