forked from psiphi75/sonogram
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
28 lines (25 loc) · 789 Bytes
/
Cargo.toml
File metadata and controls
28 lines (25 loc) · 789 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
[package]
name = "sonogram"
description = "A spectrograph utility written in Rust"
version = "0.7.0"
authors = ["Simon M. Werner <simonwerner@gmail.com>"]
license = "GPL-3.0-or-later"
readme = "README.md"
edition = "2021"
repository = "https://github.com/psiphi75/sonogram"
keywords = ["spectrogram", "spectrograph", "audio", "fft", "dft"]
categories = ["multimedia::images", "science", "multimedia::audio", "visualization"]
[features]
default = [ "hound", "png" ]
build-binary = ["clap"]
[[bin]]
name = "sonogram"
required-features = ["build-binary"]
[dependencies]
hound = { version = "3.4", optional = true }
clap = { version = "3.0.14", features = ["derive"], optional = true }
png = { version = "0.14", optional = true }
csv = "1.1"
rustfft = "6.0"
resize = "0.7.2"
rgb = "0.8.25"