-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathCargo.toml
executable file
·61 lines (57 loc) · 1.59 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 = "recorder"
version = "0.1.0"
authors = ["Jaro <[email protected]>"]
repository = "https://github.com/axiom-micro/recorder"
readme = "README.md"
license = "GPL-3.0"
edition = "2021"
[features]
default = []
dhat-heap = ["dhat"]
track-drop = ["backtrace"]
[dependencies]
clap = { version = "3.1.18", features = ["default", "derive"] }
indicatif = "0.17.0"
glob = "0.3.0"
anyhow = "1.0.57"
itertools = "0.10.3"
bytemuck = "1.9.1"
vulkano = "0.30.0"
vulkano-shaders = "0.30.0"
vulkano-win = "0.30.0"
owning_ref = "0.4.1"
shlex = "1.1.0"
winit = "0.26.1"
async-trait = "0.1.56"
futures = "0.3.21"
async-task = "4.2.0"
derivative = "2.2.0"
num_cpus = "1.13.1"
dhat = { version = "0.3.0", optional = true }
backtrace = { version = "0.3.65", optional = true }
serde = { version = "1.0.137", features = ["std", "derive"] }
serde_yaml = "0.9.10"
flume = "0.10.12"
sz3 = { git = "https://github.com/apertus-open-source-cinema/sz3-rs" }
zstd = "0.11.2"
handlebars = "4.3.0"
thiserror = "1.0.31"
narui = { git = "https://github.com/apertus-open-source-cinema/narui" }
vulkano_maybe_molten = "0.30.1"
pollster = "0.2.5"
anymap = "1.0.0-beta.2"
parking_lot = { version = "0.12.1", features = ["send_guard"] }
dng = { version = "1.5.0", features = ["yaml"] }
dav-server = { version = "0.5.2", features = ["hyper"] }
tokio = { version = "1.19.2", features = ["full"] }
hyper = { version = "0.14.23", features = ["full"] }
futures-util = "0.3.25"
portpicker = "0.1.1"
[target.'cfg(target_os = "linux")'.dependencies]
v4l = "0.14.0"
v4l2-sys-mit = "0.3.0"
[profile.release]
# debug = 2
# lto = "thin"
# panic = "abort"