-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
39 lines (37 loc) · 954 Bytes
/
Cargo.toml
File metadata and controls
39 lines (37 loc) · 954 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
33
34
35
36
37
38
39
[package]
name = "gseq"
version = "0.2.0"
edition = "2021"
license = "GPL-3.0"
readme = "README.md"
repository = "https://github.com/jeudine/gseq"
authors = ["Julien Eudine <julien@eudine.fr>", "Marius Debussche <marius.debussche@gmail.com>"]
categories = ["rendering", "multimedia","graphics" ]
description = "A realtime visual performance program reacting to the audio input."
include = ["/src", "/shader", "/models", "/image", "LICENSE", "README"]
[dependencies]
winit = "0.28.7"
env_logger = "0.10"
log = "0.4"
wgpu = "0.14"
pollster = "0.2"
bytemuck = { version = "1.12", features = [ "derive" ] }
# Algebra library
cgmath = "0.18"
# Load the .obj
tobj = "4.0"
# Audio
cpal = "0.15.0"
realfft = "3.2.0"
rand = "0.8.5"
promptly = "0.3.1"
crossterm = "0.27.0"
# Texture images
image = "0.24.7"
# Error handling
thiserror = "1.0.50"
fs-err = "2.11.0"
ahash = "0.8.10"
clap = { version = "4.5.17", features = ["derive"] }
[profile.release]
lto = true