-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
30 lines (27 loc) · 838 Bytes
/
Cargo.toml
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
[package]
name = "pacmog"
version = "0.5.0"
authors = ["Akiyuki Okayasu <akiyuki.okayasu@gmail.com>"]
description = "PCM decording library"
categories = ["multimedia::audio", "no-std", "embedded", "multimedia::encoding"]
keywords = ["audio", "wav"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/AkiyukiOkayasu/pacmog"
readme = "README.md"
edition = "2021"
rust-version = "1.81.0"
exclude = ["tests/resources/*"]
[dependencies]
arbitrary-int = { version = "1.2.7", default-features = false }
fixed = "1.28.0"
heapless = "0.8.0"
nom = { version = "7.1.3", default-features = false }
thiserror = { version = "2.0.3", default-features = false }
[dev-dependencies]
cpal = "0.15.3"
approx = "0.5.1"
criterion = "0.4.0"
symphonia = { version = "0.5.4", features = ["aiff", "adpcm"] }
[[bench]]
name = "bench"
harness = false