summaryrefslogtreecommitdiffstats
path: root/Cargo.toml
blob: 54e0a587db167d38ae009c01c499b0f759506f9c (plain)
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
[package]
name = "wgsl-view"
version = "0.1.0"
edition = "2021"

[lib]
name = "wgsl_view"
path = "src/lib.rs"

[[bin]]
name = "wgsl-render"
path = "src/bin/wgsl_render.rs"

[[bin]]
name = "tsv-view"
path = "src/bin/tsv_view.rs"

[[bin]]
name = "tsv-video-stream"
path = "src/bin/tsv_video_stream.rs"

[[bin]]
name = "tsv-video-buffer"
path = "src/bin/tsv_video_buffer.rs"

[build-dependencies]
bindgen = "0.71"

[dependencies]
ffmpeg-next = "8"
winit = "0.30"
env_logger = "0.10"
log = "0.4"
wgpu = { version = "29", features = ["vulkan"] }
wgpu-hal = "29"
ash = "0.38"
naga = { version = "29", features = ["wgsl-in"] }
pollster = "0.4"
rosc = "0.11"
bytemuck = { version = "1", features = ["derive"] }
wesl = "0.3"
texture-share-vk-client = { git = "https://github.com/s-ol/texture-share-vk.git", branch = "3d-textures" }
thiserror = "2.0.18"