-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
30 lines (27 loc) · 960 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
[package]
name = "ooze-rhythm"
version = "0.1.0"
authors = ["Adam Wendt <[email protected]>"]
license = "MIT"
description = "A slime mould audio visualizer"
readme = "README.md"
homepage = "https://github.com/adamipc/ooze-rhythm"
repository = "https://github.com/adamipc/ooze-rhythm"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
#beat-detector = { git = "https://github.com/adamipc/beat-detector.git" }
beat-detector = { path = "../beat-detector/" }
chrono = "0.4.24"
config = "0.13.3"
cpal = { git = "https://github.com/RustAudio/cpal.git", features = ["asio"] }
glium = "0.32.1"
glium-glyph = "0.14.0"
image = "0.24.6"
lerp = { version = "0.4.0", features = ["derive"] }
midir = { version = "0.9.1", features = ["winrt"] }
rand = "0.8.5"
ringbuffer = "0.13.0"
serde = { version = "1.0.160", features = ["serde_derive", "derive"] }
serde_derive = "1.0.160"
yata = "0.6.1"