slowrx 0.2.0

Pure-Rust SSTV (Slow-Scan TV) decoder library — a port of slowrx by Oona Räisänen
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
rust-version = "1.85"
name = "slowrx"
version = "0.2.0"
authors = ["Jason Herald <jason.herald@gmail.com>"]
build = false
include = [
    "src/**/*",
    "Cargo.toml",
    "README.md",
    "LICENSE",
    "NOTICE.md",
    "CHANGELOG.md",
    "docs/intentional-deviations.md",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Pure-Rust SSTV (Slow-Scan TV) decoder library — a port of slowrx by Oona Räisänen"
homepage = "https://github.com/jasonherald/slowrx.rs"
documentation = "https://docs.rs/slowrx"
readme = "README.md"
keywords = [
    "sstv",
    "ham-radio",
    "amateur-radio",
    "decoder",
    "dsp",
]
categories = [
    "multimedia",
    "science",
]
license = "MIT"
repository = "https://github.com/jasonherald/slowrx.rs"

[features]
cli = [
    "dep:hound",
    "dep:image",
    "dep:clap",
    "dep:anyhow",
]
test-support = []

[lib]
name = "slowrx"
path = "src/lib.rs"

[[bin]]
name = "slowrx-cli"
path = "src/bin/slowrx_cli.rs"
required-features = ["cli"]

[dependencies.anyhow]
version = "1"
optional = true

[dependencies.clap]
version = "4"
features = ["derive"]
optional = true

[dependencies.hound]
version = "3"
optional = true

[dependencies.image]
version = "0.25"
features = ["png"]
optional = true
default-features = false

[dependencies.rustfft]
version = "6"

[dependencies.thiserror]
version = "2"

[dev-dependencies.assert_cmd]
version = "2"

[dev-dependencies.proptest]
version = "1"

[lints.clippy]
expect_used = "warn"
panic = "warn"
unwrap_used = "warn"

[lints.clippy.all]
level = "warn"
priority = -1

[lints.clippy.pedantic]
level = "warn"
priority = -1

[lints.rust]
unsafe_code = "deny"