forked from n00kii/egui-video
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
36 lines (32 loc) · 901 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
[package]
name = "egui-video"
version = "0.6.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.23.0"
atomic = "0.5.3"
ffmpeg-the-third = "1.2.2"
anyhow = "1.0.75"
timer = "0.2.0"
chrono = "0.4.31"
tempfile = { version = "3.8.1", optional = true }
sdl2 = { version = "0.35.2" }
ringbuf = "0.3.3"
parking_lot = "0.12.1"
itertools = "0.11.0"
nom = "7.1.3"
[dev-dependencies]
rfd = "0.11.0"
eframe = "0.23.0"