You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
881 B
TOML

[package]
name = "svr"
version = "0.1.0"
authors = ["Nick Zana <me@nickzana.dev>"]
edition = "2021"
description = "`svr` is a utility that monitors and downloads livestreams for any site with a youtube-dl extractor."
homepage = "https://git.nickzana.dev/nick/svr"
repository = "https://git.nickzana.dev/nick/svr"
license = "MIT OR Apache-2.0"
keywords = ["youtube-dl", "livestream", "multimedia"]
categories = ["multimedia"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
futures = { version = "0.3.28", features = ["std"] }
humantime-serde = "1.1.1"
serde = { version = "1.0.160", features = ["derive"] }
thiserror = "1.0.40"
tokio = { version = "1.28.0", features = ["macros", "rt-multi-thread", "fs", "io-util", "time"] }
toml = "0.7.3"
xflags = "0.3.1"
youtube_dl = { version = "0.8.0", features = ["tokio"] }