[INFO] fetching crate semver_constraints 0.1.0... [INFO] testing semver_constraints-0.1.0 against beta-2022-04-10 for beta-1.61-1 [INFO] extracting crate semver_constraints 0.1.0 into /workspace/builds/worker-4/source [INFO] validating manifest of crates.io crate semver_constraints 0.1.0 on toolchain beta-2022-04-10 [INFO] running `Command { std: "/workspace/cargo-home/bin/cargo" "+beta-2022-04-10" "metadata" "--manifest-path" "Cargo.toml" "--no-deps", kill_on_drop: false }` [INFO] started tweaking crates.io crate semver_constraints 0.1.0 [INFO] finished tweaking crates.io crate semver_constraints 0.1.0 [INFO] tweaked toml for crates.io crate semver_constraints 0.1.0 written to /workspace/builds/worker-4/source/Cargo.toml [INFO] running `Command { std: "/workspace/cargo-home/bin/cargo" "+beta-2022-04-10" "generate-lockfile" "--manifest-path" "Cargo.toml" "-Zno-index-update", kill_on_drop: false }` [INFO] running `Command { std: "/workspace/cargo-home/bin/cargo" "+beta-2022-04-10" "fetch" "--manifest-path" "Cargo.toml", kill_on_drop: false }` [INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-4/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-4/source:/opt/rustwide/workdir:ro,Z" "-v" "/var/lib/crater-agent-workspace/cargo-home:/opt/rustwide/cargo-home:ro,Z" "-v" "/var/lib/crater-agent-workspace/rustup-home:/opt/rustwide/rustup-home:ro,Z" "-e" "SOURCE_DIR=/opt/rustwide/workdir" "-e" "CARGO_TARGET_DIR=/opt/rustwide/target" "-e" "CARGO_HOME=/opt/rustwide/cargo-home" "-e" "RUSTUP_HOME=/opt/rustwide/rustup-home" "-w" "/opt/rustwide/workdir" "-m" "1610612736" "--user" "0:0" "--network" "none" "ghcr.io/rust-lang/crates-build-env/linux@sha256:eaef2f80f755933c374d2ae5edccceec0c1312ceb8a4e0b6404e8ab76561e1e5" "/opt/rustwide/cargo-home/bin/cargo" "+beta-2022-04-10" "metadata" "--no-deps" "--format-version=1", kill_on_drop: false }` [INFO] [stdout] 5720d68e2fe776674aa5145da5aa4a5efbdaf6cf502806d75359d0bb292566e3 [INFO] [stderr] WARNING: Your kernel does not support swap limit capabilities or the cgroup is not mounted. Memory limited without swap. [INFO] running `Command { std: "docker" "start" "-a" "5720d68e2fe776674aa5145da5aa4a5efbdaf6cf502806d75359d0bb292566e3", kill_on_drop: false }` [INFO] running `Command { std: "docker" "inspect" "5720d68e2fe776674aa5145da5aa4a5efbdaf6cf502806d75359d0bb292566e3", kill_on_drop: false }` [INFO] running `Command { std: "docker" "rm" "-f" "5720d68e2fe776674aa5145da5aa4a5efbdaf6cf502806d75359d0bb292566e3", kill_on_drop: false }` [INFO] [stdout] 5720d68e2fe776674aa5145da5aa4a5efbdaf6cf502806d75359d0bb292566e3 [INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-4/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-4/source:/opt/rustwide/workdir:ro,Z" "-v" "/var/lib/crater-agent-workspace/cargo-home:/opt/rustwide/cargo-home:ro,Z" "-v" "/var/lib/crater-agent-workspace/rustup-home:/opt/rustwide/rustup-home:ro,Z" "-e" "SOURCE_DIR=/opt/rustwide/workdir" "-e" "CARGO_TARGET_DIR=/opt/rustwide/target" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=--cap-lints=warn" "-e" "CARGO_HOME=/opt/rustwide/cargo-home" "-e" "RUSTUP_HOME=/opt/rustwide/rustup-home" "-w" "/opt/rustwide/workdir" "-m" "1610612736" "--user" "0:0" "--network" "none" "ghcr.io/rust-lang/crates-build-env/linux@sha256:eaef2f80f755933c374d2ae5edccceec0c1312ceb8a4e0b6404e8ab76561e1e5" "/opt/rustwide/cargo-home/bin/cargo" "+beta-2022-04-10" "build" "--frozen" "--message-format=json", kill_on_drop: false }` [INFO] [stderr] WARNING: Your kernel does not support swap limit capabilities or the cgroup is not mounted. Memory limited without swap. [INFO] [stdout] 83e99079ec3ae45612b1d7d16ec30634c2a9246849eda3ac9217c6bf17b0c561 [INFO] running `Command { std: "docker" "start" "-a" "83e99079ec3ae45612b1d7d16ec30634c2a9246849eda3ac9217c6bf17b0c561", kill_on_drop: false }` [INFO] [stderr] Blocking waiting for file lock on package cache [INFO] [stderr] Compiling object v0.27.1 [INFO] [stderr] Compiling nom v4.2.3 [INFO] [stderr] Compiling backtrace v0.3.64 [INFO] [stderr] Compiling failure v0.1.8 [INFO] [stderr] Compiling semver_constraints v0.1.0 (/opt/rustwide/workdir) [INFO] [stdout] warning: use of deprecated macro `tag_s`: Please use `tag` instead [INFO] [stdout] --> src/lib.rs:834:5 [INFO] [stdout] | [INFO] [stdout] 834 | / named!(bare_version_minor, do_parse!( [INFO] [stdout] 835 | | major: to_u64 >> [INFO] [stdout] 836 | | tag_s!(".") >> [INFO] [stdout] 837 | | minor: to_u64 >> [INFO] [stdout] 838 | | ((Version::new(major, minor, 0), true, false)) [INFO] [stdout] 839 | | )); [INFO] [stdout] | |______^ [INFO] [stdout] | [INFO] [stdout] = note: `#[warn(deprecated)]` on by default [INFO] [stdout] = note: this warning originates in the macro `do_parse` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated macro `take_while1_s`: Please use `take_while1` instead [INFO] [stdout] --> src/lib.rs:841:5 [INFO] [stdout] | [INFO] [stdout] 841 | / named!(bare_version_from_str, [INFO] [stdout] 842 | | map_res!(take_while1_s!(version_char), |s: CompleteStr| Version::parse(s.0).map(|v| (v, true, true))) [INFO] [stdout] 843 | | ); [INFO] [stdout] | |_____^ [INFO] [stdout] | [INFO] [stdout] = note: this warning originates in the macro `map_res` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated macro `take_while1_s`: Please use `take_while1` instead [INFO] [stdout] --> src/lib.rs:841:5 [INFO] [stdout] | [INFO] [stdout] 841 | / named!(bare_version_from_str, [INFO] [stdout] 842 | | map_res!(take_while1_s!(version_char), |s: CompleteStr| Version::parse(s.0).map(|v| (v, true, true))) [INFO] [stdout] 843 | | ); [INFO] [stdout] | |_____^ [INFO] [stdout] | [INFO] [stdout] = note: this warning originates in the macro `take_while1_s` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated macro `tag_s`: Please use `tag` instead [INFO] [stdout] --> src/lib.rs:849:5 [INFO] [stdout] | [INFO] [stdout] 849 | / named!(range_caret>, ws!(do_parse!( [INFO] [stdout] 850 | | opt!(tag_s!("^")) >> [INFO] [stdout] 851 | | version: bare_version >> [INFO] [stdout] 852 | | (Range::new(Interval::Closed(version.0.clone(), false), Interval::Open(increment_caret(version.0, version.1, version.2), false))) [INFO] [stdout] 853 | | ))); [INFO] [stdout] | |_______^ [INFO] [stdout] | [INFO] [stdout] = note: this warning originates in the macro `opt` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated macro `tag_s`: Please use `tag` instead [INFO] [stdout] --> src/lib.rs:855:5 [INFO] [stdout] | [INFO] [stdout] 855 | / named!(range_tilde>, ws!(do_parse!( [INFO] [stdout] 856 | | tag_s!("~") >> [INFO] [stdout] 857 | | version: bare_version >> [INFO] [stdout] 858 | | (Range::new(Interval::Closed(version.0.clone(), false), Interval::Open(increment_tilde(version.0, version.1, version.2), false))) [INFO] [stdout] 859 | | ))); [INFO] [stdout] | |_______^ [INFO] [stdout] | [INFO] [stdout] = note: this warning originates in the macro `wrap_sep` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated macro `tag_s`: Please use `tag` instead [INFO] [stdout] --> src/lib.rs:862:5 [INFO] [stdout] | [INFO] [stdout] 862 | / named!(range_interval>, ws!(do_parse!( [INFO] [stdout] 863 | | lower: opt!(ws!(do_parse!( [INFO] [stdout] 864 | | tag_s!(">") >> [INFO] [stdout] 865 | | a: opt!(tag_s!("=")) >> [INFO] [stdout] ... | [INFO] [stdout] 877 | | (build_range(lower, upper)) [INFO] [stdout] 878 | | ))); [INFO] [stdout] | |_______^ [INFO] [stdout] | [INFO] [stdout] = note: this warning originates in the macro `wrap_sep` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated macro `tag_s`: Please use `tag` instead [INFO] [stdout] --> src/lib.rs:862:5 [INFO] [stdout] | [INFO] [stdout] 862 | / named!(range_interval>, ws!(do_parse!( [INFO] [stdout] 863 | | lower: opt!(ws!(do_parse!( [INFO] [stdout] 864 | | tag_s!(">") >> [INFO] [stdout] 865 | | a: opt!(tag_s!("=")) >> [INFO] [stdout] ... | [INFO] [stdout] 877 | | (build_range(lower, upper)) [INFO] [stdout] 878 | | ))); [INFO] [stdout] | |_______^ [INFO] [stdout] | [INFO] [stdout] = note: this warning originates in the macro `opt` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated macro `tag_s`: Please use `tag` instead [INFO] [stdout] --> src/lib.rs:862:5 [INFO] [stdout] | [INFO] [stdout] 862 | / named!(range_interval>, ws!(do_parse!( [INFO] [stdout] 863 | | lower: opt!(ws!(do_parse!( [INFO] [stdout] 864 | | tag_s!(">") >> [INFO] [stdout] 865 | | a: opt!(tag_s!("=")) >> [INFO] [stdout] ... | [INFO] [stdout] 877 | | (build_range(lower, upper)) [INFO] [stdout] 878 | | ))); [INFO] [stdout] | |_______^ [INFO] [stdout] | [INFO] [stdout] = note: this warning originates in the macro `opt` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated macro `tag_s`: Please use `tag` instead [INFO] [stdout] --> src/lib.rs:862:5 [INFO] [stdout] | [INFO] [stdout] 862 | / named!(range_interval>, ws!(do_parse!( [INFO] [stdout] 863 | | lower: opt!(ws!(do_parse!( [INFO] [stdout] 864 | | tag_s!(">") >> [INFO] [stdout] 865 | | a: opt!(tag_s!("=")) >> [INFO] [stdout] ... | [INFO] [stdout] 877 | | (build_range(lower, upper)) [INFO] [stdout] 878 | | ))); [INFO] [stdout] | |_______^ [INFO] [stdout] | [INFO] [stdout] = note: this warning originates in the macro `wrap_sep` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated macro `tag_s`: Please use `tag` instead [INFO] [stdout] --> src/lib.rs:862:5 [INFO] [stdout] | [INFO] [stdout] 862 | / named!(range_interval>, ws!(do_parse!( [INFO] [stdout] 863 | | lower: opt!(ws!(do_parse!( [INFO] [stdout] 864 | | tag_s!(">") >> [INFO] [stdout] 865 | | a: opt!(tag_s!("=")) >> [INFO] [stdout] ... | [INFO] [stdout] 877 | | (build_range(lower, upper)) [INFO] [stdout] 878 | | ))); [INFO] [stdout] | |_______^ [INFO] [stdout] | [INFO] [stdout] = note: this warning originates in the macro `opt` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated macro `tag_s`: Please use `tag` instead [INFO] [stdout] --> src/lib.rs:862:5 [INFO] [stdout] | [INFO] [stdout] 862 | / named!(range_interval>, ws!(do_parse!( [INFO] [stdout] 863 | | lower: opt!(ws!(do_parse!( [INFO] [stdout] 864 | | tag_s!(">") >> [INFO] [stdout] 865 | | a: opt!(tag_s!("=")) >> [INFO] [stdout] ... | [INFO] [stdout] 877 | | (build_range(lower, upper)) [INFO] [stdout] 878 | | ))); [INFO] [stdout] | |_______^ [INFO] [stdout] | [INFO] [stdout] = note: this warning originates in the macro `opt` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated macro `tag_s`: Please use `tag` instead [INFO] [stdout] --> src/lib.rs:880:5 [INFO] [stdout] | [INFO] [stdout] 880 | / named!(range_any>, do_parse!( [INFO] [stdout] 881 | | tag_s!("any") >> [INFO] [stdout] 882 | | (Range::new(Interval::Unbounded, Interval::Unbounded)) [INFO] [stdout] 883 | | )); [INFO] [stdout] | |______^ [INFO] [stdout] | [INFO] [stdout] = note: this warning originates in the macro `do_parse` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated macro `nom::tag_s`: Please use `tag` instead [INFO] [stdout] --> src/lib.rs:758:92 [INFO] [stdout] | [INFO] [stdout] 758 | alt, alt_complete, digit, do_parse, map, map_res, named, opt, separated_list, tag, tag_s, [INFO] [stdout] | ^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated macro `nom::take_while1_s`: Please use `take_while1` instead [INFO] [stdout] --> src/lib.rs:759:9 [INFO] [stdout] | [INFO] [stdout] 759 | take_while1_s, types::CompleteStr, ws, [INFO] [stdout] | ^^^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: 14 warnings emitted [INFO] [stdout] [INFO] [stdout] [INFO] [stderr] Finished dev [unoptimized + debuginfo] target(s) in 15.17s [INFO] running `Command { std: "docker" "inspect" "83e99079ec3ae45612b1d7d16ec30634c2a9246849eda3ac9217c6bf17b0c561", kill_on_drop: false }` [INFO] running `Command { std: "docker" "rm" "-f" "83e99079ec3ae45612b1d7d16ec30634c2a9246849eda3ac9217c6bf17b0c561", kill_on_drop: false }` [INFO] [stdout] 83e99079ec3ae45612b1d7d16ec30634c2a9246849eda3ac9217c6bf17b0c561 [INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-4/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-4/source:/opt/rustwide/workdir:ro,Z" "-v" "/var/lib/crater-agent-workspace/cargo-home:/opt/rustwide/cargo-home:ro,Z" "-v" "/var/lib/crater-agent-workspace/rustup-home:/opt/rustwide/rustup-home:ro,Z" "-e" "SOURCE_DIR=/opt/rustwide/workdir" "-e" "CARGO_TARGET_DIR=/opt/rustwide/target" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=--cap-lints=warn" "-e" "CARGO_HOME=/opt/rustwide/cargo-home" "-e" "RUSTUP_HOME=/opt/rustwide/rustup-home" "-w" "/opt/rustwide/workdir" "-m" "1610612736" "--user" "0:0" "--network" "none" "ghcr.io/rust-lang/crates-build-env/linux@sha256:eaef2f80f755933c374d2ae5edccceec0c1312ceb8a4e0b6404e8ab76561e1e5" "/opt/rustwide/cargo-home/bin/cargo" "+beta-2022-04-10" "test" "--frozen" "--no-run" "--message-format=json", kill_on_drop: false }` [INFO] [stdout] f2fd52505c7367b28e93b213ec3dd4161ee69709ccfc822b8a8b4eca80124e8a [INFO] [stderr] WARNING: Your kernel does not support swap limit capabilities or the cgroup is not mounted. Memory limited without swap. [INFO] running `Command { std: "docker" "start" "-a" "f2fd52505c7367b28e93b213ec3dd4161ee69709ccfc822b8a8b4eca80124e8a", kill_on_drop: false }` [INFO] [stdout] warning: use of deprecated macro `tag_s`: Please use `tag` instead [INFO] [stdout] --> src/lib.rs:834:5 [INFO] [stdout] | [INFO] [stdout] 834 | / named!(bare_version_minor, do_parse!( [INFO] [stdout] 835 | | major: to_u64 >> [INFO] [stdout] 836 | | tag_s!(".") >> [INFO] [stdout] 837 | | minor: to_u64 >> [INFO] [stdout] 838 | | ((Version::new(major, minor, 0), true, false)) [INFO] [stdout] 839 | | )); [INFO] [stdout] | |______^ [INFO] [stdout] | [INFO] [stdout] = note: `#[warn(deprecated)]` on by default [INFO] [stdout] = note: this warning originates in the macro `do_parse` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated macro `take_while1_s`: Please use `take_while1` instead [INFO] [stdout] --> src/lib.rs:841:5 [INFO] [stdout] | [INFO] [stdout] 841 | / named!(bare_version_from_str, [INFO] [stdout] 842 | | map_res!(take_while1_s!(version_char), |s: CompleteStr| Version::parse(s.0).map(|v| (v, true, true))) [INFO] [stdout] 843 | | ); [INFO] [stdout] | |_____^ [INFO] [stdout] | [INFO] [stdout] = note: this warning originates in the macro `map_res` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated macro `take_while1_s`: Please use `take_while1` instead [INFO] [stdout] --> src/lib.rs:841:5 [INFO] [stdout] | [INFO] [stdout] 841 | / named!(bare_version_from_str, [INFO] [stdout] 842 | | map_res!(take_while1_s!(version_char), |s: CompleteStr| Version::parse(s.0).map(|v| (v, true, true))) [INFO] [stdout] 843 | | ); [INFO] [stdout] | |_____^ [INFO] [stdout] | [INFO] [stdout] = note: this warning originates in the macro `take_while1_s` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated macro `tag_s`: Please use `tag` instead [INFO] [stdout] --> src/lib.rs:849:5 [INFO] [stdout] | [INFO] [stdout] 849 | / named!(range_caret>, ws!(do_parse!( [INFO] [stdout] 850 | | opt!(tag_s!("^")) >> [INFO] [stdout] 851 | | version: bare_version >> [INFO] [stdout] 852 | | (Range::new(Interval::Closed(version.0.clone(), false), Interval::Open(increment_caret(version.0, version.1, version.2), false))) [INFO] [stdout] 853 | | ))); [INFO] [stdout] | |_______^ [INFO] [stdout] | [INFO] [stdout] = note: this warning originates in the macro `opt` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated macro `tag_s`: Please use `tag` instead [INFO] [stdout] --> src/lib.rs:855:5 [INFO] [stdout] | [INFO] [stdout] 855 | / named!(range_tilde>, ws!(do_parse!( [INFO] [stdout] 856 | | tag_s!("~") >> [INFO] [stdout] 857 | | version: bare_version >> [INFO] [stdout] 858 | | (Range::new(Interval::Closed(version.0.clone(), false), Interval::Open(increment_tilde(version.0, version.1, version.2), false))) [INFO] [stdout] 859 | | ))); [INFO] [stdout] | |_______^ [INFO] [stdout] | [INFO] [stdout] = note: this warning originates in the macro `wrap_sep` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated macro `tag_s`: Please use `tag` instead [INFO] [stdout] --> src/lib.rs:862:5 [INFO] [stdout] | [INFO] [stdout] 862 | / named!(range_interval>, ws!(do_parse!( [INFO] [stdout] 863 | | lower: opt!(ws!(do_parse!( [INFO] [stdout] 864 | | tag_s!(">") >> [INFO] [stdout] 865 | | a: opt!(tag_s!("=")) >> [INFO] [stdout] ... | [INFO] [stdout] 877 | | (build_range(lower, upper)) [INFO] [stdout] 878 | | ))); [INFO] [stdout] | |_______^ [INFO] [stdout] | [INFO] [stdout] = note: this warning originates in the macro `wrap_sep` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated macro `tag_s`: Please use `tag` instead [INFO] [stdout] --> src/lib.rs:862:5 [INFO] [stdout] | [INFO] [stdout] 862 | / named!(range_interval>, ws!(do_parse!( [INFO] [stdout] 863 | | lower: opt!(ws!(do_parse!( [INFO] [stdout] 864 | | tag_s!(">") >> [INFO] [stdout] 865 | | a: opt!(tag_s!("=")) >> [INFO] [stdout] ... | [INFO] [stdout] 877 | | (build_range(lower, upper)) [INFO] [stdout] 878 | | ))); [INFO] [stdout] | |_______^ [INFO] [stdout] | [INFO] [stdout] = note: this warning originates in the macro `opt` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated macro `tag_s`: Please use `tag` instead [INFO] [stdout] --> src/lib.rs:862:5 [INFO] [stdout] | [INFO] [stdout] 862 | / named!(range_interval>, ws!(do_parse!( [INFO] [stdout] 863 | | lower: opt!(ws!(do_parse!( [INFO] [stdout] 864 | | tag_s!(">") >> [INFO] [stdout] 865 | | a: opt!(tag_s!("=")) >> [INFO] [stdout] ... | [INFO] [stdout] 877 | | (build_range(lower, upper)) [INFO] [stdout] 878 | | ))); [INFO] [stdout] | |_______^ [INFO] [stdout] | [INFO] [stdout] = note: this warning originates in the macro `opt` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated macro `tag_s`: Please use `tag` instead [INFO] [stdout] --> src/lib.rs:862:5 [INFO] [stdout] | [INFO] [stdout] 862 | / named!(range_interval>, ws!(do_parse!( [INFO] [stdout] 863 | | lower: opt!(ws!(do_parse!( [INFO] [stdout] 864 | | tag_s!(">") >> [INFO] [stdout] 865 | | a: opt!(tag_s!("=")) >> [INFO] [stdout] ... | [INFO] [stdout] 877 | | (build_range(lower, upper)) [INFO] [stdout] 878 | | ))); [INFO] [stdout] | |_______^ [INFO] [stdout] | [INFO] [stdout] = note: this warning originates in the macro `wrap_sep` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated macro `tag_s`: Please use `tag` instead [INFO] [stdout] --> src/lib.rs:862:5 [INFO] [stdout] | [INFO] [stdout] 862 | / named!(range_interval>, ws!(do_parse!( [INFO] [stdout] 863 | | lower: opt!(ws!(do_parse!( [INFO] [stdout] 864 | | tag_s!(">") >> [INFO] [stdout] 865 | | a: opt!(tag_s!("=")) >> [INFO] [stdout] ... | [INFO] [stdout] 877 | | (build_range(lower, upper)) [INFO] [stdout] 878 | | ))); [INFO] [stdout] | |_______^ [INFO] [stdout] | [INFO] [stdout] = note: this warning originates in the macro `opt` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated macro `tag_s`: Please use `tag` instead [INFO] [stdout] --> src/lib.rs:862:5 [INFO] [stdout] | [INFO] [stdout] 862 | / named!(range_interval>, ws!(do_parse!( [INFO] [stdout] 863 | | lower: opt!(ws!(do_parse!( [INFO] [stdout] 864 | | tag_s!(">") >> [INFO] [stdout] 865 | | a: opt!(tag_s!("=")) >> [INFO] [stdout] ... | [INFO] [stdout] 877 | | (build_range(lower, upper)) [INFO] [stdout] 878 | | ))); [INFO] [stdout] | |_______^ [INFO] [stdout] | [INFO] [stdout] = note: this warning originates in the macro `opt` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stderr] Compiling semver_constraints v0.1.0 (/opt/rustwide/workdir) [INFO] [stdout] warning: use of deprecated macro `tag_s`: Please use `tag` instead [INFO] [stdout] --> src/lib.rs:880:5 [INFO] [stdout] | [INFO] [stdout] 880 | / named!(range_any>, do_parse!( [INFO] [stdout] 881 | | tag_s!("any") >> [INFO] [stdout] 882 | | (Range::new(Interval::Unbounded, Interval::Unbounded)) [INFO] [stdout] 883 | | )); [INFO] [stdout] | |______^ [INFO] [stdout] | [INFO] [stdout] = note: this warning originates in the macro `do_parse` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated macro `nom::tag_s`: Please use `tag` instead [INFO] [stdout] --> src/lib.rs:758:92 [INFO] [stdout] | [INFO] [stdout] 758 | alt, alt_complete, digit, do_parse, map, map_res, named, opt, separated_list, tag, tag_s, [INFO] [stdout] | ^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated macro `nom::take_while1_s`: Please use `take_while1` instead [INFO] [stdout] --> src/lib.rs:759:9 [INFO] [stdout] | [INFO] [stdout] 759 | take_while1_s, types::CompleteStr, ws, [INFO] [stdout] | ^^^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: 14 warnings emitted [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated macro `tag_s`: Please use `tag` instead [INFO] [stdout] --> src/lib.rs:834:5 [INFO] [stdout] | [INFO] [stdout] 834 | / named!(bare_version_minor, do_parse!( [INFO] [stdout] 835 | | major: to_u64 >> [INFO] [stdout] 836 | | tag_s!(".") >> [INFO] [stdout] 837 | | minor: to_u64 >> [INFO] [stdout] 838 | | ((Version::new(major, minor, 0), true, false)) [INFO] [stdout] 839 | | )); [INFO] [stdout] | |______^ [INFO] [stdout] | [INFO] [stdout] = note: `#[warn(deprecated)]` on by default [INFO] [stdout] = note: this warning originates in the macro `do_parse` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated macro `take_while1_s`: Please use `take_while1` instead [INFO] [stdout] --> src/lib.rs:841:5 [INFO] [stdout] | [INFO] [stdout] 841 | / named!(bare_version_from_str, [INFO] [stdout] 842 | | map_res!(take_while1_s!(version_char), |s: CompleteStr| Version::parse(s.0).map(|v| (v, true, true))) [INFO] [stdout] 843 | | ); [INFO] [stdout] | |_____^ [INFO] [stdout] | [INFO] [stdout] = note: this warning originates in the macro `map_res` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated macro `take_while1_s`: Please use `take_while1` instead [INFO] [stdout] --> src/lib.rs:841:5 [INFO] [stdout] | [INFO] [stdout] 841 | / named!(bare_version_from_str, [INFO] [stdout] 842 | | map_res!(take_while1_s!(version_char), |s: CompleteStr| Version::parse(s.0).map(|v| (v, true, true))) [INFO] [stdout] 843 | | ); [INFO] [stdout] | |_____^ [INFO] [stdout] | [INFO] [stdout] = note: this warning originates in the macro `take_while1_s` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated macro `tag_s`: Please use `tag` instead [INFO] [stdout] --> src/lib.rs:849:5 [INFO] [stdout] | [INFO] [stdout] 849 | / named!(range_caret>, ws!(do_parse!( [INFO] [stdout] 850 | | opt!(tag_s!("^")) >> [INFO] [stdout] 851 | | version: bare_version >> [INFO] [stdout] 852 | | (Range::new(Interval::Closed(version.0.clone(), false), Interval::Open(increment_caret(version.0, version.1, version.2), false))) [INFO] [stdout] 853 | | ))); [INFO] [stdout] | |_______^ [INFO] [stdout] | [INFO] [stdout] = note: this warning originates in the macro `opt` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated macro `tag_s`: Please use `tag` instead [INFO] [stdout] --> src/lib.rs:855:5 [INFO] [stdout] | [INFO] [stdout] 855 | / named!(range_tilde>, ws!(do_parse!( [INFO] [stdout] 856 | | tag_s!("~") >> [INFO] [stdout] 857 | | version: bare_version >> [INFO] [stdout] 858 | | (Range::new(Interval::Closed(version.0.clone(), false), Interval::Open(increment_tilde(version.0, version.1, version.2), false))) [INFO] [stdout] 859 | | ))); [INFO] [stdout] | |_______^ [INFO] [stdout] | [INFO] [stdout] = note: this warning originates in the macro `wrap_sep` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated macro `tag_s`: Please use `tag` instead [INFO] [stdout] --> src/lib.rs:862:5 [INFO] [stdout] | [INFO] [stdout] 862 | / named!(range_interval>, ws!(do_parse!( [INFO] [stdout] 863 | | lower: opt!(ws!(do_parse!( [INFO] [stdout] 864 | | tag_s!(">") >> [INFO] [stdout] 865 | | a: opt!(tag_s!("=")) >> [INFO] [stdout] ... | [INFO] [stdout] 877 | | (build_range(lower, upper)) [INFO] [stdout] 878 | | ))); [INFO] [stdout] | |_______^ [INFO] [stdout] | [INFO] [stdout] = note: this warning originates in the macro `wrap_sep` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated macro `tag_s`: Please use `tag` instead [INFO] [stdout] --> src/lib.rs:862:5 [INFO] [stdout] | [INFO] [stdout] 862 | / named!(range_interval>, ws!(do_parse!( [INFO] [stdout] 863 | | lower: opt!(ws!(do_parse!( [INFO] [stdout] 864 | | tag_s!(">") >> [INFO] [stdout] 865 | | a: opt!(tag_s!("=")) >> [INFO] [stdout] ... | [INFO] [stdout] 877 | | (build_range(lower, upper)) [INFO] [stdout] 878 | | ))); [INFO] [stdout] | |_______^ [INFO] [stdout] | [INFO] [stdout] = note: this warning originates in the macro `opt` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated macro `tag_s`: Please use `tag` instead [INFO] [stdout] --> src/lib.rs:862:5 [INFO] [stdout] | [INFO] [stdout] 862 | / named!(range_interval>, ws!(do_parse!( [INFO] [stdout] 863 | | lower: opt!(ws!(do_parse!( [INFO] [stdout] 864 | | tag_s!(">") >> [INFO] [stdout] 865 | | a: opt!(tag_s!("=")) >> [INFO] [stdout] ... | [INFO] [stdout] 877 | | (build_range(lower, upper)) [INFO] [stdout] 878 | | ))); [INFO] [stdout] | |_______^ [INFO] [stdout] | [INFO] [stdout] = note: this warning originates in the macro `opt` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated macro `tag_s`: Please use `tag` instead [INFO] [stdout] --> src/lib.rs:862:5 [INFO] [stdout] | [INFO] [stdout] 862 | / named!(range_interval>, ws!(do_parse!( [INFO] [stdout] 863 | | lower: opt!(ws!(do_parse!( [INFO] [stdout] 864 | | tag_s!(">") >> [INFO] [stdout] 865 | | a: opt!(tag_s!("=")) >> [INFO] [stdout] ... | [INFO] [stdout] 877 | | (build_range(lower, upper)) [INFO] [stdout] 878 | | ))); [INFO] [stdout] | |_______^ [INFO] [stdout] | [INFO] [stdout] = note: this warning originates in the macro `wrap_sep` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated macro `tag_s`: Please use `tag` instead [INFO] [stdout] --> src/lib.rs:862:5 [INFO] [stdout] | [INFO] [stdout] 862 | / named!(range_interval>, ws!(do_parse!( [INFO] [stdout] 863 | | lower: opt!(ws!(do_parse!( [INFO] [stdout] 864 | | tag_s!(">") >> [INFO] [stdout] 865 | | a: opt!(tag_s!("=")) >> [INFO] [stdout] ... | [INFO] [stdout] 877 | | (build_range(lower, upper)) [INFO] [stdout] 878 | | ))); [INFO] [stdout] | |_______^ [INFO] [stdout] | [INFO] [stdout] = note: this warning originates in the macro `opt` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated macro `tag_s`: Please use `tag` instead [INFO] [stdout] --> src/lib.rs:862:5 [INFO] [stdout] | [INFO] [stdout] 862 | / named!(range_interval>, ws!(do_parse!( [INFO] [stdout] 863 | | lower: opt!(ws!(do_parse!( [INFO] [stdout] 864 | | tag_s!(">") >> [INFO] [stdout] 865 | | a: opt!(tag_s!("=")) >> [INFO] [stdout] ... | [INFO] [stdout] 877 | | (build_range(lower, upper)) [INFO] [stdout] 878 | | ))); [INFO] [stdout] | |_______^ [INFO] [stdout] | [INFO] [stdout] = note: this warning originates in the macro `opt` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated macro `tag_s`: Please use `tag` instead [INFO] [stdout] --> src/lib.rs:880:5 [INFO] [stdout] | [INFO] [stdout] 880 | / named!(range_any>, do_parse!( [INFO] [stdout] 881 | | tag_s!("any") >> [INFO] [stdout] 882 | | (Range::new(Interval::Unbounded, Interval::Unbounded)) [INFO] [stdout] 883 | | )); [INFO] [stdout] | |______^ [INFO] [stdout] | [INFO] [stdout] = note: this warning originates in the macro `do_parse` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated macro `nom::tag_s`: Please use `tag` instead [INFO] [stdout] --> src/lib.rs:758:92 [INFO] [stdout] | [INFO] [stdout] 758 | alt, alt_complete, digit, do_parse, map, map_res, named, opt, separated_list, tag, tag_s, [INFO] [stdout] | ^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated macro `nom::take_while1_s`: Please use `take_while1` instead [INFO] [stdout] --> src/lib.rs:759:9 [INFO] [stdout] | [INFO] [stdout] 759 | take_while1_s, types::CompleteStr, ws, [INFO] [stdout] | ^^^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: 14 warnings emitted [INFO] [stdout] [INFO] [stdout] [INFO] [stderr] Finished test [unoptimized + debuginfo] target(s) in 3.93s [INFO] [stderr] Executable unittests src/lib.rs (/opt/rustwide/target/debug/deps/semver_constraints-f17a54d8009c4d9b) [INFO] running `Command { std: "docker" "inspect" "f2fd52505c7367b28e93b213ec3dd4161ee69709ccfc822b8a8b4eca80124e8a", kill_on_drop: false }` [INFO] running `Command { std: "docker" "rm" "-f" "f2fd52505c7367b28e93b213ec3dd4161ee69709ccfc822b8a8b4eca80124e8a", kill_on_drop: false }` [INFO] [stdout] f2fd52505c7367b28e93b213ec3dd4161ee69709ccfc822b8a8b4eca80124e8a [INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-4/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-4/source:/opt/rustwide/workdir:ro,Z" "-v" "/var/lib/crater-agent-workspace/cargo-home:/opt/rustwide/cargo-home:ro,Z" "-v" "/var/lib/crater-agent-workspace/rustup-home:/opt/rustwide/rustup-home:ro,Z" "-e" "SOURCE_DIR=/opt/rustwide/workdir" "-e" "CARGO_TARGET_DIR=/opt/rustwide/target" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=--cap-lints=warn" "-e" "CARGO_HOME=/opt/rustwide/cargo-home" "-e" "RUSTUP_HOME=/opt/rustwide/rustup-home" "-w" "/opt/rustwide/workdir" "-m" "1610612736" "--user" "0:0" "--network" "none" "ghcr.io/rust-lang/crates-build-env/linux@sha256:eaef2f80f755933c374d2ae5edccceec0c1312ceb8a4e0b6404e8ab76561e1e5" "/opt/rustwide/cargo-home/bin/cargo" "+beta-2022-04-10" "test" "--frozen", kill_on_drop: false }` [INFO] [stdout] cc372b22048ad4741ce7346f08bcdfc8d8108a4b9112af459faf019406c5b0b2 [INFO] [stderr] WARNING: Your kernel does not support swap limit capabilities or the cgroup is not mounted. Memory limited without swap. [INFO] running `Command { std: "docker" "start" "-a" "cc372b22048ad4741ce7346f08bcdfc8d8108a4b9112af459faf019406c5b0b2", kill_on_drop: false }` [INFO] [stderr] warning: use of deprecated macro `tag_s`: Please use `tag` instead [INFO] [stderr] --> src/lib.rs:834:5 [INFO] [stderr] | [INFO] [stderr] 834 | / named!(bare_version_minor, do_parse!( [INFO] [stderr] 835 | | major: to_u64 >> [INFO] [stderr] 836 | | tag_s!(".") >> [INFO] [stderr] 837 | | minor: to_u64 >> [INFO] [stderr] 838 | | ((Version::new(major, minor, 0), true, false)) [INFO] [stderr] 839 | | )); [INFO] [stderr] | |______^ [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(deprecated)]` on by default [INFO] [stderr] = note: this warning originates in the macro `do_parse` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: use of deprecated macro `take_while1_s`: Please use `take_while1` instead [INFO] [stderr] --> src/lib.rs:841:5 [INFO] [stderr] | [INFO] [stderr] 841 | / named!(bare_version_from_str, [INFO] [stderr] 842 | | map_res!(take_while1_s!(version_char), |s: CompleteStr| Version::parse(s.0).map(|v| (v, true, true))) [INFO] [stderr] 843 | | ); [INFO] [stderr] | |_____^ [INFO] [stderr] | [INFO] [stderr] = note: this warning originates in the macro `map_res` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: use of deprecated macro `take_while1_s`: Please use `take_while1` instead [INFO] [stderr] --> src/lib.rs:841:5 [INFO] [stderr] | [INFO] [stderr] 841 | / named!(bare_version_from_str, [INFO] [stderr] 842 | | map_res!(take_while1_s!(version_char), |s: CompleteStr| Version::parse(s.0).map(|v| (v, true, true))) [INFO] [stderr] 843 | | ); [INFO] [stderr] | |_____^ [INFO] [stderr] | [INFO] [stderr] = note: this warning originates in the macro `take_while1_s` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: use of deprecated macro `tag_s`: Please use `tag` instead [INFO] [stderr] --> src/lib.rs:849:5 [INFO] [stderr] | [INFO] [stderr] 849 | / named!(range_caret>, ws!(do_parse!( [INFO] [stderr] 850 | | opt!(tag_s!("^")) >> [INFO] [stderr] 851 | | version: bare_version >> [INFO] [stderr] 852 | | (Range::new(Interval::Closed(version.0.clone(), false), Interval::Open(increment_caret(version.0, version.1, version.2), false))) [INFO] [stderr] 853 | | ))); [INFO] [stderr] | |_______^ [INFO] [stderr] | [INFO] [stderr] = note: this warning originates in the macro `opt` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: use of deprecated macro `tag_s`: Please use `tag` instead [INFO] [stderr] --> src/lib.rs:855:5 [INFO] [stderr] | [INFO] [stderr] 855 | / named!(range_tilde>, ws!(do_parse!( [INFO] [stderr] 856 | | tag_s!("~") >> [INFO] [stderr] 857 | | version: bare_version >> [INFO] [stderr] 858 | | (Range::new(Interval::Closed(version.0.clone(), false), Interval::Open(increment_tilde(version.0, version.1, version.2), false))) [INFO] [stderr] 859 | | ))); [INFO] [stderr] | |_______^ [INFO] [stderr] | [INFO] [stderr] = note: this warning originates in the macro `wrap_sep` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: use of deprecated macro `tag_s`: Please use `tag` instead [INFO] [stderr] --> src/lib.rs:862:5 [INFO] [stderr] | [INFO] [stderr] 862 | / named!(range_interval>, ws!(do_parse!( [INFO] [stderr] 863 | | lower: opt!(ws!(do_parse!( [INFO] [stderr] 864 | | tag_s!(">") >> [INFO] [stderr] 865 | | a: opt!(tag_s!("=")) >> [INFO] [stderr] ... | [INFO] [stderr] 877 | | (build_range(lower, upper)) [INFO] [stderr] 878 | | ))); [INFO] [stderr] | |_______^ [INFO] [stderr] | [INFO] [stderr] = note: this warning originates in the macro `wrap_sep` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: use of deprecated macro `tag_s`: Please use `tag` instead [INFO] [stderr] --> src/lib.rs:862:5 [INFO] [stderr] | [INFO] [stderr] 862 | / named!(range_interval>, ws!(do_parse!( [INFO] [stderr] 863 | | lower: opt!(ws!(do_parse!( [INFO] [stderr] 864 | | tag_s!(">") >> [INFO] [stderr] 865 | | a: opt!(tag_s!("=")) >> [INFO] [stderr] ... | [INFO] [stderr] 877 | | (build_range(lower, upper)) [INFO] [stderr] 878 | | ))); [INFO] [stderr] | |_______^ [INFO] [stderr] | [INFO] [stderr] = note: this warning originates in the macro `opt` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: use of deprecated macro `tag_s`: Please use `tag` instead [INFO] [stderr] --> src/lib.rs:880:5 [INFO] [stderr] | [INFO] [stderr] 880 | / named!(range_any>, do_parse!( [INFO] [stderr] 881 | | tag_s!("any") >> [INFO] [stderr] 882 | | (Range::new(Interval::Unbounded, Interval::Unbounded)) [INFO] [stderr] 883 | | )); [INFO] [stderr] | |______^ [INFO] [stderr] | [INFO] [stderr] = note: this warning originates in the macro `do_parse` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: use of deprecated macro `nom::tag_s`: Please use `tag` instead [INFO] [stderr] --> src/lib.rs:758:92 [INFO] [stderr] | [INFO] [stderr] 758 | alt, alt_complete, digit, do_parse, map, map_res, named, opt, separated_list, tag, tag_s, [INFO] [stderr] | ^^^^^ [INFO] [stderr] [INFO] [stderr] warning: use of deprecated macro `nom::take_while1_s`: Please use `take_while1` instead [INFO] [stderr] --> src/lib.rs:759:9 [INFO] [stderr] | [INFO] [stderr] 759 | take_while1_s, types::CompleteStr, ws, [INFO] [stderr] | ^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: `semver_constraints` (lib) generated 14 warnings (4 duplicates) [INFO] [stderr] warning: `semver_constraints` (lib test) generated 14 warnings (14 duplicates) [INFO] [stderr] Finished test [unoptimized + debuginfo] target(s) in 0.07s [INFO] [stderr] Running unittests src/lib.rs (/opt/rustwide/target/debug/deps/semver_constraints-f17a54d8009c4d9b) [INFO] [stdout] [INFO] [stdout] running 17 tests [INFO] [stdout] test tests::constraint_complement ... ok [INFO] [stdout] test tests::constraint_complement_single ... ok [INFO] [stdout] test tests::constraint_difference ... ok [INFO] [stdout] test tests::constraint_difference_any_union ... ok [INFO] [stdout] test tests::constraint_subset ... ok [INFO] [stdout] test tests::range_pre_ok ... ok [INFO] [stdout] test tests::range_parse_caret ... ok [INFO] [stdout] test tests::range_parse_manual ... ok [INFO] [stdout] test tests::range_parse_tilde ... ok [INFO] [stdout] test tests::version_single ... ok [INFO] [stdout] test tests::constraint_relation_opposite ... ok [INFO] [stdout] test tests::constraint_relation_single ... ok [INFO] [stdout] test tests::constraint_difference_any ... ok [INFO] [stdout] test tests::version_parse ... ok [INFO] [stdout] test tests::constraint_complement_correct ... ok [INFO] [stdout] test tests::constraint_relation ... ok [INFO] [stdout] test tests::constraint_complement_symmetry ... ok [INFO] [stdout] [INFO] [stdout] test result: ok. 17 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.01s [INFO] [stdout] [INFO] [stderr] Doc-tests semver_constraints [INFO] [stdout] [INFO] [stdout] running 0 tests [INFO] [stdout] [INFO] [stdout] test result: ok. 0 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.00s [INFO] [stdout] [INFO] running `Command { std: "docker" "inspect" "cc372b22048ad4741ce7346f08bcdfc8d8108a4b9112af459faf019406c5b0b2", kill_on_drop: false }` [INFO] running `Command { std: "docker" "rm" "-f" "cc372b22048ad4741ce7346f08bcdfc8d8108a4b9112af459faf019406c5b0b2", kill_on_drop: false }` [INFO] [stdout] cc372b22048ad4741ce7346f08bcdfc8d8108a4b9112af459faf019406c5b0b2