audiotater/Cargo.toml

22 lines
469 B
TOML
Raw Normal View History

2023-05-27 00:50:55 +02:00
[package]
2023-06-28 00:58:05 +02:00
name = "audiotater"
2023-06-28 22:56:24 +02:00
description = "Ensures all input files are fully annotated, then outputs to TFRecord's"
2023-05-27 00:50:55 +02:00
version = "0.1.0"
edition = "2021"
[dependencies]
clap = { version = "4.3.0", features = ["derive"] }
cpal = "0.15.2"
2023-05-27 03:09:48 +02:00
crossterm = "0.26.1"
magic = "0.13.0"
minimp3 = "0.5.1"
2023-05-31 03:11:10 +02:00
rand = "0.8.5"
2023-05-31 01:42:33 +02:00
serde = { version = "1.0.163", features = ["derive"] }
serde_json = "1.0.96"
simple-mutex = "1.1.5"
xattr = "1.0.0"
2023-06-30 00:58:18 +02:00
[[bin]]
name = "tater"
path = "src/main.rs"