-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
36 lines (32 loc) · 1.08 KB
/
Cargo.toml
File metadata and controls
36 lines (32 loc) · 1.08 KB
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
[package]
name = "kinochrome"
version = "0.1.0"
edition = "2024"
authors = ["Maroš Grego <maros@grego.site>"]
description = "GPU accelerated raw video processing"
repository = "https://git.sr.ht/~grego/kinochrome"
[dependencies]
# Crates connected to the Kinochrome project
ljpeg = "0.1.2"
mlv = { version = "0.1.0", features = ["serde"] }
dng = "1.5.4"
packbytes = "0.2"
bytemuck = { version = "1", features = ["derive"] }
vulkano = { version = "0.35", features = ["serde"] }
winit = { version = "0.30", default-features = false, features = ["x11", "wayland", "wayland-dlopen", "rwh_06"] }
egui = { version = "0.33", features = ["serde"] }
egui-winit = { version = "0.33", default-features = false, features = ["x11", "wayland", "clipboard"] }
egui-file-dialog = { version = "0.12", default-features = false }
serde = { version = "1", features = ["derive", "rc"] }
toml = "1"
ciborium = "0.2"
foldhash = "0.1"
shlex = "1.3"
[profile.dev]
opt-level = 1 # ljpeg decoding is unusably slow otherwise
lto = false
panic = "abort"
[profile.release]
panic = "abort"
split-debuginfo = "packed"
strip = "symbols"