36 lines
943 B
TOML
36 lines
943 B
TOML
[package]
|
|
name = "spt-sync"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
description = "A simple terminal interface for listening to radio record web stations"
|
|
homepage = "https://git.jika.li/Jika/spt-sync"
|
|
#documentation = "https://git.jika.li/Jika/spt-sync"
|
|
repository = "https://git.jika.li/Jika/spt-sync"
|
|
readme = "readme.md"
|
|
license-file = "LICENSE"
|
|
keywords = ["spotify", "subsonic", "cli", "terminal", "sync"]
|
|
categories = ["command-line-utilities"]
|
|
authors = ["Jika"]
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
anyhow = "1.0"
|
|
thiserror = "1.0"
|
|
lazy_static = "1.4"
|
|
log = "0.4"
|
|
env_logger = "0.9"
|
|
|
|
rand="0.8"
|
|
md5="0.7"
|
|
reqwest = "0.11"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
dotenv = "0.15"
|
|
regex = "1"
|
|
|
|
tokio = { version = "1", features = ["full"] }
|
|
tokio-stream = "0.1"
|
|
|
|
rspotify = { version="0.11", features=["cli","async-stream","futures"]} |