scope-tui 0.3.5

A simple oscilloscope/vectorscope/spectroscope for your terminal
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"
name = "scope-tui"
version = "0.3.5"
authors = ["alemi <me@alemi.dev>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A simple oscilloscope/vectorscope/spectroscope for your terminal"
readme = "README.md"
keywords = [
    "cli",
    "tui",
    "audio",
    "visualization",
    "scope",
]
license = "MIT"
repository = "https://github.com/alemidev/scope-tui"

[features]
app = [
    "dep:clap",
    "tui",
]
cpal = ["dep:cpal"]
default = [
    "app",
    "file",
    "cpal",
]
file = []
pulseaudio = [
    "dep:libpulse-binding",
    "dep:libpulse-simple-binding",
]
tui = [
    "dep:ratatui",
    "dep:crossterm",
]

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

[[bin]]
name = "scope-tui"
path = "src/main.rs"
required-features = ["app"]

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

[dependencies.cpal]
version = "0.15"
optional = true

[dependencies.crossterm]
version = "0.29"
optional = true

[dependencies.derive_more]
version = "2.0"
features = [
    "display",
    "from",
]

[dependencies.libpulse-binding]
version = "2.30"
optional = true

[dependencies.libpulse-simple-binding]
version = "2.29"
optional = true

[dependencies.ratatui]
version = "0.29"
features = ["all-widgets"]
optional = true

[dependencies.rustfft]
version = "6.3"

[dependencies.thiserror]
version = "2.0"

[profile.release]
opt-level = "z"
lto = true
codegen-units = 1
panic = "abort"
strip = "symbols"