[package] name = "aspotify" description = "Deprecated in favour of rspotify" version = "0.7.1" readme = "README.md" repository = "https://github.com/KaiJewson/aspotify" keywords = ["Spotify", "API", "Asynchronous"] categories = ["api-bindings", "asynchronous", "authentication", "web-programming", "web-programming::http-client"] license = "MIT OR Apache-2.0" authors = ["KaiJewson "] edition = "2018" [dependencies] reqwest = { version = "0.11.0", features = ["json"] } # reqwest doesn't re-export url::{ParseError, Position} url = "2.2.0" # For the mutex around AccessToken and the Retry-After delay tokio = { version = "1.0.1", features = ["sync", "time"] } # Serde serde = { version = "1.0.118", features = ["derive"] } serde_millis = "0.1.1" serde_json = "1.0.60" # Datatypes used in the Spotify schema chrono = { version = "0.4.19", features = ["serde"] } isocountry = "0.3.2" isolanguage-1 = { version = "0.2.0", features = ["serde"] } # For joining iterators of T: Display with "," and chunking ids into groups itertools = "0.10.0" # For managing streams futures-util = "0.3.8" # For generating random state rand = { version = "0.8.1", optional = true } # For encoding playlist cover images base64 = { version = "0.13.0", optional = true } [dev-dependencies] dotenv = "0.15.0" tokio = { version = "1.0.1", features = ["macros", "rt-multi-thread"] } [features] default = ["base64", "rand"] [[example]] name = "refresh_file" required-features = ["rand"]