mirror of
https://github.com/librespot-org/librespot.git
synced 2024-11-08 16:45:43 +00:00
Bump dependencies. Use eventual from registry again.
This commit is contained in:
parent
0ebe8b9e82
commit
009d4e9019
2 changed files with 15 additions and 17 deletions
12
Cargo.lock
generated
12
Cargo.lock
generated
|
@ -4,13 +4,13 @@ version = "0.1.0"
|
|||
dependencies = [
|
||||
"bit-set 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"byteorder 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"eventual 0.1.4 (git+https://github.com/carllerche/eventual.git)",
|
||||
"eventual 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"getopts 0.2.14 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"lazy_static 0.1.15 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"librespot-protocol 0.1.0",
|
||||
"num 0.1.29 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"portaudio 0.1.2 (git+https://github.com/mvdnes/portaudio-rs)",
|
||||
"protobuf 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"protobuf 1.0.9 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"protobuf_macros 0.1.0 (git+https://github.com/plietar/rust-protobuf-macros.git)",
|
||||
"rand 0.3.12 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"rpassword 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
|
@ -56,8 +56,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|||
|
||||
[[package]]
|
||||
name = "eventual"
|
||||
version = "0.1.4"
|
||||
source = "git+https://github.com/carllerche/eventual.git#43fdda25a0a275fec919bc449a159797362b28a2"
|
||||
version = "0.1.5"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
dependencies = [
|
||||
"log 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"syncbox 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
|
@ -116,7 +116,7 @@ name = "librespot-protocol"
|
|||
version = "0.1.0"
|
||||
dependencies = [
|
||||
"mod_path 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"protobuf 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
"protobuf 1.0.9 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
|
@ -177,7 +177,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "protobuf"
|
||||
version = "1.0.6"
|
||||
version = "1.0.9"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
|
||||
[[package]]
|
||||
|
|
20
Cargo.toml
20
Cargo.toml
|
@ -18,17 +18,17 @@ path = "protocol"
|
|||
[dependencies]
|
||||
bit-set = "~0.2.0"
|
||||
byteorder = "~0.4.2"
|
||||
#eventual = "~0.1.4"
|
||||
eventual = "~0.1.5"
|
||||
getopts = "~0.2.14"
|
||||
lazy_static = "~0.1.14"
|
||||
num = "~0.1.27"
|
||||
protobuf = "~1.0.4"
|
||||
rand = "~0.3.11"
|
||||
lazy_static = "~0.1.15"
|
||||
num = "~0.1.29"
|
||||
protobuf = "~1.0.9"
|
||||
rand = "~0.3.12"
|
||||
rpassword = "~0.1.0"
|
||||
rust-crypto = "~0.2.31"
|
||||
time = "~0.1.32"
|
||||
tempfile = "~1.1.1"
|
||||
vorbis = "~0.0.12"
|
||||
rust-crypto = "~0.2.34"
|
||||
time = "~0.1.34"
|
||||
tempfile = "~1.1.3"
|
||||
vorbis = "~0.0.13"
|
||||
|
||||
[dependencies.protobuf_macros]
|
||||
git = "https://github.com/plietar/rust-protobuf-macros.git"
|
||||
|
@ -36,8 +36,6 @@ git = "https://github.com/plietar/rust-protobuf-macros.git"
|
|||
git = "https://github.com/plietar/rust-shannon.git"
|
||||
[dependencies.portaudio]
|
||||
git = "https://github.com/mvdnes/portaudio-rs"
|
||||
[dependencies.eventual]
|
||||
git = "https://github.com/carllerche/eventual.git"
|
||||
|
||||
[build-dependencies]
|
||||
vergen = "~0.0.16"
|
||||
|
|
Loading…
Reference in a new issue