Some checks failed
ci / fmt + clippy + test (push) Has been cancelled
The decoder is intrinsic to what beat does, so gating it behind an off-by-default feature produced a green build that excluded the core capability — a false signal. Remove the `ffmpeg` feature from beat-data and beat-cli, drop the cfg gates on the decode module and the no-ffmpeg process_one fallback, and revert the readme build note. Building and testing now require the FFmpeg dev libraries, as they should. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
26 lines
611 B
TOML
26 lines
611 B
TOML
[package]
|
|
name = "beat-cli"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
license.workspace = true
|
|
authors.workspace = true
|
|
|
|
[[bin]]
|
|
name = "beat"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
beat-entities = { workspace = true }
|
|
beat-core = { workspace = true }
|
|
beat-data = { workspace = true }
|
|
tokio = { workspace = true }
|
|
tokio-util = { workspace = true }
|
|
clap = { workspace = true }
|
|
figment = { workspace = true }
|
|
tracing = { workspace = true }
|
|
tracing-subscriber = { workspace = true }
|
|
anyhow = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
walkdir = { workspace = true }
|