Thomas Kolb
ff018a98e1
Start experimenting with Rust. This is a little experimental, but fully functional real-time FFT program based on the FFTW library.
13 lines
380 B
TOML
13 lines
380 B
TOML
[package]
|
|
name = "musiclight"
|
|
version = "0.1.0"
|
|
authors = ["Thomas Kolb <cfr34k-git@tkolb.de>"]
|
|
edition = "2018"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
byteorder = "1.4"
|
|
fftw = { version = "0.6", default-features = false, features = ["system"] }
|
|
mlua = { version = "0.5", features = ["lua53"] }
|