[package] name = "librespot-core" version = "0.3.1" authors = ["Paul Lietar "] build = "build.rs" description = "The core functionality provided by librespot" license = "MIT" repository = "https://github.com/librespot-org/librespot" edition = "2018" [dependencies.librespot-protocol] path = "../protocol" version = "0.3.1" [dependencies] aes = "0.7" base64 = "0.13" byteorder = "1.4" bytes = "1" chrono = "0.4" dns-sd = { version = "0.1.3", optional = true } form_urlencoded = "1.0" futures-core = "0.3" futures-util = { version = "0.3", features = ["alloc", "bilock", "sink", "unstable"] } hmac = "0.11" httparse = "1.3" http = "0.2" hyper = { version = "0.14", features = ["client", "http1", "http2", "tcp"] } hyper-proxy = { version = "0.9.1", default-features = false, features = ["rustls"] } hyper-rustls = { version = "0.22", default-features = false, features = ["native-tokio"] } log = "0.4" num = "0.4" num-bigint = { version = "0.4", features = ["rand"] } num-derive = "0.3" num-integer = "0.1" num-traits = "0.2" once_cell = "1.5.2" parking_lot = { version = "0.11", features = ["deadlock_detection"] } pbkdf2 = { version = "0.8", default-features = false, features = ["hmac"] } priority-queue = "1.1" protobuf = "2.14.0" quick-xml = { version = "0.22", features = ["serialize"] } rand = "0.8" rustls = "0.19" rustls-native-certs = "0.5" serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" sha-1 = "0.9" shannon = "0.2.0" thiserror = "1.0" tokio = { version = "1.5", features = ["io-util", "macros", "net", "parking_lot", "rt", "sync", "time"] } tokio-stream = "0.1.1" tokio-tungstenite = { version = "0.14", default-features = false, features = ["rustls-tls"] } tokio-util = { version = "0.6", features = ["codec"] } url = "2.1" uuid = { version = "0.8", default-features = false, features = ["v4"] } [build-dependencies] rand = "0.8" vergen = "3.0.4" [dev-dependencies] env_logger = "0.8" tokio = { version = "1.0", features = ["macros", "parking_lot"] } [features] with-dns-sd = ["dns-sd"]