[package]
edition = "2021"
rust-version = "1.75"
name = "limnifs-write"
version = "0.2.61"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "LimniFS writer pipeline — directory tree to .lim image"
readme = false
license = "Apache-2.0 OR MIT"
repository = "https://github.com/limnifs/limnifs"
[features]
default = []
pipeline-parallelism = ["dep:crossbeam-channel"]
sparse-index = []
[lib]
name = "limnifs_write"
path = "src/lib.rs"
[[test]]
name = "dict_round_trip"
path = "tests/dict_round_trip.rs"
[[test]]
name = "shared_inline_round_trip"
path = "tests/shared_inline_round_trip.rs"
[dependencies.crossbeam-channel]
version = "0.5"
optional = true
[dependencies.limnifs-core]
version = "0.2.61"
[dependencies.limnifs-format]
version = "0.2.61"
[dependencies.memmap2]
version = "0.9"
[dependencies.omnizip-flac]
version = "0.16.75"
[dependencies.rayon]
version = "1.10"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.thiserror]
version = "1.0"
[dependencies.toml]
version = "0.8"
[lints.clippy]
cast_lossless = "allow"
cast_possible_truncation = "allow"
cast_possible_wrap = "allow"
cast_precision_loss = "allow"
cast_sign_loss = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
must_use_candidate = "allow"
return_self_not_must_use = "allow"
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
unsafe_code = "deny"