20 lines
589 B
TOML
20 lines
589 B
TOML
[package]
|
|
name = "five_five_five"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
eframe = "0.22.0"
|
|
linuxvideo = { path = "deps/LinuxVideo" }
|
|
serde = { version = "1.0.188", features = ["derive"] }
|
|
serde_json = "1.0.107"
|
|
thiserror = "1.0.48"
|
|
tokio = { version = "1.32.0", features = ["full"] }
|
|
zune-core = { path = "deps/zune-image/zune-core" }
|
|
zune-jpeg = { path = "deps/zune-image/zune-jpeg", default-features = false, features = ["std"] }
|
|
|
|
[profile.dev.package.zune-jpeg]
|
|
opt-level = 3
|