librespot/Cargo.lock

226 lines
7.5 KiB
Plaintext
Raw Normal View History

2015-04-25 20:32:07 +00:00
[root]
name = "librespot"
version = "0.1.0"
dependencies = [
2015-06-23 14:38:29 +00:00
"byteorder 0.3.10 (registry+https://github.com/rust-lang/crates.io-index)",
"lazy_static 0.1.11 (registry+https://github.com/rust-lang/crates.io-index)",
"librespot-protocol 0.1.0",
2015-04-25 20:32:07 +00:00
"mod_path 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
2015-06-23 14:38:29 +00:00
"num 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)",
"portaudio 0.1.2 (git+https://github.com/mvdnes/portaudio-rs)",
"protobuf 1.0.0 (git+https://github.com/stepancheg/rust-protobuf.git)",
2015-04-25 20:32:07 +00:00
"protobuf_macros 0.1.0 (git+https://github.com/plietar/rust-protobuf-macros.git)",
2015-05-05 14:47:34 +00:00
"rand 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
"readall 0.1.0 (git+https://github.com/plietar/rust-readall.git)",
2015-04-25 20:32:07 +00:00
"rust-crypto 0.2.31 (registry+https://github.com/rust-lang/crates.io-index)",
"rust-gmp 0.2.0 (git+https://github.com/plietar/rust-gmp.git)",
"shannon 0.1.0 (git+https://github.com/plietar/rust-shannon.git)",
"vergen 0.0.13 (registry+https://github.com/rust-lang/crates.io-index)",
2015-06-23 14:38:29 +00:00
"vorbis 0.0.11 (git+https://github.com/plietar/vorbis-rs)",
2015-04-25 20:32:07 +00:00
]
[[package]]
name = "bitflags"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2015-06-23 14:38:29 +00:00
[[package]]
name = "bitflags"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2015-04-25 20:32:07 +00:00
[[package]]
name = "byteorder"
2015-06-23 14:38:29 +00:00
version = "0.3.10"
2015-04-25 20:32:07 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
name = "gcc"
2015-06-23 14:38:29 +00:00
version = "0.3.8"
2015-04-25 20:32:07 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
name = "lazy_static"
2015-06-23 14:38:29 +00:00
version = "0.1.11"
2015-04-25 20:32:07 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
name = "libc"
2015-06-23 14:38:29 +00:00
version = "0.1.8"
2015-04-25 20:32:07 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
name = "librespot-protocol"
version = "0.1.0"
dependencies = [
"mod_path 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
2015-06-23 14:38:29 +00:00
"protobuf 1.0.0 (git+https://github.com/stepancheg/rust-protobuf.git)",
]
2015-04-25 20:32:07 +00:00
[[package]]
name = "mod_path"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
name = "num"
2015-06-23 14:38:29 +00:00
version = "0.1.25"
2015-04-25 20:32:07 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
2015-05-05 14:47:34 +00:00
"rand 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
2015-06-23 14:38:29 +00:00
"rustc-serialize 0.3.15 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
name = "ogg-sys"
version = "0.0.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
"gcc 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
"libc 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)",
"pkg-config 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
name = "pkg-config"
version = "0.3.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
name = "portaudio"
version = "0.1.2"
source = "git+https://github.com/mvdnes/portaudio-rs#a6432fb11acebb5a2d9997fc0019eeb482ba435d"
dependencies = [
"bitflags 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
"libc 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)",
"portaudio_sys 0.1.0 (git+https://github.com/mvdnes/portaudio-rs)",
]
[[package]]
name = "portaudio_sys"
version = "0.1.0"
source = "git+https://github.com/mvdnes/portaudio-rs#a6432fb11acebb5a2d9997fc0019eeb482ba435d"
dependencies = [
"libc 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)",
"pkg-config 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)",
2015-04-25 20:32:07 +00:00
]
[[package]]
name = "protobuf"
2015-06-23 14:38:29 +00:00
version = "1.0.0"
source = "git+https://github.com/stepancheg/rust-protobuf.git#d6e80593f38ce47dfa0c4912a3558fa33ee06143"
2015-04-25 20:32:07 +00:00
[[package]]
name = "protobuf_macros"
version = "0.1.0"
2015-06-23 14:38:29 +00:00
source = "git+https://github.com/plietar/rust-protobuf-macros.git#5fa976178a48b01bdf2da6d5e7929367e348ea04"
2015-04-25 20:32:07 +00:00
[[package]]
name = "rand"
2015-05-05 14:47:34 +00:00
version = "0.3.8"
2015-04-25 20:32:07 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
2015-06-23 14:38:29 +00:00
"libc 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)",
2015-04-25 20:32:07 +00:00
]
[[package]]
name = "readall"
version = "0.1.0"
source = "git+https://github.com/plietar/rust-readall.git#d2bcc1de325705230e79ba444cde2f39b469f891"
2015-04-25 20:32:07 +00:00
[[package]]
name = "rust-crypto"
version = "0.2.31"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
2015-06-23 14:38:29 +00:00
"gcc 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
"libc 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)",
2015-05-05 14:47:34 +00:00
"rand 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
2015-06-23 14:38:29 +00:00
"rustc-serialize 0.3.15 (registry+https://github.com/rust-lang/crates.io-index)",
"time 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)",
2015-04-25 20:32:07 +00:00
]
[[package]]
name = "rust-gmp"
version = "0.2.0"
2015-06-23 14:38:29 +00:00
source = "git+https://github.com/plietar/rust-gmp.git#db2bb627165b12ebe18a41a941ac6284ce9b895d"
dependencies = [
"num 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)",
]
2015-04-25 20:32:07 +00:00
[[package]]
name = "rustc-serialize"
2015-06-23 14:38:29 +00:00
version = "0.3.15"
2015-04-25 20:32:07 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
name = "shannon"
version = "0.1.0"
2015-06-23 14:38:29 +00:00
source = "git+https://github.com/plietar/rust-shannon.git#c6be8a879a523a77d81c50df46faa891b76fea25"
dependencies = [
2015-06-23 14:38:29 +00:00
"byteorder 0.3.10 (registry+https://github.com/rust-lang/crates.io-index)",
"readall 0.1.0 (git+https://github.com/plietar/rust-readall.git)",
"shannon-sys 0.1.0 (git+https://github.com/plietar/rust-shannon.git)",
]
[[package]]
name = "shannon-sys"
version = "0.1.0"
2015-06-23 14:38:29 +00:00
source = "git+https://github.com/plietar/rust-shannon.git#c6be8a879a523a77d81c50df46faa891b76fea25"
dependencies = [
2015-06-23 14:38:29 +00:00
"gcc 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
]
2015-04-25 20:32:07 +00:00
[[package]]
name = "time"
2015-06-23 14:38:29 +00:00
version = "0.1.26"
2015-04-25 20:32:07 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
2015-06-23 14:38:29 +00:00
"gcc 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
"libc 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
name = "vergen"
version = "0.0.13"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
2015-06-23 14:38:29 +00:00
"bitflags 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
"time 0.1.26 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
name = "vorbis"
version = "0.0.11"
source = "git+https://github.com/plietar/vorbis-rs#cff6b4222cebd0fb31bcbc2e14a7ba575548c703"
dependencies = [
"libc 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)",
"ogg-sys 0.0.9 (registry+https://github.com/rust-lang/crates.io-index)",
"vorbis-sys 0.0.8 (registry+https://github.com/rust-lang/crates.io-index)",
"vorbisfile-sys 0.0.8 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
name = "vorbis-sys"
version = "0.0.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
"gcc 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
"libc 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)",
"ogg-sys 0.0.9 (registry+https://github.com/rust-lang/crates.io-index)",
"pkg-config 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
name = "vorbisfile-sys"
version = "0.0.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
"gcc 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
"libc 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)",
"ogg-sys 0.0.9 (registry+https://github.com/rust-lang/crates.io-index)",
"pkg-config 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)",
"vorbis-sys 0.0.8 (registry+https://github.com/rust-lang/crates.io-index)",
2015-04-25 20:32:07 +00:00
]