18 lines
542 B
TOML
18 lines
542 B
TOML
|
|
[package]
|
||
|
|
name = "video2slides"
|
||
|
|
version = "0.1.0"
|
||
|
|
edition.workspace = true
|
||
|
|
license.workspace = true
|
||
|
|
authors.workspace = true
|
||
|
|
description = "video2slides.famzheng.me — 长视频抽帧,逐帧差异比较,拖阈值挑关键画面/幻灯片"
|
||
|
|
|
||
|
|
[dependencies]
|
||
|
|
cube-core = { path = "../../crates/cube-core" }
|
||
|
|
tokio = { workspace = true }
|
||
|
|
axum = { workspace = true, features = ["multipart"] }
|
||
|
|
serde = { workspace = true }
|
||
|
|
serde_json = { workspace = true }
|
||
|
|
tracing = { workspace = true }
|
||
|
|
image = { workspace = true }
|
||
|
|
uuid = { workspace = true }
|