2022-12-24 03:04:49 +01:00
|
|
|
[package]
|
|
|
|
name = "scope-tui"
|
2023-09-17 07:10:08 +02:00
|
|
|
version = "0.2.2"
|
2022-12-24 03:04:49 +01:00
|
|
|
edition = "2021"
|
2022-12-24 06:23:18 +01:00
|
|
|
authors = [ "alemi <me@alemi.dev>" ]
|
2022-12-26 03:12:20 +01:00
|
|
|
description = "A simple oscilloscope/vectorscope for the terminal, inspired by cava"
|
2022-12-24 06:23:18 +01:00
|
|
|
keywords = ["tui", "terminal", "audio", "visualization", "scope", "dashboard"]
|
|
|
|
repository = "https://github.com/alemidev/scope-tui"
|
|
|
|
readme = "README.md"
|
|
|
|
# documentation =
|
|
|
|
# license =
|
2022-12-24 03:04:49 +01:00
|
|
|
|
|
|
|
|
|
|
|
[dependencies]
|
2023-09-18 00:56:51 +02:00
|
|
|
ratatui = { version = "0.23.0", features = ["all-widgets"] }
|
2022-12-24 03:04:49 +01:00
|
|
|
crossterm = "0.25"
|
|
|
|
libpulse-binding = "2.0"
|
|
|
|
libpulse-simple-binding = "2.25"
|
|
|
|
clap = { version = "4.0.32", features = ["derive"] }
|
2023-09-17 03:51:44 +02:00
|
|
|
derive_more = "0.99.17"
|
|
|
|
thiserror = "1.0.48"
|
2023-09-18 00:57:16 +02:00
|
|
|
rustfft = "6.1.0"
|