Update Cargo.lock, use hyper, libpulse-sys and lewton from crates.io.

This commit is contained in:
Paul Lietar 2017-08-03 21:30:01 +01:00
parent d1447d2bfb
commit 3a18d1f91d
5 changed files with 285 additions and 244 deletions

View file

@ -24,6 +24,7 @@ before_script:
script:
- cargo build --no-default-features
- cargo build --no-default-features --features "with-tremor"
- cargo build --no-default-features --features "with-lewton"
- cargo build --no-default-features --features "portaudio-backend"
- cargo build --no-default-features --features "pulseaudio-backend"
- cargo build --no-default-features --features "alsa-backend"

520
Cargo.lock generated

File diff suppressed because it is too large Load diff

View file

@ -34,7 +34,7 @@ base64 = "0.5.0"
env_logger = "0.4.0"
futures = "0.1.8"
getopts = "0.2.14"
hyper = { git = "https://github.com/hyperium/hyper" }
hyper = "0.11.2"
log = "0.3.5"
mdns = { git = "https://github.com/plietar/rust-mdns" }
num-bigint = "0.1.35"
@ -51,7 +51,7 @@ url = "1.3"
alsa = { git = "https://github.com/plietar/rust-alsa", optional = true }
portaudio-rs = { version = "0.3.0", optional = true }
libpulse-sys = { git = "https://github.com/astro/libpulse-sys", optional = true }
libpulse-sys = { version = "0.0.0", optional = true }
[build-dependencies]
rand = "0.3.13"

View file

@ -18,7 +18,7 @@ tempfile = "2.1"
vorbis = "0.1.0"
tremor = { git = "https://github.com/plietar/rust-tremor", optional = true }
lewton = { git = "https://github.com/RustAudio/lewton", optional = true }
lewton = { version = "0.6.2", optional = true }
[features]
with-tremor = ["tremor"]

View file

@ -12,7 +12,7 @@ base64 = "0.5.0"
byteorder = "1.0"
error-chain = { version = "0.9.0", default_features = false }
futures = "0.1.8"
hyper = { git = "https://github.com/hyperium/hyper" }
hyper = "0.11.2"
lazy_static = "0.2.0"
log = "0.3.5"
num-bigint = "0.1.35"