-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
61 lines (52 loc) · 1.23 KB
/
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
[package]
name = "phantoma"
version = "0.1.0"
authors = ["Jack Foltz <[email protected]>"]
edition = "2021"
[dependencies]
# Gfx
winit = "0.25"
wgpu = { version = "0.11", features = ["spirv"] }
wgpu_async_staging = "0.1"
wgpu_glyph = { path = "./wgpu_glyph" }
glyph_brush = "0.7"
# Gfx Support
#wavefront_obj = "8.0.0"
#obj = "0.10.1"
gltf = { version = "0.16", features = ["KHR_lights_punctual", "KHR_materials_unlit"] }
image = "0.24"
# Lib
log = "0.4.11"
pretty_env_logger = "0.4.0"
anyhow = "1"
thiserror = "1"
# Math
cgmath = "0.18"
splines = { version = "4", features = ["impl-cgmath"] }
min-max = "0.1"
# Audio
# jack = "0.7"
apodize = "1"
ringbuf = "0.2"
rustfft = "6"
# MIDI / OSC
# midir = { version = "0.7", features = ["jack"] }
midir = "0.7"
rosc = "0.5"
crossbeam-queue = "0.3"
twitchchat = { version = "0.14.5", features = ["async", "async-std"] }
# Async
tokio = { version = "1", features = ["rt-multi-thread", "sync", "time", "net"] }
tokio-util = "0.6"
#async-scoped = "0.4.1"
futures = "0.3.6"
parking_lot = "0.11"
# Util
bytemuck = { version = "1.4.1", features = ["derive"] }
safe-transmute = "0.11.0"
enum_dispatch = "0.3.3"
petgraph = "0.6"
itertools = "0.10"
rust-embed = { path = "./rust-embed" }
[dev-dependencies]
rand = "0.8"