-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
32 lines (30 loc) 路 871 Bytes
/
Copy pathCargo.toml
File metadata and controls
32 lines (30 loc) 路 871 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
29
30
31
32
[package]
name = "earpeace"
version = "0.1.0"
edition = "2021"
authors = ["Britton Hayes <brittonhayes@github.noreply.com>"]
description = "A friendly tool to normalize Discord soundboard clips"
[dependencies]
ebur128 = "0.1.7"
symphonia = { version = "0.5", features = ["mp3", "wav", "ogg", "vorbis"] }
symphonia-format-ogg = "0.5"
symphonia-bundle-mp3 = "0.5"
symphonia-codec-vorbis = "0.5"
symphonia-codec-pcm = "0.5"
anyhow = "1.0"
clap = { version = "4.0", features = ["derive"] }
log = "0.4"
env_logger = "0.10"
tokio = { version = "1.0", features = ["full"] }
tempfile = "3.8"
serde = { version = "1.0", features = ["derive"] }
reqwest = { version = "0.11", features = ["multipart", "json"] }
dotenv = "0.15"
mp3lame-encoder = "0.2.0"
base64 = "0.21"
serde_json = "1.0.133"
poise = "0.6.1"
thiserror = "1.0"
fundsp = "0.20.0"
[dev-dependencies]
tempfile = "3.8"