[package]
edition = "2024"
rust-version = "1.85"
name = "revelo-reader"
version = "0.4.6"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Input/reader layer for revelo (file and directory sources)."
readme = "README.md"
keywords = [
"file",
"reader",
"io",
"media",
"input",
]
categories = [
"filesystem",
"multimedia",
]
license = "BSD-2-Clause"
repository = "https://github.com/vbasky/revelo"
[lib]
name = "revelo_reader"
path = "src/lib.rs"
[dependencies.revelo-core]
version = "0.4.6"
[lints.clippy]
cast_possible_truncation = "allow"
cast_sign_loss = "allow"
doc_lazy_continuation = "allow"
doc_markdown = "allow"
explicit_counter_loop = "allow"
field_reassign_with_default = "allow"
if_same_then_else = "allow"
manual_checked_ops = "allow"
manual_strip = "allow"
match_like_matches_macro = "allow"
missing_safety_doc = "allow"
needless_range_loop = "allow"
same_item_push = "allow"
type_complexity = "allow"
unusual_byte_groupings = "allow"
unwrap_used = "allow"
vec_init_then_push = "allow"
[lints.rust]
unreachable_pub = "warn"
unused_extern_crates = "warn"
unused_import_braces = "warn"
[lints.rustdoc]
broken_intra_doc_links = "allow"
invalid_html_tags = "allow"