-
Notifications
You must be signed in to change notification settings - Fork 7
/
Cargo.toml
58 lines (49 loc) · 1.33 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
[package]
name = "pilka"
version = "0.8.2"
authors = ["Alex Komissarov <[email protected]>"]
edition = "2021"
license = "MIT"
description = "Another live-coding tool for creating shaders demos."
repository = "https://github.com/pudnax/pilka/"
readme = "README.md"
keywords = ["graphics", "vulkan", "shaders", "creative"]
exclude = [".gitignore", "examples", ".github", "menger_sponge.png", "screenshots", "recordings", "shader_dump"]
categories = ["command-line-utilities", "graphics", "rendering"]
[badges]
appveyor = { repository = "https://github.com/pudnax/pilka", branch = "master", service = "github" }
maintenance = { status = "experimental" }
[dependencies]
# Ecosystem choice for crossplatform windows
raw-window-handle = "0.6.2"
winit = "0.30"
ash = "0.38"
ash-window = "0.13"
bitflags = "2"
bytemuck = "1.16"
ahash = "0.8"
slotmap = "1.0"
either = "1.13"
parking_lot = "0.12"
gpu-alloc = "0.6.0"
gpu-alloc-ash = "0.7.0"
# Fancy-pants errors
anyhow = "1.0"
# Crossplatform filesystem event handler
notify = "^6"
notify-debouncer-mini = "0.4"
# Deps for image manipulations
chrono = "0.4"
png = "0.17"
crossbeam-channel = "0.5.13"
env_logger = "0.11.3"
# Shader compiler
shaderc = "0.8"
ddsfile = "0.5.2"
log = "0.4.22"
pretty-type-name = "1.0.1"
[profile.deploy]
inherits = "release"
lto = true
[profile.dev.package.'*']
opt-level = 3