25 lines
479 B
TOML
25 lines
479 B
TOML
[package]
|
|
name = "video_player"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
minifb = "0.26.0"
|
|
rand = "0.8.5"
|
|
clap = { version = "3", features = ["derive"] }
|
|
bincode = "1.3.3"
|
|
serde = { version = "1.0.136", features = ["derive"] }
|
|
imageproc = "0.25.0"
|
|
image = "0.25.2"
|
|
rusttype = "0.9.3"
|
|
ab_glyph = "0.2.28"
|
|
lazy_static = "1.5.0"
|
|
little_exif = "0.4.1"
|
|
chrono = "0.4.38"
|
|
|