-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathCargo.toml
37 lines (33 loc) · 952 Bytes
/
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
[package]
name = "egui-video"
version = "0.9.0"
edition = "2021"
license = "MIT"
description = "a video library for egui"
repository = "https://github.com/n00kii/egui-video"
readme = "README.md"
authors = ["n00kii"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
default = ["sdl2/bundled"]
from_bytes = ["dep:tempfile"]
# will compile sdl2 for you if you do not have it
# this may require other dependancies (see https://github.com/Rust-SDL2/rust-sdl2#bundled-feature)
sdl2-bundled = ["sdl2/bundled"]
[dependencies]
egui = "0.29"
atomic = "0.6.0"
bytemuck = { version = "1.19", features = ["derive"]}
ffmpeg-the-third = "2.0.1"
anyhow = "1.0.86"
timer = "0.2.0"
chrono = "0.4.38"
tempfile = { version = "3.12.0", optional = true }
sdl2 = { version = "0.37.0" }
ringbuf = "0.4.4"
parking_lot = "0.12.3"
itertools = "0.13.0"
nom = "7.1.3"
[dev-dependencies]
rfd = "0.15.0"
eframe = "0.29"