librespot/core/Cargo.toml

48 lines
990 B
TOML
Raw Normal View History

2017-08-03 18:58:44 +00:00
[package]
name = "librespot-core"
2020-07-29 15:23:41 +00:00
version = "0.1.3"
2017-08-03 18:58:44 +00:00
authors = ["Paul Lietar <paul@lietar.net>"]
build = "build.rs"
description = "The core functionality provided by librespot"
license = "MIT"
repository = "https://github.com/librespot-org/librespot"
edition = "2018"
2017-08-03 18:58:44 +00:00
[dependencies.librespot-protocol]
path = "../protocol"
2020-07-29 15:23:41 +00:00
version = "0.1.3"
2017-08-03 18:58:44 +00:00
[dependencies]
base64 = "0.13"
2019-07-08 08:08:32 +00:00
byteorder = "1.3"
bytes = "0.4"
2019-07-08 08:08:32 +00:00
error-chain = { version = "0.12", default_features = false }
futures = "0.1"
httparse = "1.3"
hyper = "0.11"
hyper-proxy = { version = "0.4", default_features = false }
lazy_static = "1.3"
log = "0.4"
num-bigint = "0.3"
2019-07-08 08:08:32 +00:00
num-integer = "0.1"
num-traits = "0.2"
protobuf = "~2.14.0"
2019-07-08 08:08:32 +00:00
rand = "0.7"
2019-03-15 14:50:15 +00:00
serde = "1.0"
serde_derive = "1.0"
serde_json = "1.0"
shannon = "0.2.0"
2019-07-08 08:08:32 +00:00
tokio-codec = "0.1"
tokio-core = "0.1"
tokio-io = "0.1"
2019-07-08 08:08:32 +00:00
url = "1.7"
uuid = { version = "0.8", features = ["v4"] }
2019-07-08 08:08:32 +00:00
sha-1 = "0.8"
hmac = "0.7"
pbkdf2 = "0.3"
aes = "0.3"
2017-08-03 18:58:44 +00:00
[build-dependencies]
2019-07-08 08:08:32 +00:00
rand = "0.7"
vergen = "3.0.4"