[package]
edition = "2021"
rust-version = "1.85"
name = "ycd-reader"
version = "0.1.0"
build = false
exclude = ["tests/ycd/**"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A Rust library for random-access and sequential reading of y-cruncher YCD digit files"
documentation = "https://docs.rs/ycd-reader"
readme = "README.md"
keywords = [
"ycd",
"y-cruncher",
"pi",
"digits",
"parser",
]
categories = [
"parser-implementations",
"science",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/genhirano/ycd-reader"
[lib]
name = "ycd_reader"
path = "src/lib.rs"
[[test]]
name = "multi_stream"
path = "tests/multi_stream.rs"
[[test]]
name = "multi_stream_from"
path = "tests/multi_stream_from.rs"
[[test]]
name = "read_digits"
path = "tests/read_digits.rs"
[[test]]
name = "seq_stream"
path = "tests/seq_stream.rs"
[[test]]
name = "seq_stream_from"
path = "tests/seq_stream_from.rs"
[[test]]
name = "ycd_file"
path = "tests/ycd_file.rs"
[[test]]
name = "ycd_index"
path = "tests/ycd_index.rs"
[dependencies.strum]
version = "0.28"
[dependencies.strum_macros]
version = "0.28"
[dev-dependencies.filetime]
version = "0.2"