[package]
edition = "2024"
rust-version = "1.85"
name = "mpeg-audio"
version = "0.1.1"
authors = ["NyxWays"]
build = false
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = 'Sans-IO MPEG-1/2/2.5 Layer III ("MP3") elementary stream mux and demux'
readme = "README.md"
license = "MIT OR Apache-2.0"
repository = "https://github.com/nyxways/mediaway"
resolver = "2"
[lib]
name = "mpeg_audio"
path = "src/lib.rs"
[[test]]
name = "demux_exceptions"
path = "tests/demux_exceptions.rs"
[[test]]
name = "roundtrip"
path = "tests/roundtrip.rs"
[dependencies.bytes]
version = "1.10"
[dependencies.thiserror]
version = "2.0"
[lints.clippy]
dbg_macro = "deny"
expect_used = "deny"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
must_use_candidate = "allow"
panic = "deny"
print_stderr = "deny"
print_stdout = "deny"
todo = "deny"
unimplemented = "deny"
unwrap_used = "deny"
[lints.clippy.nursery]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
async_fn_in_trait = "allow"
elided_lifetimes_in_paths = "warn"
missing_docs = "warn"
unreachable_pub = "warn"
unsafe_code = "deny"
unused_must_use = "deny"