[package]
edition = "2024"
rust-version = "1.91"
name = "mediaway-avcli"
version = "0.1.6"
authors = ["NyxWays"]
build = false
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "AV CLI compatibility frontend (separate from library API; not affiliated with FFmpeg)"
readme = "README.md"
license = "MIT OR Apache-2.0"
repository = "https://github.com/nyxways/mediaway"
resolver = "2"
[[bin]]
name = "mediaway-avcli"
path = "src/main.rs"
[[test]]
name = "mux_cli"
path = "tests/mux_cli.rs"
[dependencies.bytes]
version = "1.10"
[dependencies.mediaway-common]
version = "0.1"
[dependencies.mediaway-container]
version = "0.1"
[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"