diff options
author | Sven-Hendrik Haase <svenstaro@gmail.com> | 2019-04-16 00:30:41 +0000 |
---|---|---|
committer | Sven-Hendrik Haase <svenstaro@gmail.com> | 2019-04-16 00:30:41 +0000 |
commit | 236a1ae107fc1291e3154d2b941aebdd3992a23e (patch) | |
tree | f3d4f76adee971b5328c91ed4ac710e50147dfe2 | |
parent | Enable RUST_BACKTRACE=1 on travis (diff) | |
download | miniserve-236a1ae107fc1291e3154d2b941aebdd3992a23e.tar.gz miniserve-236a1ae107fc1291e3154d2b941aebdd3992a23e.zip |
Try using port_check to make travis happy
-rw-r--r-- | Cargo.lock | 9 | ||||
-rw-r--r-- | Cargo.toml | 2 | ||||
-rw-r--r-- | tests/cli.rs | 4 |
3 files changed, 6 insertions, 9 deletions
@@ -1112,7 +1112,7 @@ dependencies = [ "maud 0.20.0 (registry+https://github.com/rust-lang/crates.io-index)", "nanoid 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "percent-encoding 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)", - "portpicker 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "port_check 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "reqwest 0.9.15 (registry+https://github.com/rust-lang/crates.io-index)", "rexpect 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", "select 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1388,12 +1388,9 @@ version = "0.3.14" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] -name = "portpicker" +name = "port_check" version = "0.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", -] [[package]] name = "precomputed-hash" @@ -2819,7 +2816,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" "checksum phf_generator 0.7.24 (registry+https://github.com/rust-lang/crates.io-index)" = "09364cc93c159b8b06b1f4dd8a4398984503483891b0c26b867cf431fb132662" "checksum phf_shared 0.7.24 (registry+https://github.com/rust-lang/crates.io-index)" = "234f71a15de2288bcb7e3b6515828d22af7ec8598ee6d24c3b526fa0a80b67a0" "checksum pkg-config 0.3.14 (registry+https://github.com/rust-lang/crates.io-index)" = "676e8eb2b1b4c9043511a9b7bea0915320d7e502b0a079fb03f9635a5252b18c" -"checksum portpicker 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "5b497d05c16fe00939445c00a4fe2fa4f3d3dfc9c0401a3ab5c577afda2debb9" +"checksum port_check 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "07b35c1e72f8aa543d10c69ed0fa63356cbe8521a5ac7288a50fb1b4d683977a" "checksum precomputed-hash 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c" "checksum predicates 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "fa984b7cd021a0bf5315bcce4c4ae61d2a535db2a8d288fc7578638690a7b7c3" "checksum predicates-core 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "06075c3a3e92559ff8929e7a280684489ea27fe44805174c3ebd9328dcb37178" @@ -52,4 +52,4 @@ rexpect = "0.3" reqwest = "0.9" assert_fs = "0.11" select = "0.4" -portpicker = "0.1" +port_check = "0.1" diff --git a/tests/cli.rs b/tests/cli.rs index a4b3051..ed10f10 100644 --- a/tests/cli.rs +++ b/tests/cli.rs @@ -2,7 +2,7 @@ use assert_cmd::prelude::*; use assert_fs::fixture::TempDir; use assert_fs::prelude::*; use clap::{crate_name, crate_version}; -use portpicker::pick_unused_port; +use port_check::free_local_port; use reqwest; use select::document::Document; use select::predicate::Text; @@ -50,7 +50,7 @@ fn starts_ok_with_no_option() -> Result<(), Error> { fn starts_ok_with_non_default_port() -> Result<(), Error> { let tmpdir = tmpdir()?; - let port = pick_unused_port().unwrap(); + let port = free_local_port().unwrap(); let mut child = Command::cargo_bin("miniserve")? .arg(tmpdir.path()) .arg("-p") |