clippable/api/Cargo.toml
shockrah c53d9a293e ! Finalizing video fetch endpoint
With this the backend is officially at an MVP stage and now requires polishing
Proper data streaming for larger clips is basically required
for a really good backend(especially async streaming)
and some better css for the video player
2021-10-16 18:14:04 -07:00

17 lines
392 B
TOML

[package]
name = "clippable-server"
version = "0.1.0"
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
rocket = { version = "0.5.0-rc.1", features = [ "json" ] }
tokio = "1.0"
serde = { version = "1.0", features = [ "derive" ] }
[dependencies.rocket_dyn_templates]
version = "0.1.0-rc.1"
features = ["tera"]