oggify/Cargo.toml

21 lines
807 B
TOML
Raw Permalink Normal View History

2019-02-12 21:11:51 +00:00
[package]
name = "oggify"
version = "0.1.0"
authors = ["Lorenzo Pistone <blaffablaffa@gmail.com>"]
edition = "2018"
2019-02-14 11:33:50 +00:00
license = "MIT"
description = "Download Spotify tracks to Ogg Vorbis format with a Premium account"
keywords = ["spotify"]
repository = "https://github.com/pisto/oggify"
readme = "README.md"
2019-02-12 21:11:51 +00:00
[dependencies]
2019-02-14 11:16:43 +00:00
tokio-core = "0.1.17"
2021-12-18 16:42:18 +00:00
librespot-core = { git = "https://github.com/librespot-org/librespot.git", rev = "a3c63b4e055f3ec68432d4a27479bed102e68e9e" }
librespot-metadata = { git = "https://github.com/librespot-org/librespot.git", rev = "a3c63b4e055f3ec68432d4a27479bed102e68e9e" }
librespot-audio = { git = "https://github.com/librespot-org/librespot.git", rev = "a3c63b4e055f3ec68432d4a27479bed102e68e9e" }
2019-02-14 11:16:43 +00:00
regex = "1.1.0"
log = "0.4.6"
2019-02-12 21:11:51 +00:00
env_logger = "0.6.0"
2019-02-14 11:16:43 +00:00
scoped_threadpool = "0.1.9"