twistedfall / opencv-rust

Rust bindings for OpenCV 3 & 4
MIT License
1.97k stars 160 forks source link

iOS x86-64 failed to compile #499

Closed fzyzcjy closed 1 year ago

fzyzcjy commented 1 year ago

Hi thanks for the library! However, with latest opencv-rust, it fails to compile on ios x86-64. It worked well using old versions.

                Undefined symbols for architecture x86_64:
                  "cv::_OutputArray::_OutputArray(std::__1::vector<cv::cuda::GpuMat, std::__1::allocator<cv::cuda::GpuMat> >
                  const&)", referenced from:
                      _cv__OutputArray__OutputArray_const_vectorLGpuMatGR in libvision_utils_rs.a(861949f3aee99742-core.o)
                  "cv::SparseMatConstIterator::operator--()", referenced from:
                      _cv_SparseMatConstIterator_operatorSS in libvision_utils_rs.a(861949f3aee99742-core.o)
                ld: symbol(s) not found for architecture x86_64
                clang: error: linker command failed with exit code 1 (use -v to see invocation)

where my rust code is named vision_utils_rs, and I want to compile it to be used in ios simulator.

  1. Operating system: macos
  2. The way you installed OpenCV: download ios package from official website
  3. OpenCV version: 4.5.3 (tried 4.8.0 then even more errors)
  4. rustc version: rustc 1.64.0 (a55dd71d5 2022-09-19)
  5. Attach the full output of the following command from your project directory: see below

By the way, if upgrade opencv to 4.8.0 it says:

Error (Xcode): Undefined symbol: cv::_OutputArray::_OutputArray(std::__1::vector<cv::cuda::GpuMat, std::__1::allocator<cv::cuda::GpuMat> > const&)

Error (Xcode): Undefined symbol: cv::SparseMatConstIterator::operator--()

Error (Xcode): Undefined symbol: cv::ocl::convertTypeStr(int, int, int, char*, unsigned long)

Error (Xcode): Undefined symbol: cv::ocl::Kernel::run_(int, unsigned long*, unsigned long*, bool, cv::ocl::Queue const&)

full log:

``` [08:47:16.810]: [opencv 0.84.5] === Crate version: Some("0.84.5") [08:47:16.810]: [opencv 0.84.5] === Environment configuration: [08:47:16.811]: [opencv 0.84.5] === OPENCV_PACKAGE_NAME = None [08:47:16.811]: [opencv 0.84.5] === OPENCV_PKGCONFIG_NAME = None [08:47:16.811]: [opencv 0.84.5] === OPENCV_CMAKE_NAME = None [08:47:16.811]: [opencv 0.84.5] === OPENCV_CMAKE_BIN = None [08:47:16.811]: [opencv 0.84.5] === OPENCV_VCPKG_NAME = None [08:47:16.811]: [opencv 0.84.5] === OPENCV_LINK_LIBS = Some("opencv2.framework") [08:47:16.811]: [opencv 0.84.5] === OPENCV_LINK_PATHS = Some("/Users/tom/Main/yplusplus/frontend/vision_utils/vision_utils_flutter_wrapper/ios") [08:47:16.811]: [opencv 0.84.5] === OPENCV_INCLUDE_PATHS = Some("/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/temp_ios_headers") [08:47:16.811]: [opencv 0.84.5] === OPENCV_DISABLE_PROBES = None [08:47:16.811]: [opencv 0.84.5] === OPENCV_MSVC_CRT = None [08:47:16.811]: [opencv 0.84.5] === CMAKE_PREFIX_PATH = None [08:47:16.811]: [opencv 0.84.5] === OpenCV_DIR = None [08:47:16.811]: [opencv 0.84.5] === PKG_CONFIG_PATH = None [08:47:16.811]: [opencv 0.84.5] === VCPKG_ROOT = None [08:47:16.811]: [opencv 0.84.5] === VCPKGRS_DYNAMIC = None [08:47:16.811]: [opencv 0.84.5] === VCPKGRS_TRIPLET = None [08:47:16.811]: [opencv 0.84.5] === OCVRS_DOCS_GENERATE_DIR = None [08:47:16.811]: [opencv 0.84.5] === DOCS_RS = None [08:47:16.811]: [opencv 0.84.5] === PATH = Some("/Users/tom/opt/protocurl/bin:/Users/tom/opt/depot_tools:/Users/tom/Library/Android/sdk/platform-tools:/Users/tom/opt:/Users/tom/.pub-cache/bin:/Users/tom/fvm/default/bin:/Users/tom/opt/anaconda3/bin:/Users/tom/opt/anaconda3/condabin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/Library/TeX/texbin:/Library/Apple/usr/bin:/Users/tom/.cargo/bin:/Users/tom/.pub-cache/bin") [08:47:16.811]: [opencv 0.84.5] === Enabled features: [08:47:16.812]: [opencv 0.84.5] === IMGCODECS [08:47:16.812]: [opencv 0.84.5] === IMGPROC [08:47:16.812]: [opencv 0.84.5] === RGB [08:47:16.812]: [opencv 0.84.5] === Detected probe priority based on environment vars: pkg_config: false, cmake: false, vcpkg: false [08:47:16.812]: [opencv 0.84.5] === Probing the OpenCV library in the following order: environment, pkg_config, cmake, vcpkg_cmake, vcpkg [08:47:16.812]: [opencv 0.84.5] === Configuring OpenCV library from the environment: [08:47:16.812]: [opencv 0.84.5] === include_paths: /Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/temp_ios_headers [08:47:16.812]: [opencv 0.84.5] === link_paths: /Users/tom/Main/yplusplus/frontend/vision_utils/vision_utils_flutter_wrapper/ios [08:47:16.812]: [opencv 0.84.5] === link_libs: opencv2.framework [08:47:16.815]: [opencv 0.84.5] === Successfully probed using: environment [08:47:16.815]: [opencv 0.84.5] === OpenCV library configuration: Library { [08:47:16.815]: [opencv 0.84.5] include_paths: [ [08:47:16.815]: [opencv 0.84.5] "/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/temp_ios_headers", [08:47:16.815]: [opencv 0.84.5] ], [08:47:16.815]: [opencv 0.84.5] version: Version { [08:47:16.815]: [opencv 0.84.5] major: 4, [08:47:16.815]: [opencv 0.84.5] minor: 5, [08:47:16.815]: [opencv 0.84.5] patch: 3, [08:47:16.815]: [opencv 0.84.5] }, [08:47:16.816]: [opencv 0.84.5] cargo_metadata: [ [08:47:16.816]: [opencv 0.84.5] "cargo:rustc-link-search=/Users/tom/Main/yplusplus/frontend/vision_utils/vision_utils_flutter_wrapper/ios", [08:47:16.816]: [opencv 0.84.5] "cargo:rustc-link-search=framework=/Users/tom/Main/yplusplus/frontend/vision_utils/vision_utils_flutter_wrapper/ios", [08:47:16.816]: [opencv 0.84.5] "cargo:rustc-link-lib=framework=opencv2", [08:47:16.816]: [opencv 0.84.5] ], [08:47:16.816]: [opencv 0.84.5] } [08:47:16.816]: [opencv 0.84.5] cargo:rustc-cfg=ocvrs_opencv_branch_4 [08:47:16.816]: [opencv 0.84.5] === Detected OpenCV module header dir at: /Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/temp_ios_headers/opencv2 [08:47:16.817]: [opencv 0.84.5] === Found OpenCV version: 4.5.3 in headers located at: /Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/temp_ios_headers [08:47:16.818]: [opencv 0.84.5] cargo:rerun-if-env-changed=OPENCV_PACKAGE_NAME [08:47:16.818]: [opencv 0.84.5] cargo:rerun-if-env-changed=OPENCV_PKGCONFIG_NAME [08:47:16.818]: [opencv 0.84.5] cargo:rerun-if-env-changed=OPENCV_CMAKE_NAME [08:47:16.818]: [opencv 0.84.5] cargo:rerun-if-env-changed=OPENCV_CMAKE_BIN [08:47:16.818]: [opencv 0.84.5] cargo:rerun-if-env-changed=OPENCV_VCPKG_NAME [08:47:16.818]: [opencv 0.84.5] cargo:rerun-if-env-changed=OPENCV_LINK_LIBS [08:47:16.818]: [opencv 0.84.5] cargo:rerun-if-env-changed=OPENCV_LINK_PATHS [08:47:16.818]: [opencv 0.84.5] cargo:rerun-if-env-changed=OPENCV_INCLUDE_PATHS [08:47:16.818]: [opencv 0.84.5] cargo:rerun-if-env-changed=OPENCV_DISABLE_PROBES [08:47:16.818]: [opencv 0.84.5] cargo:rerun-if-env-changed=OPENCV_MSVC_CRT [08:47:16.818]: [opencv 0.84.5] cargo:rerun-if-env-changed=CMAKE_PREFIX_PATH [08:47:16.818]: [opencv 0.84.5] cargo:rerun-if-env-changed=OpenCV_DIR [08:47:16.818]: [opencv 0.84.5] cargo:rerun-if-env-changed=PKG_CONFIG_PATH [08:47:16.818]: [opencv 0.84.5] cargo:rerun-if-env-changed=VCPKG_ROOT [08:47:16.818]: [opencv 0.84.5] cargo:rerun-if-env-changed=VCPKGRS_DYNAMIC [08:47:16.818]: [opencv 0.84.5] cargo:rerun-if-env-changed=VCPKGRS_TRIPLET [08:47:16.818]: [opencv 0.84.5] cargo:rerun-if-env-changed=OCVRS_DOCS_GENERATE_DIR [08:47:16.818]: [opencv 0.84.5] cargo:rerun-if-env-changed=DOCS_RS [08:47:16.818]: [opencv 0.84.5] cargo:rerun-if-changed=/Users/tom/.cargo/registry/src/github.com-1ecc6299db9ec823/opencv-0.84.5/src_cpp/bioinspired.hpp [08:47:16.818]: [opencv 0.84.5] cargo:rerun-if-changed=/Users/tom/.cargo/registry/src/github.com-1ecc6299db9ec823/opencv-0.84.5/src_cpp/gapi.hpp [08:47:16.818]: [opencv 0.84.5] cargo:rerun-if-changed=/Users/tom/.cargo/registry/src/github.com-1ecc6299db9ec823/opencv-0.84.5/src_cpp/face.hpp [08:47:16.818]: [opencv 0.84.5] cargo:rerun-if-changed=/Users/tom/.cargo/registry/src/github.com-1ecc6299db9ec823/opencv-0.84.5/src_cpp/sfm.hpp [08:47:16.818]: [opencv 0.84.5] cargo:rerun-if-changed=/Users/tom/.cargo/registry/src/github.com-1ecc6299db9ec823/opencv-0.84.5/src_cpp/hdf.hpp [08:47:16.819]: [opencv 0.84.5] cargo:rerun-if-changed=/Users/tom/.cargo/registry/src/github.com-1ecc6299db9ec823/opencv-0.84.5/src_cpp/xfeatures2d.hpp [08:47:16.819]: [opencv 0.84.5] cargo:rerun-if-changed=/Users/tom/.cargo/registry/src/github.com-1ecc6299db9ec823/opencv-0.84.5/src_cpp/photo.hpp [08:47:16.819]: [opencv 0.84.5] cargo:rerun-if-changed=/Users/tom/.cargo/registry/src/github.com-1ecc6299db9ec823/opencv-0.84.5/src_cpp/alphamat.hpp [08:47:16.819]: [opencv 0.84.5] cargo:rerun-if-changed=/Users/tom/.cargo/registry/src/github.com-1ecc6299db9ec823/opencv-0.84.5/src_cpp/ccalib.hpp [08:47:16.819]: [opencv 0.84.5] cargo:rerun-if-changed=/Users/tom/.cargo/registry/src/github.com-1ecc6299db9ec823/opencv-0.84.5/src_cpp/dnn.hpp [08:47:16.819]: [opencv 0.84.5] cargo:rerun-if-changed=/Users/tom/.cargo/registry/src/github.com-1ecc6299db9ec823/opencv-0.84.5/src_cpp/videoio.hpp [08:47:16.819]: [opencv 0.84.5] cargo:rerun-if-changed=/Users/tom/.cargo/registry/src/github.com-1ecc6299db9ec823/opencv-0.84.5/src_cpp/manual-core.cpp [08:47:16.819]: [opencv 0.84.5] cargo:rerun-if-changed=/Users/tom/.cargo/registry/src/github.com-1ecc6299db9ec823/opencv-0.84.5/src_cpp/core.hpp [08:47:16.819]: [opencv 0.84.5] cargo:rerun-if-changed=/Users/tom/.cargo/registry/src/github.com-1ecc6299db9ec823/opencv-0.84.5/src_cpp/ocvrs_common.hpp [08:47:16.819]: [opencv 0.84.5] cargo:rerun-if-changed=/Users/tom/.cargo/registry/src/github.com-1ecc6299db9ec823/opencv-0.84.5/src_cpp/aruco.hpp [08:47:16.819]: [opencv 0.84.5] cargo:rerun-if-changed=Cargo.toml [08:47:16.819]: [opencv 0.84.5] === Generating code in: /Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/build/opencv-d6b3999bb78f6a05/out [08:47:16.819]: [opencv 0.84.5] === Placing generated bindings into: /Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/build/opencv-d6b3999bb78f6a05/out/opencv [08:47:16.819]: [opencv 0.84.5] === Using OpenCV headers from: /Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/temp_ios_headers [08:47:16.940]: Compiling mio v0.7.13 [08:47:16.940]: Running `CARGO=/Users/tom/.rustup/toolchains/1.64.0-x86_64-apple-darwin/bin/cargo CARGO_CRATE_NAME=mio CARGO_MANIFEST_DIR=/Users/tom/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.7.13 CARGO_PKG_AUTHORS='Carl Lerche :Thomas de Zeeuw :Tokio Contributors ' CARGO_PKG_DESCRIPTION='Lightweight non-blocking IO' CARGO_PKG_HOMEPAGE='https://github.com/tokio-rs/mio' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=mio CARGO_PKG_REPOSITORY='https://github.com/tokio-rs/mio' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.7.13 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=7 CARGO_PKG_VERSION_PATCH=13 CARGO_PKG_VERSION_PRE='' DYLD_FALLBACK_LIBRARY_PATH='/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/release/deps:/Users/tom/.rustup/toolchains/1.64.0-x86_64-apple-darwin/lib:/Users/tom/.rustup/toolchains/1.64.0-x86_64-apple-darwin/lib:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/' rustc --crate-name mio --edition=2018 /Users/tom/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.7.13/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no -C split-debuginfo=unpacked -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="net"' --cfg 'feature="os-ext"' --cfg 'feature="os-poll"' --cfg 'feature="os-util"' --cfg 'feature="tcp"' --cfg 'feature="udp"' --cfg 'feature="uds"' -C metadata=827fb98b56c9eaa9 -C extra-filename=-827fb98b56c9eaa9 --out-dir /Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps --target x86_64-apple-ios -L dependency=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps -L dependency=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/release/deps --extern libc=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/liblibc-94bda512985520a5.rmeta --extern log=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/liblog-50ddee76197df382.rmeta --cap-lints warn` [08:47:17.197]: [ring 0.16.20] OPT_LEVEL = Some("3") [08:47:17.197]: [ring 0.16.20] TARGET = Some("x86_64-apple-ios") [08:47:17.197]: [ring 0.16.20] HOST = Some("x86_64-apple-darwin") [08:47:17.197]: [ring 0.16.20] cargo:rerun-if-env-changed=CC_x86_64-apple-ios [08:47:17.197]: [ring 0.16.20] CC_x86_64-apple-ios = None [08:47:17.197]: [ring 0.16.20] cargo:rerun-if-env-changed=CC_x86_64_apple_ios [08:47:17.197]: [ring 0.16.20] CC_x86_64_apple_ios = None [08:47:17.197]: [ring 0.16.20] cargo:rerun-if-env-changed=TARGET_CC [08:47:17.198]: [ring 0.16.20] TARGET_CC = None [08:47:17.198]: [ring 0.16.20] cargo:rerun-if-env-changed=CC [08:47:17.198]: [ring 0.16.20] CC = None [08:47:17.198]: [ring 0.16.20] cargo:rerun-if-env-changed=CFLAGS_x86_64-apple-ios [08:47:17.198]: [ring 0.16.20] CFLAGS_x86_64-apple-ios = None [08:47:17.198]: [ring 0.16.20] cargo:rerun-if-env-changed=CFLAGS_x86_64_apple_ios [08:47:17.198]: [ring 0.16.20] CFLAGS_x86_64_apple_ios = None [08:47:17.198]: [ring 0.16.20] cargo:rerun-if-env-changed=TARGET_CFLAGS [08:47:17.198]: [ring 0.16.20] TARGET_CFLAGS = None [08:47:17.198]: [ring 0.16.20] cargo:rerun-if-env-changed=CFLAGS [08:47:17.198]: [ring 0.16.20] CFLAGS = None [08:47:17.198]: [ring 0.16.20] cargo:rerun-if-env-changed=CRATE_CC_NO_DEFAULTS [08:47:17.198]: [ring 0.16.20] CRATE_CC_NO_DEFAULTS = None [08:47:17.198]: [ring 0.16.20] DEBUG = Some("true") [08:47:17.198]: [ring 0.16.20] Detecting iOS SDK path for iphonesimulator [08:47:17.198]: [ring 0.16.20] running: "xcrun" "--show-sdk-path" "--sdk" "iphonesimulator" [08:47:17.212]: [ring 0.16.20] exit status: 0 [08:47:17.213]: [ring 0.16.20] running "clang" "-O3" "-fPIC" "-gdwarf-2" "-fno-omit-frame-pointer" "--target=x86_64-apple-ios" "-m64" "-mios-simulator-version-min=7.0" "-isysroot" "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator16.2.sdk" "-fembed-bitcode" "-I" "include" "-Wall" "-Wextra" "-std=c1x" "-Wbad-function-cast" "-Wnested-externs" "-Wstrict-prototypes" "-pedantic" "-pedantic-errors" "-Wall" "-Wextra" "-Wcast-align" "-Wcast-qual" "-Wconversion" "-Wenum-compare" "-Wfloat-equal" "-Wformat=2" "-Winline" "-Winvalid-pch" "-Wmissing-field-initializers" "-Wmissing-include-dirs" "-Wredundant-decls" "-Wshadow" "-Wsign-compare" "-Wsign-conversion" "-Wundef" "-Wuninitialized" "-Wwrite-strings" "-fno-strict-aliasing" "-fvisibility=hidden" "-fstack-protector" "-g3" "-DNDEBUG" "-c" "-o/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/build/ring-d8851c9be174887d/out/ecp_nistz.o" "crypto/fipsmodule/ec/ecp_nistz.c" [08:47:17.384]: [ring 0.16.20] OPT_LEVEL = Some("3") [08:47:17.384]: [ring 0.16.20] TARGET = Some("x86_64-apple-ios") [08:47:17.384]: [ring 0.16.20] HOST = Some("x86_64-apple-darwin") [08:47:17.385]: [ring 0.16.20] cargo:rerun-if-env-changed=CC_x86_64-apple-ios [08:47:17.385]: [ring 0.16.20] CC_x86_64-apple-ios = None [08:47:17.385]: [ring 0.16.20] cargo:rerun-if-env-changed=CC_x86_64_apple_ios [08:47:17.385]: [ring 0.16.20] CC_x86_64_apple_ios = None [08:47:17.385]: [ring 0.16.20] cargo:rerun-if-env-changed=TARGET_CC [08:47:17.385]: [ring 0.16.20] TARGET_CC = None [08:47:17.385]: [ring 0.16.20] cargo:rerun-if-env-changed=CC [08:47:17.385]: [ring 0.16.20] CC = None [08:47:17.385]: [ring 0.16.20] cargo:rerun-if-env-changed=CFLAGS_x86_64-apple-ios [08:47:17.385]: [ring 0.16.20] CFLAGS_x86_64-apple-ios = None [08:47:17.385]: [ring 0.16.20] cargo:rerun-if-env-changed=CFLAGS_x86_64_apple_ios [08:47:17.385]: [ring 0.16.20] CFLAGS_x86_64_apple_ios = None [08:47:17.385]: [ring 0.16.20] cargo:rerun-if-env-changed=TARGET_CFLAGS [08:47:17.385]: [ring 0.16.20] TARGET_CFLAGS = None [08:47:17.385]: [ring 0.16.20] cargo:rerun-if-env-changed=CFLAGS [08:47:17.385]: [ring 0.16.20] CFLAGS = None [08:47:17.385]: [ring 0.16.20] cargo:rerun-if-env-changed=CRATE_CC_NO_DEFAULTS [08:47:17.385]: [ring 0.16.20] CRATE_CC_NO_DEFAULTS = None [08:47:17.385]: [ring 0.16.20] DEBUG = Some("true") [08:47:17.385]: [ring 0.16.20] Detecting iOS SDK path for iphonesimulator [08:47:17.385]: [ring 0.16.20] running: "xcrun" "--show-sdk-path" "--sdk" "iphonesimulator" [08:47:17.397]: [ring 0.16.20] exit status: 0 [08:47:17.399]: [ring 0.16.20] running "clang" "-O3" "-fPIC" "-gdwarf-2" "-fno-omit-frame-pointer" "--target=x86_64-apple-ios" "-m64" "-mios-simulator-version-min=7.0" "-isysroot" "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator16.2.sdk" "-fembed-bitcode" "-I" "include" "-Wall" "-Wextra" "-std=c1x" "-Wbad-function-cast" "-Wnested-externs" "-Wstrict-prototypes" "-pedantic" "-pedantic-errors" "-Wall" "-Wextra" "-Wcast-align" "-Wcast-qual" "-Wconversion" "-Wenum-compare" "-Wfloat-equal" "-Wformat=2" "-Winline" "-Winvalid-pch" "-Wmissing-field-initializers" "-Wmissing-include-dirs" "-Wredundant-decls" "-Wshadow" "-Wsign-compare" "-Wsign-conversion" "-Wundef" "-Wuninitialized" "-Wwrite-strings" "-fno-strict-aliasing" "-fvisibility=hidden" "-fstack-protector" "-g3" "-DNDEBUG" "-c" "-o/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/build/ring-d8851c9be174887d/out/ecp_nistz256.o" "crypto/fipsmodule/ec/ecp_nistz256.c" [08:47:17.806]: warning: `rand_distr` (lib) generated 3 warnings [08:47:17.807]: Compiling want v0.3.0 [08:47:17.807]: Running `CARGO=/Users/tom/.rustup/toolchains/1.64.0-x86_64-apple-darwin/bin/cargo CARGO_CRATE_NAME=want CARGO_MANIFEST_DIR=/Users/tom/.cargo/registry/src/github.com-1ecc6299db9ec823/want-0.3.0 CARGO_PKG_AUTHORS='Sean McArthur ' CARGO_PKG_DESCRIPTION='Detect when another Future wants a result.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=want CARGO_PKG_REPOSITORY='https://github.com/seanmonstar/want' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.3.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' DYLD_FALLBACK_LIBRARY_PATH='/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/release/deps:/Users/tom/.rustup/toolchains/1.64.0-x86_64-apple-darwin/lib:/Users/tom/.rustup/toolchains/1.64.0-x86_64-apple-darwin/lib:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/' rustc --crate-name want --edition=2018 /Users/tom/.cargo/registry/src/github.com-1ecc6299db9ec823/want-0.3.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no -C split-debuginfo=unpacked -C debuginfo=2 -C metadata=30d6da0088c944d3 -C extra-filename=-30d6da0088c944d3 --out-dir /Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps --target x86_64-apple-ios -L dependency=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps -L dependency=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/release/deps --extern log=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/liblog-50ddee76197df382.rmeta --extern try_lock=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libtry_lock-7cae595a2235bd13.rmeta --cap-lints warn` [08:47:17.821]: Running `CARGO=/Users/tom/.rustup/toolchains/1.64.0-x86_64-apple-darwin/bin/cargo CARGO_CRATE_NAME=anyhow CARGO_MANIFEST_DIR=/Users/tom/.cargo/registry/src/github.com-1ecc6299db9ec823/anyhow-1.0.71 CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='Flexible concrete Error type built on std::error::Error' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=anyhow CARGO_PKG_REPOSITORY='https://github.com/dtolnay/anyhow' CARGO_PKG_RUST_VERSION=1.39 CARGO_PKG_VERSION=1.0.71 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=71 CARGO_PKG_VERSION_PRE='' DYLD_FALLBACK_LIBRARY_PATH='/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/release/deps:/Users/tom/.rustup/toolchains/1.64.0-x86_64-apple-darwin/lib:/Users/tom/.rustup/toolchains/1.64.0-x86_64-apple-darwin/lib:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/' OUT_DIR=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/build/anyhow-abd6c55a8050ced9/out rustc --crate-name anyhow --edition=2018 /Users/tom/.cargo/registry/src/github.com-1ecc6299db9ec823/anyhow-1.0.71/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no -C split-debuginfo=unpacked -C debuginfo=2 --cfg 'feature="backtrace"' --cfg 'feature="default"' --cfg 'feature="std"' -C metadata=a49e2b0e0ce09114 -C extra-filename=-a49e2b0e0ce09114 --out-dir /Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps --target x86_64-apple-ios -L dependency=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps -L dependency=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/release/deps --extern backtrace=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libbacktrace-23b8c8c829c84711.rmeta --cap-lints warn` [08:47:17.939]: [ring 0.16.20] OPT_LEVEL = Some("3") [08:47:17.940]: [ring 0.16.20] TARGET = Some("x86_64-apple-ios") [08:47:17.940]: [ring 0.16.20] HOST = Some("x86_64-apple-darwin") [08:47:17.940]: [ring 0.16.20] cargo:rerun-if-env-changed=CC_x86_64-apple-ios [08:47:17.940]: [ring 0.16.20] CC_x86_64-apple-ios = None [08:47:17.940]: [ring 0.16.20] cargo:rerun-if-env-changed=CC_x86_64_apple_ios [08:47:17.940]: [ring 0.16.20] CC_x86_64_apple_ios = None [08:47:17.940]: [ring 0.16.20] cargo:rerun-if-env-changed=TARGET_CC [08:47:17.940]: [ring 0.16.20] TARGET_CC = None [08:47:17.940]: [ring 0.16.20] cargo:rerun-if-env-changed=CC [08:47:17.940]: [ring 0.16.20] CC = None [08:47:17.940]: [ring 0.16.20] cargo:rerun-if-env-changed=CFLAGS_x86_64-apple-ios [08:47:17.940]: [ring 0.16.20] CFLAGS_x86_64-apple-ios = None [08:47:17.940]: [ring 0.16.20] cargo:rerun-if-env-changed=CFLAGS_x86_64_apple_ios [08:47:17.940]: [ring 0.16.20] CFLAGS_x86_64_apple_ios = None [08:47:17.940]: [ring 0.16.20] cargo:rerun-if-env-changed=TARGET_CFLAGS [08:47:17.940]: [ring 0.16.20] TARGET_CFLAGS = None [08:47:17.940]: [ring 0.16.20] cargo:rerun-if-env-changed=CFLAGS [08:47:17.940]: [ring 0.16.20] CFLAGS = None [08:47:17.940]: [ring 0.16.20] cargo:rerun-if-env-changed=CRATE_CC_NO_DEFAULTS [08:47:17.940]: [ring 0.16.20] CRATE_CC_NO_DEFAULTS = None [08:47:17.940]: [ring 0.16.20] DEBUG = Some("true") [08:47:17.940]: [ring 0.16.20] Detecting iOS SDK path for iphonesimulator [08:47:17.940]: [ring 0.16.20] running: "xcrun" "--show-sdk-path" "--sdk" "iphonesimulator" [08:47:17.955]: [ring 0.16.20] exit status: 0 [08:47:17.956]: [ring 0.16.20] running "clang" "-O3" "-fPIC" "-gdwarf-2" "-fno-omit-frame-pointer" "--target=x86_64-apple-ios" "-m64" "-mios-simulator-version-min=7.0" "-isysroot" "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator16.2.sdk" "-fembed-bitcode" "-I" "include" "-Wall" "-Wextra" "-std=c1x" "-Wbad-function-cast" "-Wnested-externs" "-Wstrict-prototypes" "-pedantic" "-pedantic-errors" "-Wall" "-Wextra" "-Wcast-align" "-Wcast-qual" "-Wconversion" "-Wenum-compare" "-Wfloat-equal" "-Wformat=2" "-Winline" "-Winvalid-pch" "-Wmissing-field-initializers" "-Wmissing-include-dirs" "-Wredundant-decls" "-Wshadow" "-Wsign-compare" "-Wsign-conversion" "-Wundef" "-Wuninitialized" "-Wwrite-strings" "-fno-strict-aliasing" "-fvisibility=hidden" "-fstack-protector" "-g3" "-DNDEBUG" "-c" "-o/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/build/ring-d8851c9be174887d/out/gfp_p256.o" "crypto/fipsmodule/ec/gfp_p256.c" [08:47:18.033]: warning: use of deprecated associated function `try_lock::TryLock::::try_lock_order`: This method is actually unsafe because it unsafely allows the use of weaker memory ordering. Please use try_lock_explicit instead [08:47:18.033]: --> /Users/tom/.cargo/registry/src/github.com-1ecc6299db9ec823/want-0.3.0/src/lib.rs:209:63 [08:47:18.033]: | [08:47:18.033]: 209 | if let Some(mut locked) = self.inner.task.try_lock_order(SeqCst, SeqCst) { [08:47:18.033]: | ^^^^^^^^^^^^^^ [08:47:18.033]: | [08:47:18.033]: note: the lint level is defined here [08:47:18.033]: --> /Users/tom/.cargo/registry/src/github.com-1ecc6299db9ec823/want-0.3.0/src/lib.rs:2:9 [08:47:18.033]: | [08:47:18.033]: 2 | #![deny(warnings)] [08:47:18.033]: | ^^^^^^^^ [08:47:18.033]: = note: `#[warn(deprecated)]` implied by `#[warn(warnings)]` [08:47:18.034]: [08:47:18.034]: warning: use of deprecated associated function `std::sync::atomic::AtomicUsize::compare_and_swap`: Use `compare_exchange` or `compare_exchange_weak` instead [08:47:18.034]: --> /Users/tom/.cargo/registry/src/github.com-1ecc6299db9ec823/want-0.3.0/src/lib.rs:212:52 [08:47:18.034]: | [08:47:18.034]: 212 | let old = self.inner.state.compare_and_swap( [08:47:18.034]: | ^^^^^^^^^^^^^^^^ [08:47:18.034]: [08:47:18.037]: warning: use of deprecated associated function `std::sync::atomic::AtomicUsize::compare_and_swap`: Use `compare_exchange` or `compare_exchange_weak` instead [08:47:18.037]: --> /Users/tom/.cargo/registry/src/github.com-1ecc6299db9ec823/want-0.3.0/src/lib.rs:253:26 [08:47:18.037]: | [08:47:18.037]: 253 | self.inner.state.compare_and_swap( [08:47:18.037]: | ^^^^^^^^^^^^^^^^ [08:47:18.037]: [08:47:18.042]: warning: use of deprecated associated function `try_lock::TryLock::::try_lock_order`: This method is actually unsafe because it unsafely allows the use of weaker memory ordering. Please use try_lock_explicit instead [08:47:18.043]: --> /Users/tom/.cargo/registry/src/github.com-1ecc6299db9ec823/want-0.3.0/src/lib.rs:352:63 [08:47:18.043]: | [08:47:18.043]: 352 | if let Some(mut locked) = self.inner.task.try_lock_order(SeqCst, SeqCst) { [08:47:18.043]: | ^^^^^^^^^^^^^^ [08:47:18.043]: [08:47:18.111]: [ring 0.16.20] OPT_LEVEL = Some("3") [08:47:18.111]: [ring 0.16.20] TARGET = Some("x86_64-apple-ios") [08:47:18.111]: [ring 0.16.20] HOST = Some("x86_64-apple-darwin") [08:47:18.111]: [ring 0.16.20] cargo:rerun-if-env-changed=CC_x86_64-apple-ios [08:47:18.111]: [ring 0.16.20] CC_x86_64-apple-ios = None [08:47:18.111]: [ring 0.16.20] cargo:rerun-if-env-changed=CC_x86_64_apple_ios [08:47:18.111]: [ring 0.16.20] CC_x86_64_apple_ios = None [08:47:18.111]: [ring 0.16.20] cargo:rerun-if-env-changed=TARGET_CC [08:47:18.111]: [ring 0.16.20] TARGET_CC = None [08:47:18.111]: [ring 0.16.20] cargo:rerun-if-env-changed=CC [08:47:18.111]: [ring 0.16.20] CC = None [08:47:18.111]: [ring 0.16.20] cargo:rerun-if-env-changed=CFLAGS_x86_64-apple-ios [08:47:18.111]: [ring 0.16.20] CFLAGS_x86_64-apple-ios = None [08:47:18.111]: [ring 0.16.20] cargo:rerun-if-env-changed=CFLAGS_x86_64_apple_ios [08:47:18.111]: [ring 0.16.20] CFLAGS_x86_64_apple_ios = None [08:47:18.111]: [ring 0.16.20] cargo:rerun-if-env-changed=TARGET_CFLAGS [08:47:18.111]: [ring 0.16.20] TARGET_CFLAGS = None [08:47:18.111]: [ring 0.16.20] cargo:rerun-if-env-changed=CFLAGS [08:47:18.111]: [ring 0.16.20] CFLAGS = None [08:47:18.111]: [ring 0.16.20] cargo:rerun-if-env-changed=CRATE_CC_NO_DEFAULTS [08:47:18.111]: [ring 0.16.20] CRATE_CC_NO_DEFAULTS = None [08:47:18.112]: [ring 0.16.20] DEBUG = Some("true") [08:47:18.112]: [ring 0.16.20] Detecting iOS SDK path for iphonesimulator [08:47:18.112]: [ring 0.16.20] running: "xcrun" "--show-sdk-path" "--sdk" "iphonesimulator" [08:47:18.129]: [ring 0.16.20] exit status: 0 [08:47:18.130]: [ring 0.16.20] running "clang" "-O3" "-fPIC" "-gdwarf-2" "-fno-omit-frame-pointer" "--target=x86_64-apple-ios" "-m64" "-mios-simulator-version-min=7.0" "-isysroot" "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator16.2.sdk" "-fembed-bitcode" "-I" "include" "-Wall" "-Wextra" "-std=c1x" "-Wbad-function-cast" "-Wnested-externs" "-Wstrict-prototypes" "-pedantic" "-pedantic-errors" "-Wall" "-Wextra" "-Wcast-align" "-Wcast-qual" "-Wconversion" "-Wenum-compare" "-Wfloat-equal" "-Wformat=2" "-Winline" "-Winvalid-pch" "-Wmissing-field-initializers" "-Wmissing-include-dirs" "-Wredundant-decls" "-Wshadow" "-Wsign-compare" "-Wsign-conversion" "-Wundef" "-Wuninitialized" "-Wwrite-strings" "-fno-strict-aliasing" "-fvisibility=hidden" "-fstack-protector" "-g3" "-DNDEBUG" "-c" "-o/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/build/ring-d8851c9be174887d/out/gfp_p384.o" "crypto/fipsmodule/ec/gfp_p384.c" [08:47:18.484]: warning: `want` (lib) generated 4 warnings [08:47:18.485]: Running `CARGO=/Users/tom/.rustup/toolchains/1.64.0-x86_64-apple-darwin/bin/cargo CARGO_CRATE_NAME=num_rational CARGO_MANIFEST_DIR=/Users/tom/.cargo/registry/src/github.com-1ecc6299db9ec823/num-rational-0.4.0 CARGO_PKG_AUTHORS='The Rust Project Developers' CARGO_PKG_DESCRIPTION='Rational numbers implementation for Rust' CARGO_PKG_HOMEPAGE='https://github.com/rust-num/num-rational' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=num-rational CARGO_PKG_REPOSITORY='https://github.com/rust-num/num-rational' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.4.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=4 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' DYLD_FALLBACK_LIBRARY_PATH='/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/release/deps:/Users/tom/.rustup/toolchains/1.64.0-x86_64-apple-darwin/lib:/Users/tom/.rustup/toolchains/1.64.0-x86_64-apple-darwin/lib:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/' OUT_DIR=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/build/num-rational-8cf8c022d3635acb/out rustc --crate-name num_rational --edition=2018 /Users/tom/.cargo/registry/src/github.com-1ecc6299db9ec823/num-rational-0.4.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no -C split-debuginfo=unpacked -C debuginfo=2 --cfg 'feature="num-bigint"' --cfg 'feature="num-bigint-std"' --cfg 'feature="std"' -C metadata=4d06476f3d9e1838 -C extra-filename=-4d06476f3d9e1838 --out-dir /Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps --target x86_64-apple-ios -L dependency=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps -L dependency=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/release/deps --extern num_bigint=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libnum_bigint-96c5d049eb22bd79.rmeta --extern num_integer=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libnum_integer-96aaa9674de8c9ff.rmeta --extern num_traits=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libnum_traits-d459ad2a50459083.rmeta --cap-lints warn --cfg has_int_exp_fmt` [08:47:18.581]: [ring 0.16.20] OPT_LEVEL = Some("3") [08:47:18.582]: [ring 0.16.20] TARGET = Some("x86_64-apple-ios") [08:47:18.582]: [ring 0.16.20] HOST = Some("x86_64-apple-darwin") [08:47:18.582]: [ring 0.16.20] cargo:rerun-if-env-changed=CC_x86_64-apple-ios [08:47:18.582]: [ring 0.16.20] CC_x86_64-apple-ios = None [08:47:18.582]: [ring 0.16.20] cargo:rerun-if-env-changed=CC_x86_64_apple_ios [08:47:18.582]: [ring 0.16.20] CC_x86_64_apple_ios = None [08:47:18.582]: [ring 0.16.20] cargo:rerun-if-env-changed=TARGET_CC [08:47:18.582]: [ring 0.16.20] TARGET_CC = None [08:47:18.582]: [ring 0.16.20] cargo:rerun-if-env-changed=CC [08:47:18.582]: [ring 0.16.20] CC = None [08:47:18.582]: [ring 0.16.20] cargo:rerun-if-env-changed=CFLAGS_x86_64-apple-ios [08:47:18.582]: [ring 0.16.20] CFLAGS_x86_64-apple-ios = None [08:47:18.582]: [ring 0.16.20] cargo:rerun-if-env-changed=CFLAGS_x86_64_apple_ios [08:47:18.582]: [ring 0.16.20] CFLAGS_x86_64_apple_ios = None [08:47:18.582]: [ring 0.16.20] cargo:rerun-if-env-changed=TARGET_CFLAGS [08:47:18.582]: [ring 0.16.20] TARGET_CFLAGS = None [08:47:18.582]: [ring 0.16.20] cargo:rerun-if-env-changed=CFLAGS [08:47:18.582]: [ring 0.16.20] CFLAGS = None [08:47:18.582]: [ring 0.16.20] cargo:rerun-if-env-changed=CRATE_CC_NO_DEFAULTS [08:47:18.582]: [ring 0.16.20] CRATE_CC_NO_DEFAULTS = None [08:47:18.582]: [ring 0.16.20] DEBUG = Some("true") [08:47:18.582]: [ring 0.16.20] Detecting iOS SDK path for iphonesimulator [08:47:18.582]: [ring 0.16.20] running: "xcrun" "--show-sdk-path" "--sdk" "iphonesimulator" [08:47:18.597]: [ring 0.16.20] exit status: 0 [08:47:18.598]: [ring 0.16.20] running "clang" "-O3" "-fPIC" "-gdwarf-2" "-fno-omit-frame-pointer" "--target=x86_64-apple-ios" "-m64" "-mios-simulator-version-min=7.0" "-isysroot" "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator16.2.sdk" "-fembed-bitcode" "-I" "include" "-Wall" "-Wextra" "-std=c1x" "-Wbad-function-cast" "-Wnested-externs" "-Wstrict-prototypes" "-pedantic" "-pedantic-errors" "-Wall" "-Wextra" "-Wcast-align" "-Wcast-qual" "-Wconversion" "-Wenum-compare" "-Wfloat-equal" "-Wformat=2" "-Winline" "-Winvalid-pch" "-Wmissing-field-initializers" "-Wmissing-include-dirs" "-Wredundant-decls" "-Wshadow" "-Wsign-compare" "-Wsign-conversion" "-Wundef" "-Wuninitialized" "-Wwrite-strings" "-fno-strict-aliasing" "-fvisibility=hidden" "-fstack-protector" "-g3" "-DNDEBUG" "-c" "-o/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/build/ring-d8851c9be174887d/out/cpu-intel.o" "crypto/cpu-intel.c" [08:47:18.722]: Compiling chrono v0.4.24 [08:47:18.722]: Running `CARGO=/Users/tom/.rustup/toolchains/1.64.0-x86_64-apple-darwin/bin/cargo CARGO_CRATE_NAME=chrono CARGO_MANIFEST_DIR=/Users/tom/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.4.24 CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='Date and time library for Rust' CARGO_PKG_HOMEPAGE='https://github.com/chronotope/chrono' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=chrono CARGO_PKG_REPOSITORY='https://github.com/chronotope/chrono' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.4.24 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=4 CARGO_PKG_VERSION_PATCH=24 CARGO_PKG_VERSION_PRE='' DYLD_FALLBACK_LIBRARY_PATH='/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/release/deps:/Users/tom/.rustup/toolchains/1.64.0-x86_64-apple-darwin/lib:/Users/tom/.rustup/toolchains/1.64.0-x86_64-apple-darwin/lib:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/' rustc --crate-name chrono --edition=2018 /Users/tom/.cargo/registry/src/github.com-1ecc6299db9ec823/chrono-0.4.24/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no -C split-debuginfo=unpacked -C debuginfo=2 --cfg 'feature="clock"' --cfg 'feature="default"' --cfg 'feature="iana-time-zone"' --cfg 'feature="js-sys"' --cfg 'feature="oldtime"' --cfg 'feature="serde"' --cfg 'feature="std"' --cfg 'feature="time"' --cfg 'feature="wasm-bindgen"' --cfg 'feature="wasmbind"' --cfg 'feature="winapi"' -C metadata=4a69ae17eca14e25 -C extra-filename=-4a69ae17eca14e25 --out-dir /Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps --target x86_64-apple-ios -L dependency=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps -L dependency=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/release/deps --extern iana_time_zone=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libiana_time_zone-886a772baf9b6094.rmeta --extern num_integer=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libnum_integer-96aaa9674de8c9ff.rmeta --extern num_traits=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libnum_traits-d459ad2a50459083.rmeta --extern serde=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libserde-3aa75456434d2f92.rmeta --extern time=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libtime-67a853c182298894.rmeta --cap-lints warn` [08:47:18.774]: [ring 0.16.20] OPT_LEVEL = Some("3") [08:47:18.774]: [ring 0.16.20] TARGET = Some("x86_64-apple-ios") [08:47:18.774]: [ring 0.16.20] HOST = Some("x86_64-apple-darwin") [08:47:18.774]: [ring 0.16.20] cargo:rerun-if-env-changed=CC_x86_64-apple-ios [08:47:18.774]: [ring 0.16.20] CC_x86_64-apple-ios = None [08:47:18.774]: [ring 0.16.20] cargo:rerun-if-env-changed=CC_x86_64_apple_ios [08:47:18.774]: [ring 0.16.20] CC_x86_64_apple_ios = None [08:47:18.774]: [ring 0.16.20] cargo:rerun-if-env-changed=TARGET_CC [08:47:18.774]: [ring 0.16.20] TARGET_CC = None [08:47:18.774]: [ring 0.16.20] cargo:rerun-if-env-changed=CC [08:47:18.774]: [ring 0.16.20] CC = None [08:47:18.774]: [ring 0.16.20] cargo:rerun-if-env-changed=CFLAGS_x86_64-apple-ios [08:47:18.774]: [ring 0.16.20] CFLAGS_x86_64-apple-ios = None [08:47:18.774]: [ring 0.16.20] cargo:rerun-if-env-changed=CFLAGS_x86_64_apple_ios [08:47:18.774]: [ring 0.16.20] CFLAGS_x86_64_apple_ios = None [08:47:18.775]: [ring 0.16.20] cargo:rerun-if-env-changed=TARGET_CFLAGS [08:47:18.775]: [ring 0.16.20] TARGET_CFLAGS = None [08:47:18.775]: [ring 0.16.20] cargo:rerun-if-env-changed=CFLAGS [08:47:18.775]: [ring 0.16.20] CFLAGS = None [08:47:18.775]: [ring 0.16.20] cargo:rerun-if-env-changed=CRATE_CC_NO_DEFAULTS [08:47:18.775]: [ring 0.16.20] CRATE_CC_NO_DEFAULTS = None [08:47:18.775]: [ring 0.16.20] DEBUG = Some("true") [08:47:18.775]: [ring 0.16.20] Detecting iOS SDK path for iphonesimulator [08:47:18.775]: [ring 0.16.20] running: "xcrun" "--show-sdk-path" "--sdk" "iphonesimulator" [08:47:18.791]: [ring 0.16.20] exit status: 0 [08:47:18.793]: [ring 0.16.20] running "clang" "-O3" "-fPIC" "-gdwarf-2" "-fno-omit-frame-pointer" "--target=x86_64-apple-ios" "-m64" "-mios-simulator-version-min=7.0" "-isysroot" "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator16.2.sdk" "-fembed-bitcode" "-I" "include" "-Wall" "-Wextra" "-std=c1x" "-Wbad-function-cast" "-Wnested-externs" "-Wstrict-prototypes" "-pedantic" "-pedantic-errors" "-Wall" "-Wextra" "-Wcast-align" "-Wcast-qual" "-Wconversion" "-Wenum-compare" "-Wfloat-equal" "-Wformat=2" "-Winline" "-Winvalid-pch" "-Wmissing-field-initializers" "-Wmissing-include-dirs" "-Wredundant-decls" "-Wshadow" "-Wsign-compare" "-Wsign-conversion" "-Wundef" "-Wuninitialized" "-Wwrite-strings" "-fno-strict-aliasing" "-fvisibility=hidden" "-fstack-protector" "-g3" "-DNDEBUG" "-c" "-o/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/build/ring-d8851c9be174887d/out/poly1305_vec.o" "crypto/poly1305/poly1305_vec.c" [08:47:19.572]: [opencv 0.84.5] === Clang: Apple clang version 14.0.0 (clang-1400.0.29.202) [08:47:19.572]: [opencv 0.84.5] === Clang command line args: [ [08:47:19.572]: [opencv 0.84.5] "-isystem/usr/local/include", [08:47:19.572]: [opencv 0.84.5] "-isystem/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/c++/v1", [08:47:19.572]: [opencv 0.84.5] "-isystem/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/14.0.0/include", [08:47:19.572]: [opencv 0.84.5] "-isystem/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include", [08:47:19.572]: [opencv 0.84.5] "-isystem/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include", [08:47:19.572]: [opencv 0.84.5] "-isystem/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks", [08:47:19.572]: [opencv 0.84.5] "-I/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/temp_ios_headers", [08:47:19.572]: [opencv 0.84.5] "-F/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/temp_ios_headers", [08:47:19.572]: [opencv 0.84.5] "-I/Users/tom/.cargo/registry/src/github.com-1ecc6299db9ec823/opencv-0.84.5/src_cpp", [08:47:19.572]: [opencv 0.84.5] "-F/Users/tom/.cargo/registry/src/github.com-1ecc6299db9ec823/opencv-0.84.5/src_cpp", [08:47:19.572]: [opencv 0.84.5] "-DOCVRS_PARSING_HEADERS", [08:47:19.572]: [opencv 0.84.5] "-includeocvrs_common.hpp", [08:47:19.572]: [opencv 0.84.5] "-std=c++14", [08:47:19.572]: [opencv 0.84.5] ] [08:47:22.809]: Compiling url v2.2.2 [08:47:22.809]: Running `CARGO=/Users/tom/.rustup/toolchains/1.64.0-x86_64-apple-darwin/bin/cargo CARGO_CRATE_NAME=url CARGO_MANIFEST_DIR=/Users/tom/.cargo/registry/src/github.com-1ecc6299db9ec823/url-2.2.2 CARGO_PKG_AUTHORS='The rust-url developers' CARGO_PKG_DESCRIPTION='URL library for Rust, based on the WHATWG URL Standard' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=url CARGO_PKG_REPOSITORY='https://github.com/servo/rust-url' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=2.2.2 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=2 CARGO_PKG_VERSION_PRE='' DYLD_FALLBACK_LIBRARY_PATH='/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/release/deps:/Users/tom/.rustup/toolchains/1.64.0-x86_64-apple-darwin/lib:/Users/tom/.rustup/toolchains/1.64.0-x86_64-apple-darwin/lib:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/' rustc --crate-name url --edition=2018 /Users/tom/.cargo/registry/src/github.com-1ecc6299db9ec823/url-2.2.2/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no -C split-debuginfo=unpacked -C debuginfo=2 --cfg 'feature="serde"' -C metadata=57d2ca7835a48e01 -C extra-filename=-57d2ca7835a48e01 --out-dir /Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps --target x86_64-apple-ios -L dependency=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps -L dependency=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/release/deps --extern form_urlencoded=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libform_urlencoded-52812a052c7e7923.rmeta --extern idna=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libidna-2bc5253fe84ba8e6.rmeta --extern matches=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libmatches-26c34fc78967dfcf.rmeta --extern percent_encoding=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libpercent_encoding-d3e3d8f5bf710ca5.rmeta --extern serde=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libserde-3aa75456434d2f92.rmeta --cap-lints warn` [08:47:23.290]: Running `CARGO=/Users/tom/.rustup/toolchains/1.64.0-x86_64-apple-darwin/bin/cargo CARGO_CRATE_NAME=serde_json CARGO_MANIFEST_DIR=/Users/tom/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.68 CARGO_PKG_AUTHORS='Erick Tryzelaar :David Tolnay ' CARGO_PKG_DESCRIPTION='A JSON serialization file format' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=serde_json CARGO_PKG_REPOSITORY='https://github.com/serde-rs/json' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=1.0.68 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=68 CARGO_PKG_VERSION_PRE='' DYLD_FALLBACK_LIBRARY_PATH='/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/release/deps:/Users/tom/.rustup/toolchains/1.64.0-x86_64-apple-darwin/lib:/Users/tom/.rustup/toolchains/1.64.0-x86_64-apple-darwin/lib:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/' OUT_DIR=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/build/serde_json-2dad41b81afced6a/out rustc --crate-name serde_json --edition=2018 /Users/tom/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.68/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no -C split-debuginfo=unpacked -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="std"' -C metadata=fb40980cd54246c9 -C extra-filename=-fb40980cd54246c9 --out-dir /Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps --target x86_64-apple-ios -L dependency=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps -L dependency=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/release/deps --extern itoa=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libitoa-b77c05b14ff991ff.rmeta --extern ryu=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libryu-5e29eacd57e80f0e.rmeta --extern serde=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libserde-3aa75456434d2f92.rmeta --cap-lints warn --cfg limb_width_64` [08:47:23.359]: Compiling uuid v0.8.2 [08:47:23.359]: Running `CARGO=/Users/tom/.rustup/toolchains/1.64.0-x86_64-apple-darwin/bin/cargo CARGO_CRATE_NAME=uuid CARGO_MANIFEST_DIR=/Users/tom/.cargo/registry/src/github.com-1ecc6299db9ec823/uuid-0.8.2 CARGO_PKG_AUTHORS='Ashley Mannix:Christopher Armstrong:Dylan DPC:Hunar Roop Kahlon' CARGO_PKG_DESCRIPTION='A library to generate and parse UUIDs.' CARGO_PKG_HOMEPAGE='https://github.com/uuid-rs/uuid' CARGO_PKG_LICENSE='Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=uuid CARGO_PKG_REPOSITORY='https://github.com/uuid-rs/uuid' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.8.2 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=2 CARGO_PKG_VERSION_PRE='' DYLD_FALLBACK_LIBRARY_PATH='/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/release/deps:/Users/tom/.rustup/toolchains/1.64.0-x86_64-apple-darwin/lib:/Users/tom/.rustup/toolchains/1.64.0-x86_64-apple-darwin/lib:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/' rustc --crate-name uuid --edition=2018 /Users/tom/.cargo/registry/src/github.com-1ecc6299db9ec823/uuid-0.8.2/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no -C split-debuginfo=unpacked -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="getrandom"' --cfg 'feature="serde"' --cfg 'feature="std"' --cfg 'feature="v4"' -C metadata=0378bbd3a45c6ccb -C extra-filename=-0378bbd3a45c6ccb --out-dir /Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps --target x86_64-apple-ios -L dependency=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps -L dependency=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/release/deps --extern getrandom=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libgetrandom-93f816048747c799.rmeta --extern serde=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libserde-3aa75456434d2f92.rmeta --cap-lints warn` [08:47:24.833]: Compiling serde_urlencoded v0.7.0 [08:47:24.834]: Running `CARGO=/Users/tom/.rustup/toolchains/1.64.0-x86_64-apple-darwin/bin/cargo CARGO_CRATE_NAME=serde_urlencoded CARGO_MANIFEST_DIR=/Users/tom/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_urlencoded-0.7.0 CARGO_PKG_AUTHORS='Anthony Ramine ' CARGO_PKG_DESCRIPTION='`x-www-form-urlencoded` meets Serde' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=serde_urlencoded CARGO_PKG_REPOSITORY='https://github.com/nox/serde_urlencoded' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.7.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=7 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' DYLD_FALLBACK_LIBRARY_PATH='/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/release/deps:/Users/tom/.rustup/toolchains/1.64.0-x86_64-apple-darwin/lib:/Users/tom/.rustup/toolchains/1.64.0-x86_64-apple-darwin/lib:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/' rustc --crate-name serde_urlencoded --edition=2018 /Users/tom/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_urlencoded-0.7.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no -C split-debuginfo=unpacked -C debuginfo=2 -C metadata=8a956c87d50f84fe -C extra-filename=-8a956c87d50f84fe --out-dir /Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps --target x86_64-apple-ios -L dependency=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps -L dependency=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/release/deps --extern form_urlencoded=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libform_urlencoded-52812a052c7e7923.rmeta --extern itoa=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libitoa-b77c05b14ff991ff.rmeta --extern ryu=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libryu-5e29eacd57e80f0e.rmeta --extern serde=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libserde-3aa75456434d2f92.rmeta --cap-lints warn` [08:47:25.084]: warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [08:47:25.084]: --> /Users/tom/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_urlencoded-0.7.0/src/ser/mod.rs:80:51 [08:47:25.084]: | [08:47:25.084]: 80 | Error::Utf8(ref err) => error::Error::description(err), [08:47:25.084]: | ^^^^^^^^^^^ [08:47:25.084]: | [08:47:25.084]: = note: `#[warn(deprecated)]` on by default [08:47:25.084]: [08:47:25.555]: Running `CARGO=/Users/tom/.rustup/toolchains/1.64.0-x86_64-apple-darwin/bin/cargo CARGO_CRATE_NAME=tokio CARGO_MANIFEST_DIR=/Users/tom/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-1.12.0 CARGO_PKG_AUTHORS='Tokio Contributors ' CARGO_PKG_DESCRIPTION='An event-driven, non-blocking I/O platform for writing asynchronous I/O [08:47:25.556]: backed applications. [08:47:25.556]: ' CARGO_PKG_HOMEPAGE='https://tokio.rs' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=tokio CARGO_PKG_REPOSITORY='https://github.com/tokio-rs/tokio' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=1.12.0 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=12 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' DYLD_FALLBACK_LIBRARY_PATH='/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/release/deps:/Users/tom/.rustup/toolchains/1.64.0-x86_64-apple-darwin/lib:/Users/tom/.rustup/toolchains/1.64.0-x86_64-apple-darwin/lib:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/' OUT_DIR=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/build/tokio-ff8a5c89b746637f/out rustc --crate-name tokio --edition=2018 /Users/tom/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-1.12.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no -C split-debuginfo=unpacked -C debuginfo=2 --cfg 'feature="bytes"' --cfg 'feature="default"' --cfg 'feature="io-util"' --cfg 'feature="libc"' --cfg 'feature="memchr"' --cfg 'feature="mio"' --cfg 'feature="net"' --cfg 'feature="num_cpus"' --cfg 'feature="rt"' --cfg 'feature="rt-multi-thread"' --cfg 'feature="sync"' --cfg 'feature="time"' --cfg 'feature="winapi"' -C metadata=52beedfd41892e23 -C extra-filename=-52beedfd41892e23 --out-dir /Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps --target x86_64-apple-ios -L dependency=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps -L dependency=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/release/deps --extern bytes=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libbytes-57b3b7cdad79ed5b.rmeta --extern libc=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/liblibc-94bda512985520a5.rmeta --extern memchr=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libmemchr-ca5d31b08fdf5714.rmeta --extern mio=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libmio-827fb98b56c9eaa9.rmeta --extern num_cpus=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libnum_cpus-4c7602948b394874.rmeta --extern pin_project_lite=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libpin_project_lite-1b6ef9c7132fbc3a.rmeta --cap-lints warn --cfg tokio_track_caller` [08:47:25.677]: Compiling num v0.4.0 [08:47:25.678]: Running `CARGO=/Users/tom/.rustup/toolchains/1.64.0-x86_64-apple-darwin/bin/cargo CARGO_CRATE_NAME=num CARGO_MANIFEST_DIR=/Users/tom/.cargo/registry/src/github.com-1ecc6299db9ec823/num-0.4.0 CARGO_PKG_AUTHORS='The Rust Project Developers' CARGO_PKG_DESCRIPTION='A collection of numeric types and traits for Rust, including bigint, [08:47:25.678]: complex, rational, range iterators, generic integers, and more'\!' [08:47:25.678]: ' CARGO_PKG_HOMEPAGE='https://github.com/rust-num/num' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=num CARGO_PKG_REPOSITORY='https://github.com/rust-num/num' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.4.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=4 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' DYLD_FALLBACK_LIBRARY_PATH='/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/release/deps:/Users/tom/.rustup/toolchains/1.64.0-x86_64-apple-darwin/lib:/Users/tom/.rustup/toolchains/1.64.0-x86_64-apple-darwin/lib:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/' rustc --crate-name num --edition=2018 /Users/tom/.cargo/registry/src/github.com-1ecc6299db9ec823/num-0.4.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no -C split-debuginfo=unpacked -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="num-bigint"' --cfg 'feature="std"' -C metadata=699089a28d97f9ff -C extra-filename=-699089a28d97f9ff --out-dir /Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps --target x86_64-apple-ios -L dependency=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps -L dependency=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/release/deps --extern num_bigint=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libnum_bigint-96c5d049eb22bd79.rmeta --extern num_complex=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libnum_complex-9df677c8b6bf479a.rmeta --extern num_integer=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libnum_integer-96aaa9674de8c9ff.rmeta --extern num_iter=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libnum_iter-6d33978ef32635d6.rmeta --extern num_rational=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libnum_rational-4d06476f3d9e1838.rmeta --extern num_traits=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libnum_traits-d459ad2a50459083.rmeta --cap-lints warn` [08:47:25.884]: Compiling ndarray v0.15.3 [08:47:25.884]: Running `CARGO=/Users/tom/.rustup/toolchains/1.64.0-x86_64-apple-darwin/bin/cargo CARGO_CRATE_NAME=ndarray CARGO_MANIFEST_DIR=/Users/tom/.cargo/registry/src/github.com-1ecc6299db9ec823/ndarray-0.15.3 CARGO_PKG_AUTHORS='Ulrik Sverdrup "bluss":Jim Turner' CARGO_PKG_DESCRIPTION='An n-dimensional array for general elements and for numerics. Lightweight array views and slicing; views support chunking and splitting.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=ndarray CARGO_PKG_REPOSITORY='https://github.com/rust-ndarray/ndarray' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.15.3 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=15 CARGO_PKG_VERSION_PATCH=3 CARGO_PKG_VERSION_PRE='' DYLD_FALLBACK_LIBRARY_PATH='/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/release/deps:/Users/tom/.rustup/toolchains/1.64.0-x86_64-apple-darwin/lib:/Users/tom/.rustup/toolchains/1.64.0-x86_64-apple-darwin/lib:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/' rustc --crate-name ndarray --edition=2018 /Users/tom/.cargo/registry/src/github.com-1ecc6299db9ec823/ndarray-0.15.3/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no -C split-debuginfo=unpacked -C debuginfo=2 --cfg 'feature="approx"' --cfg 'feature="default"' --cfg 'feature="rayon"' --cfg 'feature="rayon_"' --cfg 'feature="std"' -C metadata=bae953d31f6b906b -C extra-filename=-bae953d31f6b906b --out-dir /Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps --target x86_64-apple-ios -L dependency=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps -L dependency=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/release/deps --extern approx=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libapprox-7201e22e1d76ed17.rmeta --extern matrixmultiply=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libmatrixmultiply-836c1473322067aa.rmeta --extern num_complex=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libnum_complex-9df677c8b6bf479a.rmeta --extern num_integer=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libnum_integer-96aaa9674de8c9ff.rmeta --extern num_traits=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libnum_traits-d459ad2a50459083.rmeta --extern rawpointer=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/librawpointer-fa2539800276fc7a.rmeta --extern rayon_=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/librayon-049cae79cbd5494d.rmeta --cap-lints warn` [08:47:25.930]: warning: `serde_urlencoded` (lib) generated 1 warning [08:47:25.931]: Compiling jpeg-decoder v0.1.22 [08:47:25.931]: Running `CARGO=/Users/tom/.rustup/toolchains/1.64.0-x86_64-apple-darwin/bin/cargo CARGO_CRATE_NAME=jpeg_decoder CARGO_MANIFEST_DIR=/Users/tom/.cargo/registry/src/github.com-1ecc6299db9ec823/jpeg-decoder-0.1.22 CARGO_PKG_AUTHORS='Ulf Nilsson ' CARGO_PKG_DESCRIPTION='JPEG decoder' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT / Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=jpeg-decoder CARGO_PKG_REPOSITORY='https://github.com/image-rs/jpeg-decoder' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.1.22 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=22 CARGO_PKG_VERSION_PRE='' DYLD_FALLBACK_LIBRARY_PATH='/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/release/deps:/Users/tom/.rustup/toolchains/1.64.0-x86_64-apple-darwin/lib:/Users/tom/.rustup/toolchains/1.64.0-x86_64-apple-darwin/lib:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/' rustc --crate-name jpeg_decoder /Users/tom/.cargo/registry/src/github.com-1ecc6299db9ec823/jpeg-decoder-0.1.22/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no -C split-debuginfo=unpacked -C debuginfo=2 --cfg 'feature="rayon"' -C metadata=63abb39bf1746c42 -C extra-filename=-63abb39bf1746c42 --out-dir /Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps --target x86_64-apple-ios -L dependency=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps -L dependency=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/release/deps --extern rayon=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/librayon-049cae79cbd5494d.rmeta --cap-lints warn` [08:47:26.611]: warning: named argument `layout` is not used by name [08:47:26.611]: --> /Users/tom/.cargo/registry/src/github.com-1ecc6299db9ec823/ndarray-0.15.3/src/arrayformat.rs:220:13 [08:47:26.611]: | [08:47:26.611]: 217 | ", shape={:?}, strides={:?}, layout={:?}", [08:47:26.611]: | ---- this formatting argument uses named argument `layout` by position [08:47:26.611]: ... [08:47:26.611]: 220 | layout = self.view().layout() [08:47:26.611]: | ^^^^^^ this named argument is referred to by position in formatting string [08:47:26.611]: | [08:47:26.611]: = note: `#[warn(named_arguments_used_positionally)]` on by default [08:47:26.611]: help: use the named argument by name to avoid ambiguity [08:47:26.611]: | [08:47:26.611]: 217 | ", shape={:?}, strides={:?}, layout={layout}", [08:47:26.611]: | ~~~~~~ [08:47:26.611]: [08:47:26.620]: warning: unused attribute `inline` [08:47:26.621]: --> /Users/tom/.cargo/registry/src/github.com-1ecc6299db9ec823/ndarray-0.15.3/src/dimension/dimension_trait.rs:425:5 [08:47:26.621]: | [08:47:26.621]: 425 | #[inline] [08:47:26.621]: | ^^^^^^^^^ [08:47:26.621]: | [08:47:26.621]: = note: `#[warn(unused_attributes)]` on by default [08:47:26.621]: note: the built-in attribute `inline` will be ignored, since it's applied to the macro invocation `impl_insert_axis_array` [08:47:26.621]: --> /Users/tom/.cargo/registry/src/github.com-1ecc6299db9ec823/ndarray-0.15.3/src/dimension/dimension_trait.rs:426:5 [08:47:26.621]: | [08:47:26.621]: 426 | impl_insert_axis_array!(0); [08:47:26.621]: | ^^^^^^^^^^^^^^^^^^^^^^ [08:47:26.621]: [08:47:26.621]: warning: unused attribute `inline` [08:47:26.621]: --> /Users/tom/.cargo/registry/src/github.com-1ecc6299db9ec823/ndarray-0.15.3/src/dimension/dimension_trait.rs:533:5 [08:47:26.621]: | [08:47:26.621]: 533 | #[inline] [08:47:26.621]: | ^^^^^^^^^ [08:47:26.621]: | [08:47:26.621]: note: the built-in attribute `inline` will be ignored, since it's applied to the macro invocation `impl_insert_axis_array` [08:47:26.621]: --> /Users/tom/.cargo/registry/src/github.com-1ecc6299db9ec823/ndarray-0.15.3/src/dimension/dimension_trait.rs:534:5 [08:47:26.621]: | [08:47:26.621]: 534 | impl_insert_axis_array!(1); [08:47:26.621]: | ^^^^^^^^^^^^^^^^^^^^^^ [08:47:26.621]: [08:47:26.621]: warning: unused attribute `inline` [08:47:26.622]: --> /Users/tom/.cargo/registry/src/github.com-1ecc6299db9ec823/ndarray-0.15.3/src/dimension/dimension_trait.rs:697:5 [08:47:26.622]: | [08:47:26.622]: 697 | #[inline] [08:47:26.622]: | ^^^^^^^^^ [08:47:26.622]: | [08:47:26.622]: note: the built-in attribute `inline` will be ignored, since it's applied to the macro invocation `impl_insert_axis_array` [08:47:26.622]: --> /Users/tom/.cargo/registry/src/github.com-1ecc6299db9ec823/ndarray-0.15.3/src/dimension/dimension_trait.rs:698:5 [08:47:26.622]: | [08:47:26.622]: 698 | impl_insert_axis_array!(2); [08:47:26.622]: | ^^^^^^^^^^^^^^^^^^^^^^ [08:47:26.622]: [08:47:26.622]: warning: unused attribute `inline` [08:47:26.622]: --> /Users/tom/.cargo/registry/src/github.com-1ecc6299db9ec823/ndarray-0.15.3/src/dimension/dimension_trait.rs:817:5 [08:47:26.622]: | [08:47:26.622]: 817 | #[inline] [08:47:26.622]: | ^^^^^^^^^ [08:47:26.622]: | [08:47:26.622]: note: the built-in attribute `inline` will be ignored, since it's applied to the macro invocation `impl_insert_axis_array` [08:47:26.622]: --> /Users/tom/.cargo/registry/src/github.com-1ecc6299db9ec823/ndarray-0.15.3/src/dimension/dimension_trait.rs:818:5 [08:47:26.622]: | [08:47:26.622]: 818 | impl_insert_axis_array!(3); [08:47:26.622]: | ^^^^^^^^^^^^^^^^^^^^^^ [08:47:26.622]: [08:47:26.622]: warning: unused attribute `inline` [08:47:26.622]: --> /Users/tom/.cargo/registry/src/github.com-1ecc6299db9ec823/ndarray-0.15.3/src/dimension/dimension_trait.rs:848:13 [08:47:26.622]: | [08:47:26.622]: 848 | #[inline] [08:47:26.623]: | ^^^^^^^^^ [08:47:26.623]: ... [08:47:26.623]: 859 | / large_dim!(4, Ix4, (Ix, Ix, Ix, Ix), Ix5, { [08:47:26.623]: 860 | | impl_insert_axis_array!(4); [08:47:26.623]: 861 | | }); [08:47:26.623]: | |__- in this macro invocation [08:47:26.623]: | [08:47:26.623]: note: the built-in attribute `inline` will be ignored, since it's applied to the macro invocation `impl_insert_axis_array` [08:47:26.623]: --> /Users/tom/.cargo/registry/src/github.com-1ecc6299db9ec823/ndarray-0.15.3/src/dimension/dimension_trait.rs:860:5 [08:47:26.623]: | [08:47:26.623]: 860 | impl_insert_axis_array!(4); [08:47:26.623]: | ^^^^^^^^^^^^^^^^^^^^^^ [08:47:26.623]: = note: this warning originates in the macro `large_dim` (in Nightly builds, run with -Z macro-backtrace for more info) [08:47:26.623]: [08:47:26.623]: warning: unused attribute `inline` [08:47:26.623]: --> /Users/tom/.cargo/registry/src/github.com-1ecc6299db9ec823/ndarray-0.15.3/src/dimension/dimension_trait.rs:848:13 [08:47:26.623]: | [08:47:26.623]: 848 | #[inline] [08:47:26.623]: | ^^^^^^^^^ [08:47:26.623]: ... [08:47:26.623]: 862 | / large_dim!(5, Ix5, (Ix, Ix, Ix, Ix, Ix), Ix6, { [08:47:26.623]: 863 | | impl_insert_axis_array!(5); [08:47:26.623]: 864 | | }); [08:47:26.623]: | |__- in this macro invocation [08:47:26.623]: | [08:47:26.623]: note: the built-in attribute `inline` will be ignored, since it's applied to the macro invocation `impl_insert_axis_array` [08:47:26.624]: --> /Users/tom/.cargo/registry/src/github.com-1ecc6299db9ec823/ndarray-0.15.3/src/dimension/dimension_trait.rs:863:5 [08:47:26.624]: | [08:47:26.624]: 863 | impl_insert_axis_array!(5); [08:47:26.624]: | ^^^^^^^^^^^^^^^^^^^^^^ [08:47:26.624]: = note: this warning originates in the macro `large_dim` (in Nightly builds, run with -Z macro-backtrace for more info) [08:47:26.624]: [08:47:27.248]: warning: `must_use` attribute on `async` functions applies to the anonymous `Future` returned by the function, not the value within [08:47:27.248]: --> /Users/tom/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-1.12.0/src/task/yield_now.rs:36:1 [08:47:27.248]: | [08:47:27.248]: 36 | #[must_use = "yield_now does nothing unless polled/`await`-ed"] [08:47:27.248]: | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [08:47:27.248]: 37 | #[cfg_attr(docsrs, doc(cfg(feature = "rt")))] [08:47:27.248]: 38 | / pub async fn yield_now() { [08:47:27.248]: 39 | | /// Yield implementation [08:47:27.248]: 40 | | struct YieldNow { [08:47:27.248]: 41 | | yielded: bool, [08:47:27.248]: ... | [08:47:27.248]: 58 | | YieldNow { yielded: false }.await [08:47:27.248]: 59 | | } [08:47:27.248]: | |_- this attribute does nothing, the `Future`s returned by async functions are already `must_use` [08:47:27.248]: | [08:47:27.248]: = note: `#[warn(unused_attributes)]` on by default [08:47:27.248]: [08:47:29.589]: Compiling allo-isolate v0.1.14 [08:47:29.589]: Running `CARGO=/Users/tom/.rustup/toolchains/1.64.0-x86_64-apple-darwin/bin/cargo CARGO_CRATE_NAME=allo_isolate CARGO_MANIFEST_DIR=/Users/tom/.cargo/registry/src/github.com-1ecc6299db9ec823/allo-isolate-0.1.14 CARGO_PKG_AUTHORS='Sunshine Foundation Developers:Shady Khalifa ' CARGO_PKG_DESCRIPTION='Run Multithreaded Rust along with Dart VM (in isolate).' CARGO_PKG_HOMEPAGE='https://github.com/sunshine-protocol/allo-isolate' CARGO_PKG_LICENSE='' CARGO_PKG_LICENSE_FILE=LICENSE CARGO_PKG_NAME=allo-isolate CARGO_PKG_REPOSITORY='https://github.com/sunshine-protocol/allo-isolate' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.1.14 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=14 CARGO_PKG_VERSION_PRE='' DYLD_FALLBACK_LIBRARY_PATH='/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/release/deps:/Users/tom/.rustup/toolchains/1.64.0-x86_64-apple-darwin/lib:/Users/tom/.rustup/toolchains/1.64.0-x86_64-apple-darwin/lib:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/' rustc --crate-name allo_isolate --edition=2018 /Users/tom/.cargo/registry/src/github.com-1ecc6299db9ec823/allo-isolate-0.1.14/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no -C split-debuginfo=unpacked -C debuginfo=2 --cfg 'feature="anyhow"' --cfg 'feature="chrono"' --cfg 'feature="default"' -C metadata=3a0c67f6bf3f9482 -C extra-filename=-3a0c67f6bf3f9482 --out-dir /Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps --target x86_64-apple-ios -L dependency=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps -L dependency=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/release/deps --extern anyhow=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libanyhow-a49e2b0e0ce09114.rmeta --extern atomic=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libatomic-a75fc43322fb9bf2.rmeta --extern chrono=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libchrono-4a69ae17eca14e25.rmeta --cap-lints warn` [08:47:32.954]: Compiling simplelog v0.10.2 [08:47:32.955]: Running `CARGO=/Users/tom/.rustup/toolchains/1.64.0-x86_64-apple-darwin/bin/cargo CARGO_CRATE_NAME=simplelog CARGO_MANIFEST_DIR=/Users/tom/.cargo/registry/src/github.com-1ecc6299db9ec823/simplelog-0.10.2 CARGO_PKG_AUTHORS='Drakulix ' CARGO_PKG_DESCRIPTION='A simple and easy-to-use logging facility for Rust'\''s log crate' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=simplelog CARGO_PKG_REPOSITORY='https://github.com/drakulix/simplelog.rs' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.10.2 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=10 CARGO_PKG_VERSION_PATCH=2 CARGO_PKG_VERSION_PRE='' DYLD_FALLBACK_LIBRARY_PATH='/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/release/deps:/Users/tom/.rustup/toolchains/1.64.0-x86_64-apple-darwin/lib:/Users/tom/.rustup/toolchains/1.64.0-x86_64-apple-darwin/lib:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/' rustc --crate-name simplelog --edition=2018 /Users/tom/.cargo/registry/src/github.com-1ecc6299db9ec823/simplelog-0.10.2/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no -C split-debuginfo=unpacked -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="termcolor"' -C metadata=430e472ffafc6614 -C extra-filename=-430e472ffafc6614 --out-dir /Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps --target x86_64-apple-ios -L dependency=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps -L dependency=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/release/deps --extern chrono=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libchrono-4a69ae17eca14e25.rmeta --extern log=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/liblog-50ddee76197df382.rmeta --extern termcolor=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libtermcolor-5feef9218f233737.rmeta --cap-lints warn` [08:47:33.236]: warning: use of deprecated associated function `chrono::FixedOffset::east`: use `east_opt()` instead [08:47:33.236]: --> /Users/tom/.cargo/registry/src/github.com-1ecc6299db9ec823/simplelog-0.10.2/src/config.rs:261:39 [08:47:33.236]: | [08:47:33.236]: 261 | time_offset: FixedOffset::east(0), [08:47:33.236]: | ^^^^ [08:47:33.236]: | [08:47:33.236]: = note: `#[warn(deprecated)]` on by default [08:47:33.236]: [08:47:33.360]: warning: field `tx` is never read [08:47:33.360]: --> /Users/tom/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-1.12.0/src/runtime/blocking/shutdown.rs:13:5 [08:47:33.360]: | [08:47:33.360]: 12 | pub(super) struct Sender { [08:47:33.360]: | ------ field in this struct [08:47:33.360]: 13 | tx: Arc>, [08:47:33.360]: | ^^ [08:47:33.360]: | [08:47:33.360]: = note: `#[warn(dead_code)]` on by default [08:47:33.360]: = note: `Sender` has derived impls for the traits `Clone` and `Debug`, but these are intentionally ignored during dead code analysis [08:47:33.360]: [08:47:33.361]: warning: fields `signal_handle` and `clock` are never read [08:47:33.361]: --> /Users/tom/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-1.12.0/src/runtime/handle.rs:23:16 [08:47:33.361]: | [08:47:33.361]: 16 | pub struct Handle { [08:47:33.361]: | ------ fields in this struct [08:47:33.361]: ... [08:47:33.361]: 23 | pub(super) signal_handle: driver::SignalHandle, [08:47:33.361]: | ^^^^^^^^^^^^^ [08:47:33.361]: ... [08:47:33.361]: 29 | pub(super) clock: driver::Clock, [08:47:33.361]: | ^^^^^ [08:47:33.361]: | [08:47:33.361]: = note: `Handle` has derived impls for the traits `Clone` and `Debug`, but these are intentionally ignored during dead code analysis [08:47:33.361]: [08:47:33.361]: warning: fields `handle` and `guard` are never read [08:47:33.361]: --> /Users/tom/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-1.12.0/src/runtime/handle.rs:44:5 [08:47:33.361]: | [08:47:33.361]: 43 | pub struct EnterGuard<'a> { [08:47:33.361]: | ---------- fields in this struct [08:47:33.361]: 44 | handle: &'a Handle, [08:47:33.362]: | ^^^^^^ [08:47:33.362]: 45 | guard: context::EnterGuard, [08:47:33.362]: | ^^^^^ [08:47:33.362]: | [08:47:33.362]: = note: `EnterGuard` has a derived impl for the trait `Debug`, but this is intentionally ignored during dead code analysis [08:47:33.362]: [08:47:36.423]: Compiling debugid v0.7.2 [08:47:36.423]: Running `CARGO=/Users/tom/.rustup/toolchains/1.64.0-x86_64-apple-darwin/bin/cargo CARGO_CRATE_NAME=debugid CARGO_MANIFEST_DIR=/Users/tom/.cargo/registry/src/github.com-1ecc6299db9ec823/debugid-0.7.2 CARGO_PKG_AUTHORS='Sentry ' CARGO_PKG_DESCRIPTION='Common reusable types for implementing the sentry.io protocol.' CARGO_PKG_HOMEPAGE='https://sentry.io/' CARGO_PKG_LICENSE=Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=debugid CARGO_PKG_REPOSITORY='https://github.com/getsentry/rust-debugid' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.7.2 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=7 CARGO_PKG_VERSION_PATCH=2 CARGO_PKG_VERSION_PRE='' DYLD_FALLBACK_LIBRARY_PATH='/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/release/deps:/Users/tom/.rustup/toolchains/1.64.0-x86_64-apple-darwin/lib:/Users/tom/.rustup/toolchains/1.64.0-x86_64-apple-darwin/lib:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/' rustc --crate-name debugid --edition=2018 /Users/tom/.cargo/registry/src/github.com-1ecc6299db9ec823/debugid-0.7.2/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no -C split-debuginfo=unpacked -C debuginfo=2 --cfg 'feature="serde"' -C metadata=2452bb17fb3f1fed -C extra-filename=-2452bb17fb3f1fed --out-dir /Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps --target x86_64-apple-ios -L dependency=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps -L dependency=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/release/deps --extern serde=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libserde-3aa75456434d2f92.rmeta --extern uuid=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libuuid-0378bbd3a45c6ccb.rmeta --cap-lints warn` [08:47:36.527]: [opencv 0.84.5] === Available jobs from the environment created jobserver is: 0 or there is an error reading that value [08:47:36.527]: [opencv 0.84.5] === Creating a new job server with num_jobs: 12 [08:47:36.527]: [opencv 0.84.5] === Generating 3 modules [08:47:36.528]: [opencv 0.84.5] === Running: "/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/release/build/opencv-153fda4cef3c3bbf/build-script-build" "/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/temp_ios_headers" "/Users/tom/.cargo/registry/src/github.com-1ecc6299db9ec823/opencv-0.84.5/src_cpp" "/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/build/opencv-d6b3999bb78f6a05/out" "core" "" [08:47:36.528]: [opencv 0.84.5] === Running: "/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/release/build/opencv-153fda4cef3c3bbf/build-script-build" "/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/temp_ios_headers" "/Users/tom/.cargo/registry/src/github.com-1ecc6299db9ec823/opencv-0.84.5/src_cpp" "/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/build/opencv-d6b3999bb78f6a05/out" "imgcodecs" "" [08:47:36.529]: [opencv 0.84.5] === Running: "/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/release/build/opencv-153fda4cef3c3bbf/build-script-build" "/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/temp_ios_headers" "/Users/tom/.cargo/registry/src/github.com-1ecc6299db9ec823/opencv-0.84.5/src_cpp" "/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/build/opencv-d6b3999bb78f6a05/out" "imgproc" "" [08:47:36.756]: Compiling image v0.23.14 (https://github.com/image-rs/image?rev=d4313cbfafbf5dfb9d9dbd87e81fe8fdb6739ed6#d4313cbf) [08:47:36.756]: Running `CARGO=/Users/tom/.rustup/toolchains/1.64.0-x86_64-apple-darwin/bin/cargo CARGO_CRATE_NAME=image CARGO_MANIFEST_DIR=/Users/tom/.cargo/git/checkouts/image-c1c0bf49fde10069/d4313cb CARGO_PKG_AUTHORS='The image-rs Developers' CARGO_PKG_DESCRIPTION='Imaging library written in Rust. Provides basic filters and decoders for the most common image formats.' CARGO_PKG_HOMEPAGE='https://github.com/image-rs/image' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=image CARGO_PKG_REPOSITORY='https://github.com/image-rs/image' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.23.14 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=23 CARGO_PKG_VERSION_PATCH=14 CARGO_PKG_VERSION_PRE='' DYLD_FALLBACK_LIBRARY_PATH='/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/release/deps:/Users/tom/.rustup/toolchains/1.64.0-x86_64-apple-darwin/lib:/Users/tom/.rustup/toolchains/1.64.0-x86_64-apple-darwin/lib:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/' rustc --crate-name image --edition=2018 /Users/tom/.cargo/git/checkouts/image-c1c0bf49fde10069/d4313cb/./src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no -C split-debuginfo=unpacked -C debuginfo=2 --cfg 'feature="bmp"' --cfg 'feature="jpeg"' --cfg 'feature="jpeg_rayon"' --cfg 'feature="png"' -C metadata=50cf85ffd5ea3d91 -C extra-filename=-50cf85ffd5ea3d91 --out-dir /Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps --target x86_64-apple-ios -L dependency=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps -L dependency=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/release/deps --extern bytemuck=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libbytemuck-16911aaa7811745d.rmeta --extern byteorder=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libbyteorder-e66b7e9e60aa9df3.rmeta --extern color_quant=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libcolor_quant-f4a5239de58d6b0e.rmeta --extern jpeg=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libjpeg_decoder-63abb39bf1746c42.rmeta --extern num_iter=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libnum_iter-6d33978ef32635d6.rmeta --extern num_rational=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libnum_rational-4d06476f3d9e1838.rmeta --extern num_traits=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libnum_traits-d459ad2a50459083.rmeta --extern png=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libpng-b9259b33e7bd8357.rmeta --cap-lints warn` [08:47:36.961]: Compiling tokio-util v0.6.8 [08:47:36.961]: Running `CARGO=/Users/tom/.rustup/toolchains/1.64.0-x86_64-apple-darwin/bin/cargo CARGO_CRATE_NAME=tokio_util CARGO_MANIFEST_DIR=/Users/tom/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-util-0.6.8 CARGO_PKG_AUTHORS='Tokio Contributors ' CARGO_PKG_DESCRIPTION='Additional utilities for working with Tokio. [08:47:36.961]: ' CARGO_PKG_HOMEPAGE='https://tokio.rs' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=tokio-util CARGO_PKG_REPOSITORY='https://github.com/tokio-rs/tokio' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.6.8 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=6 CARGO_PKG_VERSION_PATCH=8 CARGO_PKG_VERSION_PRE='' DYLD_FALLBACK_LIBRARY_PATH='/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/release/deps:/Users/tom/.rustup/toolchains/1.64.0-x86_64-apple-darwin/lib:/Users/tom/.rustup/toolchains/1.64.0-x86_64-apple-darwin/lib:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/' rustc --crate-name tokio_util --edition=2018 /Users/tom/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-util-0.6.8/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no -C split-debuginfo=unpacked -C debuginfo=2 --cfg 'feature="codec"' --cfg 'feature="default"' -C metadata=23ef438c3a518378 -C extra-filename=-23ef438c3a518378 --out-dir /Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps --target x86_64-apple-ios -L dependency=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps -L dependency=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/release/deps --extern bytes=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libbytes-57b3b7cdad79ed5b.rmeta --extern futures_core=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libfutures_core-02196662a10cee54.rmeta --extern futures_sink=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libfutures_sink-5eda569fb00b12d7.rmeta --extern log=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/liblog-50ddee76197df382.rmeta --extern pin_project_lite=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libpin_project_lite-1b6ef9c7132fbc3a.rmeta --extern tokio=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libtokio-52beedfd41892e23.rmeta --cap-lints warn` [08:47:37.038]: Compiling sentry-types v0.23.0 (https://github.com/fzyzcjy/sentry-rust#bf71bf43) [08:47:37.038]: Running `CARGO=/Users/tom/.rustup/toolchains/1.64.0-x86_64-apple-darwin/bin/cargo CARGO_CRATE_NAME=sentry_types CARGO_MANIFEST_DIR=/Users/tom/.cargo/git/checkouts/sentry-rust-92aa47acd509410f/bf71bf4/sentry-types CARGO_PKG_AUTHORS='Sentry ' CARGO_PKG_DESCRIPTION='Common reusable types for implementing the sentry.io protocol. [08:47:37.038]: ' CARGO_PKG_HOMEPAGE='https://sentry.io/welcome/' CARGO_PKG_LICENSE=Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=sentry-types CARGO_PKG_REPOSITORY='https://github.com/getsentry/sentry-rust' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.23.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=23 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' DYLD_FALLBACK_LIBRARY_PATH='/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/release/deps:/Users/tom/.rustup/toolchains/1.64.0-x86_64-apple-darwin/lib:/Users/tom/.rustup/toolchains/1.64.0-x86_64-apple-darwin/lib:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/' rustc --crate-name sentry_types --edition=2018 /Users/tom/.cargo/git/checkouts/sentry-rust-92aa47acd509410f/bf71bf4/sentry-types/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no -C split-debuginfo=unpacked -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="protocol"' -C metadata=d2e8ac4708391bde -C extra-filename=-d2e8ac4708391bde --out-dir /Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps --target x86_64-apple-ios -L dependency=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps -L dependency=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/release/deps --extern chrono=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libchrono-4a69ae17eca14e25.rmeta --extern debugid=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libdebugid-2452bb17fb3f1fed.rmeta --extern getrandom=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libgetrandom-93f816048747c799.rmeta --extern hex=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libhex-598eee90c752f82a.rmeta --extern serde=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libserde-3aa75456434d2f92.rmeta --extern serde_json=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libserde_json-fb40980cd54246c9.rmeta --extern thiserror=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libthiserror-9e849b459a6e3f66.rmeta --extern url=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/liburl-57d2ca7835a48e01.rmeta --extern uuid=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libuuid-0378bbd3a45c6ccb.rmeta --cap-lints warn` [08:47:37.258]: warning: unused doc comment [08:47:37.258]: --> /Users/tom/.cargo/git/checkouts/image-c1c0bf49fde10069/d4313cb/./src/lib.rs:386:9 [08:47:37.258]: | [08:47:37.258]: 386 | #[doc = $content] extern { } [08:47:37.258]: | ^^^^^^^^^^^^^^^^^ ---------- rustdoc does not generate documentation for extern blocks [08:47:37.258]: ... [08:47:37.258]: 391 | insert_as_doc!(include_str!("../README.md")); [08:47:37.258]: | -------------------------------------------- in this macro invocation [08:47:37.258]: | [08:47:37.258]: = note: `#[warn(unused_doc_comments)]` on by default [08:47:37.258]: = help: use `//` for a plain comment [08:47:37.258]: = note: this warning originates in the macro `insert_as_doc` (in Nightly builds, run with -Z macro-backtrace for more info) [08:47:37.258]: [08:47:37.950]: Compiling sentry-types v0.23.0 [08:47:37.951]: Running `CARGO=/Users/tom/.rustup/toolchains/1.64.0-x86_64-apple-darwin/bin/cargo CARGO_CRATE_NAME=sentry_types CARGO_MANIFEST_DIR=/Users/tom/.cargo/registry/src/github.com-1ecc6299db9ec823/sentry-types-0.23.0 CARGO_PKG_AUTHORS='Sentry ' CARGO_PKG_DESCRIPTION='Common reusable types for implementing the sentry.io protocol. [08:47:37.951]: ' CARGO_PKG_HOMEPAGE='https://sentry.io/welcome/' CARGO_PKG_LICENSE=Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=sentry-types CARGO_PKG_REPOSITORY='https://github.com/getsentry/sentry-rust' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.23.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=23 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' DYLD_FALLBACK_LIBRARY_PATH='/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/release/deps:/Users/tom/.rustup/toolchains/1.64.0-x86_64-apple-darwin/lib:/Users/tom/.rustup/toolchains/1.64.0-x86_64-apple-darwin/lib:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/' rustc --crate-name sentry_types --edition=2018 /Users/tom/.cargo/registry/src/github.com-1ecc6299db9ec823/sentry-types-0.23.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no -C split-debuginfo=unpacked -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="protocol"' -C metadata=356ffc1d03abb2f6 -C extra-filename=-356ffc1d03abb2f6 --out-dir /Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps --target x86_64-apple-ios -L dependency=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps -L dependency=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/release/deps --extern chrono=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libchrono-4a69ae17eca14e25.rmeta --extern debugid=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libdebugid-2452bb17fb3f1fed.rmeta --extern serde=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libserde-3aa75456434d2f92.rmeta --extern serde_json=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libserde_json-fb40980cd54246c9.rmeta --extern thiserror=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libthiserror-9e849b459a6e3f66.rmeta --extern url=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/liburl-57d2ca7835a48e01.rmeta --extern uuid=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libuuid-0378bbd3a45c6ccb.rmeta --cap-lints warn` [08:47:38.395]: [dart-sys 4.0.2] TARGET = Some("x86_64-apple-ios") [08:47:38.395]: [dart-sys 4.0.2] OPT_LEVEL = Some("3") [08:47:38.395]: [dart-sys 4.0.2] HOST = Some("x86_64-apple-darwin") [08:47:38.395]: [dart-sys 4.0.2] cargo:rerun-if-env-changed=CC_x86_64-apple-ios [08:47:38.395]: [dart-sys 4.0.2] CC_x86_64-apple-ios = None [08:47:38.395]: [dart-sys 4.0.2] cargo:rerun-if-env-changed=CC_x86_64_apple_ios [08:47:38.395]: [dart-sys 4.0.2] CC_x86_64_apple_ios = None [08:47:38.395]: [dart-sys 4.0.2] cargo:rerun-if-env-changed=TARGET_CC [08:47:38.395]: [dart-sys 4.0.2] TARGET_CC = None [08:47:38.395]: [dart-sys 4.0.2] cargo:rerun-if-env-changed=CC [08:47:38.395]: [dart-sys 4.0.2] CC = None [08:47:38.395]: [dart-sys 4.0.2] cargo:rerun-if-env-changed=CFLAGS_x86_64-apple-ios [08:47:38.396]: [dart-sys 4.0.2] CFLAGS_x86_64-apple-ios = None [08:47:38.396]: [dart-sys 4.0.2] cargo:rerun-if-env-changed=CFLAGS_x86_64_apple_ios [08:47:38.396]: [dart-sys 4.0.2] CFLAGS_x86_64_apple_ios = None [08:47:38.396]: [dart-sys 4.0.2] cargo:rerun-if-env-changed=TARGET_CFLAGS [08:47:38.396]: [dart-sys 4.0.2] TARGET_CFLAGS = None [08:47:38.396]: [dart-sys 4.0.2] cargo:rerun-if-env-changed=CFLAGS [08:47:38.396]: [dart-sys 4.0.2] CFLAGS = None [08:47:38.396]: [dart-sys 4.0.2] cargo:rerun-if-env-changed=CRATE_CC_NO_DEFAULTS [08:47:38.396]: [dart-sys 4.0.2] CRATE_CC_NO_DEFAULTS = None [08:47:38.396]: [dart-sys 4.0.2] DEBUG = Some("true") [08:47:38.396]: [dart-sys 4.0.2] Detecting iOS SDK path for iphonesimulator [08:47:38.396]: [dart-sys 4.0.2] running: "xcrun" "--show-sdk-path" "--sdk" "iphonesimulator" [08:47:38.413]: [dart-sys 4.0.2] exit status: 0 [08:47:38.413]: [dart-sys 4.0.2] running: "clang" "-O3" "-fPIC" "-gdwarf-2" "-fno-omit-frame-pointer" "--target=x86_64-apple-ios" "-m64" "-mios-simulator-version-min=7.0" "-isysroot" "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator16.2.sdk" "-fembed-bitcode" "-I" "/Users/tom/.cargo/registry/src/github.com-1ecc6299db9ec823/dart-sys-4.0.2/dart-sdk/include" "-Wall" "-Wextra" "-o" "/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/build/dart-sys-412bbd4acbdf9c93/out/a21b8578e9e83444-dart_api_dl.o" "-c" "/Users/tom/.cargo/registry/src/github.com-1ecc6299db9ec823/dart-sys-4.0.2/dart-sdk/include/dart_api_dl.c" [08:47:38.700]: [dart-sys 4.0.2] exit status: 0 [08:47:38.700]: [oslog 0.1.0] cargo:rerun-if-env-changed=AR_x86_64-apple-ios [08:47:38.700]: [oslog 0.1.0] AR_x86_64-apple-ios = None [08:47:38.700]: [oslog 0.1.0] cargo:rerun-if-env-changed=AR_x86_64_apple_ios [08:47:38.701]: [oslog 0.1.0] AR_x86_64_apple_ios = None [08:47:38.701]: [oslog 0.1.0] cargo:rerun-if-env-changed=TARGET_AR [08:47:38.701]: [oslog 0.1.0] TARGET_AR = None [08:47:38.701]: [oslog 0.1.0] cargo:rerun-if-env-changed=AR [08:47:38.701]: [oslog 0.1.0] AR = None [08:47:38.701]: [oslog 0.1.0] RUSTC_LINKER = None [08:47:38.701]: [oslog 0.1.0] cargo:rerun-if-env-changed=CROSS_COMPILE [08:47:38.701]: [oslog 0.1.0] CROSS_COMPILE = None [08:47:38.701]: [oslog 0.1.0] cargo:rerun-if-env-changed=ARFLAGS_x86_64-apple-ios [08:47:38.701]: [oslog 0.1.0] ARFLAGS_x86_64-apple-ios = None [08:47:38.701]: [oslog 0.1.0] cargo:rerun-if-env-changed=ARFLAGS_x86_64_apple_ios [08:47:38.701]: [oslog 0.1.0] ARFLAGS_x86_64_apple_ios = None [08:47:38.701]: [oslog 0.1.0] cargo:rerun-if-env-changed=TARGET_ARFLAGS [08:47:38.701]: [oslog 0.1.0] TARGET_ARFLAGS = None [08:47:38.701]: [oslog 0.1.0] cargo:rerun-if-env-changed=ARFLAGS [08:47:38.701]: [oslog 0.1.0] ARFLAGS = None [08:47:38.701]: [oslog 0.1.0] running: "ar" "cq" "/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/build/oslog-e69e800f3271951e/out/libwrapper.a" "/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/build/oslog-e69e800f3271951e/out/wrapper.o" [08:47:38.735]: warning: `simplelog` (lib) generated 1 warning [08:47:38.735]: Running `CARGO=/Users/tom/.rustup/toolchains/1.64.0-x86_64-apple-darwin/bin/cargo CARGO_CRATE_NAME=tflite_rust CARGO_MANIFEST_DIR=/Users/tom/Main/yplusplus/frontend/tflite_rust CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=tflite_rust CARGO_PKG_REPOSITORY='' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.1.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' DYLD_FALLBACK_LIBRARY_PATH='/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/release/deps:/Users/tom/.rustup/toolchains/1.64.0-x86_64-apple-darwin/lib:/Users/tom/.rustup/toolchains/1.64.0-x86_64-apple-darwin/lib:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/' OUT_DIR=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/build/tflite_rust-6af461b4fcf7304f/out rustc --crate-name tflite_rust --edition=2018 /Users/tom/Main/yplusplus/frontend/tflite_rust/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no -C split-debuginfo=unpacked -C debuginfo=2 -C metadata=14b77a5b125992f8 -C extra-filename=-14b77a5b125992f8 --out-dir /Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps --target x86_64-apple-ios -L dependency=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps -L dependency=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/release/deps --extern anyhow=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libanyhow-a49e2b0e0ce09114.rmeta --extern byte_slice_cast=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libbyte_slice_cast-3eb21b333d72d265.rmeta --extern ndarray=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libndarray-bae953d31f6b906b.rmeta -L native=/Users/tom/Main/yplusplus/frontend/tflite_rust/built_artifacts/ios/TensorFlowLiteC.framework/TensorFlowLiteC -l tensorflowlite_c` [08:47:38.743]: [oslog 0.1.0] exit status: 0 [08:47:38.743]: [oslog 0.1.0] running: "ar" "s" "/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/build/oslog-e69e800f3271951e/out/libwrapper.a" [08:47:38.785]: [oslog 0.1.0] exit status: 0 [08:47:38.785]: [oslog 0.1.0] cargo:rustc-link-lib=static=wrapper [08:47:38.786]: [oslog 0.1.0] cargo:rustc-link-search=native=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/build/oslog-e69e800f3271951e/out [08:47:38.789]: Compiling ndarray-stats v0.5.0 [08:47:38.789]: Running `CARGO=/Users/tom/.rustup/toolchains/1.64.0-x86_64-apple-darwin/bin/cargo CARGO_CRATE_NAME=ndarray_stats CARGO_MANIFEST_DIR=/Users/tom/.cargo/registry/src/github.com-1ecc6299db9ec823/ndarray-stats-0.5.0 CARGO_PKG_AUTHORS='Jim Turner :LukeMathWalker ' CARGO_PKG_DESCRIPTION='Statistical routines for ArrayBase, the n-dimensional array data structure provided by ndarray.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=ndarray-stats CARGO_PKG_REPOSITORY='https://github.com/rust-ndarray/ndarray-stats' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.5.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=5 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' DYLD_FALLBACK_LIBRARY_PATH='/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/release/deps:/Users/tom/.rustup/toolchains/1.64.0-x86_64-apple-darwin/lib:/Users/tom/.rustup/toolchains/1.64.0-x86_64-apple-darwin/lib:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/' rustc --crate-name ndarray_stats --edition=2018 /Users/tom/.cargo/registry/src/github.com-1ecc6299db9ec823/ndarray-stats-0.5.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no -C split-debuginfo=unpacked -C debuginfo=2 -C metadata=a43cb0d511845ddb -C extra-filename=-a43cb0d511845ddb --out-dir /Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps --target x86_64-apple-ios -L dependency=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps -L dependency=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/release/deps --extern indexmap=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libindexmap-d99358588a7e9118.rmeta --extern itertools=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libitertools-58ba63f9a5560432.rmeta --extern ndarray=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libndarray-bae953d31f6b906b.rmeta --extern noisy_float=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libnoisy_float-3e66834c1437ed8c.rmeta --extern num_integer=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libnum_integer-96aaa9674de8c9ff.rmeta --extern num_traits=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libnum_traits-d459ad2a50459083.rmeta --extern rand=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/librand-56df31966bc3e697.rmeta --cap-lints warn` [08:47:39.659]: warning: `ndarray` (lib) generated 7 warnings [08:47:39.660]: Compiling ndarray-rand v0.14.0 [08:47:39.660]: Running `CARGO=/Users/tom/.rustup/toolchains/1.64.0-x86_64-apple-darwin/bin/cargo CARGO_CRATE_NAME=ndarray_rand CARGO_MANIFEST_DIR=/Users/tom/.cargo/registry/src/github.com-1ecc6299db9ec823/ndarray-rand-0.14.0 CARGO_PKG_AUTHORS=bluss CARGO_PKG_DESCRIPTION='Constructors for randomized arrays. `rand` integration for `ndarray`.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=ndarray-rand CARGO_PKG_REPOSITORY='https://github.com/rust-ndarray/ndarray' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.14.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=14 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' DYLD_FALLBACK_LIBRARY_PATH='/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/release/deps:/Users/tom/.rustup/toolchains/1.64.0-x86_64-apple-darwin/lib:/Users/tom/.rustup/toolchains/1.64.0-x86_64-apple-darwin/lib:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/' rustc --crate-name ndarray_rand --edition=2018 /Users/tom/.cargo/registry/src/github.com-1ecc6299db9ec823/ndarray-rand-0.14.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no -C split-debuginfo=unpacked -C debuginfo=2 -C metadata=3085d2551c74e997 -C extra-filename=-3085d2551c74e997 --out-dir /Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps --target x86_64-apple-ios -L dependency=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps -L dependency=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/release/deps --extern ndarray=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libndarray-bae953d31f6b906b.rmeta --extern rand=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/librand-56df31966bc3e697.rmeta --extern rand_distr=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/librand_distr-283de94f2ef46012.rmeta --cap-lints warn` [08:47:40.335]: Compiling ndarray_ext v0.1.0 (/Users/tom/Main/yplusplus/frontend/ndarray_ext/ndarray_ext) [08:47:40.335]: Running `CARGO=/Users/tom/.rustup/toolchains/1.64.0-x86_64-apple-darwin/bin/cargo CARGO_CRATE_NAME=ndarray_ext CARGO_MANIFEST_DIR=/Users/tom/Main/yplusplus/frontend/ndarray_ext/ndarray_ext CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=ndarray_ext CARGO_PKG_REPOSITORY='' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.1.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' DYLD_FALLBACK_LIBRARY_PATH='/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/release/deps:/Users/tom/.rustup/toolchains/1.64.0-x86_64-apple-darwin/lib:/Users/tom/.rustup/toolchains/1.64.0-x86_64-apple-darwin/lib:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/' rustc --crate-name ndarray_ext --edition=2018 /Users/tom/Main/yplusplus/frontend/ndarray_ext/ndarray_ext/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no -C split-debuginfo=unpacked -C debuginfo=2 -C metadata=97ecf5db29a1a215 -C extra-filename=-97ecf5db29a1a215 --out-dir /Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps --target x86_64-apple-ios -L dependency=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps -L dependency=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/release/deps --extern anyhow=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libanyhow-a49e2b0e0ce09114.rmeta --extern ndarray=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libndarray-bae953d31f6b906b.rmeta --extern ndarray_ext_macro=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/release/deps/libndarray_ext_macro-c8d992ea9ca05950.dylib --extern num=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libnum-699089a28d97f9ff.rmeta` [08:47:40.681]: Compiling h2 v0.3.6 [08:47:40.681]: Running `CARGO=/Users/tom/.rustup/toolchains/1.64.0-x86_64-apple-darwin/bin/cargo CARGO_CRATE_NAME=h2 CARGO_MANIFEST_DIR=/Users/tom/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.6 CARGO_PKG_AUTHORS='Carl Lerche :Sean McArthur ' CARGO_PKG_DESCRIPTION='An HTTP/2.0 client and server' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=h2 CARGO_PKG_REPOSITORY='https://github.com/hyperium/h2' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.3.6 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=6 CARGO_PKG_VERSION_PRE='' DYLD_FALLBACK_LIBRARY_PATH='/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/release/deps:/Users/tom/.rustup/toolchains/1.64.0-x86_64-apple-darwin/lib:/Users/tom/.rustup/toolchains/1.64.0-x86_64-apple-darwin/lib:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/' rustc --crate-name h2 --edition=2018 /Users/tom/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.3.6/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no -C split-debuginfo=unpacked -C debuginfo=2 -C metadata=1f00b77706615314 -C extra-filename=-1f00b77706615314 --out-dir /Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps --target x86_64-apple-ios -L dependency=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps -L dependency=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/release/deps --extern bytes=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libbytes-57b3b7cdad79ed5b.rmeta --extern fnv=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libfnv-c7392f7c340a5241.rmeta --extern futures_core=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libfutures_core-02196662a10cee54.rmeta --extern futures_sink=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libfutures_sink-5eda569fb00b12d7.rmeta --extern futures_util=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libfutures_util-0f2a86e02ab432cc.rmeta --extern http=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libhttp-6be31484ee150fab.rmeta --extern indexmap=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libindexmap-d99358588a7e9118.rmeta --extern slab=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libslab-aa72f6ac1f26ac58.rmeta --extern tokio=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libtokio-52beedfd41892e23.rmeta --extern tokio_util=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libtokio_util-23ef438c3a518378.rmeta --extern tracing=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libtracing-0c0ecc3c2a242d12.rmeta --cap-lints warn` [08:47:41.071]: Running `CARGO=/Users/tom/.rustup/toolchains/1.64.0-x86_64-apple-darwin/bin/cargo CARGO_CRATE_NAME=oslog CARGO_MANIFEST_DIR=/Users/tom/.cargo/registry/src/github.com-1ecc6299db9ec823/oslog-0.1.0 CARGO_PKG_AUTHORS='Steven Joruk ' CARGO_PKG_DESCRIPTION='A minimal safe wrapper around Apple'\''s unified logging system' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=oslog CARGO_PKG_REPOSITORY='https://github.com/steven-joruk/oslog' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.1.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' DYLD_FALLBACK_LIBRARY_PATH='/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/release/deps:/Users/tom/.rustup/toolchains/1.64.0-x86_64-apple-darwin/lib:/Users/tom/.rustup/toolchains/1.64.0-x86_64-apple-darwin/lib:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/' OUT_DIR=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/build/oslog-e69e800f3271951e/out rustc --crate-name oslog --edition=2018 /Users/tom/.cargo/registry/src/github.com-1ecc6299db9ec823/oslog-0.1.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no -C split-debuginfo=unpacked -C debuginfo=2 --cfg 'feature="dashmap"' --cfg 'feature="default"' --cfg 'feature="log"' --cfg 'feature="logger"' -C metadata=e86a95305e19e1ca -C extra-filename=-e86a95305e19e1ca --out-dir /Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps --target x86_64-apple-ios -L dependency=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps -L dependency=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/release/deps --extern dashmap=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libdashmap-0cbff9e2119d7ede.rmeta --extern log=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/liblog-50ddee76197df382.rmeta --cap-lints warn -L native=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/build/oslog-e69e800f3271951e/out -l static=wrapper` [08:47:41.252]: warning: unused doc comment [08:47:41.252]: --> /Users/tom/.cargo/registry/src/github.com-1ecc6299db9ec823/oslog-0.1.0/src/sys.rs:21:1 [08:47:41.252]: | [08:47:41.252]: 21 | /// Provided by the OS. [08:47:41.252]: | ^^^^^^^^^^^^^^^^^^^^^^^ [08:47:41.252]: 22 | / extern "C" { [08:47:41.252]: 23 | | pub fn os_log_create(subsystem: *const c_char, category: *const c_char) -> os_log_t; [08:47:41.252]: 24 | | pub fn os_release(object: *mut c_void); [08:47:41.252]: 25 | | pub fn os_log_type_enabled(log: os_log_t, level: os_log_type_t) -> bool; [08:47:41.252]: 26 | | } [08:47:41.252]: | |_- rustdoc does not generate documentation for extern blocks [08:47:41.252]: | [08:47:41.252]: = note: `#[warn(unused_doc_comments)]` on by default [08:47:41.252]: = help: use `//` for a plain comment [08:47:41.252]: [08:47:41.252]: warning: unused doc comment [08:47:41.252]: --> /Users/tom/.cargo/registry/src/github.com-1ecc6299db9ec823/oslog-0.1.0/src/sys.rs:28:1 [08:47:41.252]: | [08:47:41.252]: 28 | /// Wrappers defined in wrapper.c because most of the os_log_* APIs are macros. [08:47:41.252]: | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [08:47:41.252]: 29 | / extern "C" { [08:47:41.253]: 30 | | pub fn wrapped_get_default_log() -> os_log_t; [08:47:41.253]: 31 | | pub fn wrapped_os_log_with_type(log: os_log_t, log_type: os_log_type_t, message: *const c_char); [08:47:41.253]: 32 | | pub fn wrapped_os_log_debug(log: os_log_t, message: *const c_char); [08:47:41.253]: ... | [08:47:41.253]: 36 | | pub fn wrapped_os_log_fault(log: os_log_t, message: *const c_char); [08:47:41.253]: 37 | | } [08:47:41.253]: | |_- rustdoc does not generate documentation for extern blocks [08:47:41.253]: | [08:47:41.253]: = help: use `//` for a plain comment [08:47:41.253]: [08:47:41.942]: [ring 0.16.20] running: "ar" "cq" "/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/build/ring-d8851c9be174887d/out/libring-core.a" "/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/build/ring-d8851c9be174887d/out/aesni-x86_64-macosx.o" "/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/build/ring-d8851c9be174887d/out/vpaes-x86_64-macosx.o" "/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/build/ring-d8851c9be174887d/out/x86_64-mont-macosx.o" "/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/build/ring-d8851c9be174887d/out/x86_64-mont5-macosx.o" "/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/build/ring-d8851c9be174887d/out/chacha-x86_64-macosx.o" "/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/build/ring-d8851c9be174887d/out/p256-x86_64-asm-macosx.o" "/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/build/ring-d8851c9be174887d/out/aesni-gcm-x86_64-macosx.o" "/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/build/ring-d8851c9be174887d/out/ghash-x86_64-macosx.o" "/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/build/ring-d8851c9be174887d/out/sha512-x86_64-macosx.o" "/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/build/ring-d8851c9be174887d/out/chacha20_poly1305_x86_64-macosx.o" "/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/build/ring-d8851c9be174887d/out/sha256-x86_64-macosx.o" "/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/build/ring-d8851c9be174887d/out/aes_nohw.o" "/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/build/ring-d8851c9be174887d/out/montgomery.o" "/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/build/ring-d8851c9be174887d/out/montgomery_inv.o" "/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/build/ring-d8851c9be174887d/out/limbs.o" "/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/build/ring-d8851c9be174887d/out/mem.o" "/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/build/ring-d8851c9be174887d/out/poly1305.o" "/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/build/ring-d8851c9be174887d/out/crypto.o" "/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/build/ring-d8851c9be174887d/out/curve25519.o" "/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/build/ring-d8851c9be174887d/out/ecp_nistz.o" "/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/build/ring-d8851c9be174887d/out/ecp_nistz256.o" "/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/build/ring-d8851c9be174887d/out/gfp_p256.o" "/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/build/ring-d8851c9be174887d/out/gfp_p384.o" "/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/build/ring-d8851c9be174887d/out/cpu-intel.o" "/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/build/ring-d8851c9be174887d/out/poly1305_vec.o" [08:47:42.009]: warning: associated function `new` is never used [08:47:42.009]: --> /Users/tom/.cargo/git/checkouts/image-c1c0bf49fde10069/d4313cb/./src/image.rs:557:19 [08:47:42.009]: | [08:47:42.009]: 557 | pub(crate) fn new(current: u64, total: u64) -> Self { [08:47:42.009]: | ^^^ [08:47:42.009]: | [08:47:42.009]: = note: `#[warn(dead_code)]` on by default [08:47:42.009]: [08:47:42.014]: [ring 0.16.20] exit status: 0 [08:47:42.014]: [ring 0.16.20] running: "ar" "s" "/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/build/ring-d8851c9be174887d/out/libring-core.a" [08:47:42.072]: [ring 0.16.20] exit status: 0 [08:47:42.072]: [ring 0.16.20] cargo:rustc-link-lib=static=ring-core [08:47:42.072]: [ring 0.16.20] OPT_LEVEL = Some("3") [08:47:42.072]: [ring 0.16.20] TARGET = Some("x86_64-apple-ios") [08:47:42.072]: [ring 0.16.20] HOST = Some("x86_64-apple-darwin") [08:47:42.072]: [ring 0.16.20] cargo:rerun-if-env-changed=CC_x86_64-apple-ios [08:47:42.072]: [ring 0.16.20] CC_x86_64-apple-ios = None [08:47:42.072]: [ring 0.16.20] cargo:rerun-if-env-changed=CC_x86_64_apple_ios [08:47:42.072]: [ring 0.16.20] CC_x86_64_apple_ios = None [08:47:42.072]: [ring 0.16.20] cargo:rerun-if-env-changed=TARGET_CC [08:47:42.072]: [ring 0.16.20] TARGET_CC = None [08:47:42.072]: [ring 0.16.20] cargo:rerun-if-env-changed=CC [08:47:42.072]: [ring 0.16.20] CC = None [08:47:42.072]: [ring 0.16.20] cargo:rerun-if-env-changed=CFLAGS_x86_64-apple-ios [08:47:42.072]: [ring 0.16.20] CFLAGS_x86_64-apple-ios = None [08:47:42.072]: [ring 0.16.20] cargo:rerun-if-env-changed=CFLAGS_x86_64_apple_ios [08:47:42.073]: [ring 0.16.20] CFLAGS_x86_64_apple_ios = None [08:47:42.073]: [ring 0.16.20] cargo:rerun-if-env-changed=TARGET_CFLAGS [08:47:42.073]: [ring 0.16.20] TARGET_CFLAGS = None [08:47:42.073]: [ring 0.16.20] cargo:rerun-if-env-changed=CFLAGS [08:47:42.073]: [ring 0.16.20] CFLAGS = None [08:47:42.073]: [ring 0.16.20] cargo:rerun-if-env-changed=CRATE_CC_NO_DEFAULTS [08:47:42.073]: [ring 0.16.20] CRATE_CC_NO_DEFAULTS = None [08:47:42.073]: [ring 0.16.20] DEBUG = Some("true") [08:47:42.073]: [ring 0.16.20] Detecting iOS SDK path for iphonesimulator [08:47:42.073]: [ring 0.16.20] running: "xcrun" "--show-sdk-path" "--sdk" "iphonesimulator" [08:47:42.090]: [ring 0.16.20] exit status: 0 [08:47:42.091]: [ring 0.16.20] running "clang" "-O3" "-fPIC" "-gdwarf-2" "-fno-omit-frame-pointer" "--target=x86_64-apple-ios" "-m64" "-mios-simulator-version-min=7.0" "-isysroot" "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator16.2.sdk" "-fembed-bitcode" "-I" "include" "-Wall" "-Wextra" "-std=c1x" "-Wbad-function-cast" "-Wnested-externs" "-Wstrict-prototypes" "-pedantic" "-pedantic-errors" "-Wall" "-Wextra" "-Wcast-align" "-Wcast-qual" "-Wconversion" "-Wenum-compare" "-Wfloat-equal" "-Wformat=2" "-Winline" "-Winvalid-pch" "-Wmissing-field-initializers" "-Wmissing-include-dirs" "-Wredundant-decls" "-Wshadow" "-Wsign-compare" "-Wsign-conversion" "-Wundef" "-Wuninitialized" "-Wwrite-strings" "-fno-strict-aliasing" "-fvisibility=hidden" "-fstack-protector" "-g3" "-DNDEBUG" "-c" "-o/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/build/ring-d8851c9be174887d/out/constant_time_test.o" "crypto/constant_time_test.c" [08:47:42.319]: [dart-sys 4.0.2] cargo:rerun-if-env-changed=AR_x86_64-apple-ios [08:47:42.319]: [dart-sys 4.0.2] AR_x86_64-apple-ios = None [08:47:42.319]: [dart-sys 4.0.2] cargo:rerun-if-env-changed=AR_x86_64_apple_ios [08:47:42.319]: [dart-sys 4.0.2] AR_x86_64_apple_ios = None [08:47:42.319]: [dart-sys 4.0.2] cargo:rerun-if-env-changed=TARGET_AR [08:47:42.319]: [dart-sys 4.0.2] TARGET_AR = None [08:47:42.319]: [dart-sys 4.0.2] cargo:rerun-if-env-changed=AR [08:47:42.319]: [dart-sys 4.0.2] AR = None [08:47:42.319]: [dart-sys 4.0.2] RUSTC_LINKER = None [08:47:42.319]: [dart-sys 4.0.2] cargo:rerun-if-env-changed=CROSS_COMPILE [08:47:42.319]: [dart-sys 4.0.2] CROSS_COMPILE = None [08:47:42.319]: [dart-sys 4.0.2] cargo:rerun-if-env-changed=ARFLAGS_x86_64-apple-ios [08:47:42.319]: [dart-sys 4.0.2] ARFLAGS_x86_64-apple-ios = None [08:47:42.320]: [dart-sys 4.0.2] cargo:rerun-if-env-changed=ARFLAGS_x86_64_apple_ios [08:47:42.320]: [dart-sys 4.0.2] ARFLAGS_x86_64_apple_ios = None [08:47:42.320]: [dart-sys 4.0.2] cargo:rerun-if-env-changed=TARGET_ARFLAGS [08:47:42.320]: [dart-sys 4.0.2] TARGET_ARFLAGS = None [08:47:42.320]: [dart-sys 4.0.2] cargo:rerun-if-env-changed=ARFLAGS [08:47:42.320]: [dart-sys 4.0.2] ARFLAGS = None [08:47:42.320]: [dart-sys 4.0.2] running: "ar" "cq" "/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/build/dart-sys-412bbd4acbdf9c93/out/libdart_api_dl.a" "/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/build/dart-sys-412bbd4acbdf9c93/out/a21b8578e9e83444-dart_api_dl.o" [08:47:42.361]: [dart-sys 4.0.2] exit status: 0 [08:47:42.361]: [dart-sys 4.0.2] running: "ar" "s" "/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/build/dart-sys-412bbd4acbdf9c93/out/libdart_api_dl.a" [08:47:42.403]: [dart-sys 4.0.2] exit status: 0 [08:47:42.404]: [dart-sys 4.0.2] cargo:rustc-link-lib=static=dart_api_dl [08:47:42.404]: [dart-sys 4.0.2] cargo:rustc-link-search=native=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/build/dart-sys-412bbd4acbdf9c93/out [08:47:42.406]: Running `CARGO=/Users/tom/.rustup/toolchains/1.64.0-x86_64-apple-darwin/bin/cargo CARGO_CRATE_NAME=dart_sys CARGO_MANIFEST_DIR=/Users/tom/.cargo/registry/src/github.com-1ecc6299db9ec823/dart-sys-4.0.2 CARGO_PKG_AUTHORS='Patrik Buhring :Mark Gutenberger ' CARGO_PKG_DESCRIPTION='Statically generated, Opt-in style bindings to the Dart SDK' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='GPL-3.0-or-later AND MIT AND Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=dart-sys CARGO_PKG_REPOSITORY='https://github.com/dart-sys/dart-sys' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=4.0.2 CARGO_PKG_VERSION_MAJOR=4 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=2 CARGO_PKG_VERSION_PRE='' DYLD_FALLBACK_LIBRARY_PATH='/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/release/deps:/Users/tom/.rustup/toolchains/1.64.0-x86_64-apple-darwin/lib:/Users/tom/.rustup/toolchains/1.64.0-x86_64-apple-darwin/lib:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/' OUT_DIR=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/build/dart-sys-412bbd4acbdf9c93/out rustc --crate-name dart_sys --edition=2021 /Users/tom/.cargo/registry/src/github.com-1ecc6299db9ec823/dart-sys-4.0.2/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no -C split-debuginfo=unpacked -C debuginfo=2 -C metadata=e97ac9ca79176062 -C extra-filename=-e97ac9ca79176062 --out-dir /Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps --target x86_64-apple-ios -L dependency=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps -L dependency=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/release/deps --cap-lints warn -L native=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/build/dart-sys-412bbd4acbdf9c93/out -l static=dart_api_dl` [08:47:42.449]: [opencv 0.84.5] === Generated: imgcodecs in 5.921342532s [08:47:43.524]: Running `CARGO=/Users/tom/.rustup/toolchains/1.64.0-x86_64-apple-darwin/bin/cargo CARGO_CRATE_NAME=flutter_rust_bridge CARGO_MANIFEST_DIR=/Users/tom/.cargo/registry/src/github.com-1ecc6299db9ec823/flutter_rust_bridge-1.76.0 CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='High-level memory-safe binding generator for Flutter/Dart <-> Rust' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=flutter_rust_bridge CARGO_PKG_REPOSITORY='https://github.com/fzyzcjy/flutter_rust_bridge' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=1.76.0 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=76 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' DYLD_FALLBACK_LIBRARY_PATH='/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/release/deps:/Users/tom/.rustup/toolchains/1.64.0-x86_64-apple-darwin/lib:/Users/tom/.rustup/toolchains/1.64.0-x86_64-apple-darwin/lib:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/' OUT_DIR=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/build/flutter_rust_bridge-23a84816c1617e11/out rustc --crate-name flutter_rust_bridge --edition=2018 /Users/tom/.cargo/registry/src/github.com-1ecc6299db9ec823/flutter_rust_bridge-1.76.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no -C split-debuginfo=unpacked -C debuginfo=2 --cfg 'feature="chrono"' --cfg 'feature="console_error_panic_hook"' --cfg 'feature="default"' --cfg 'feature="wasm-start"' -C metadata=54d0a3c18499240f -C extra-filename=-54d0a3c18499240f --out-dir /Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps --target x86_64-apple-ios -L dependency=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps -L dependency=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/release/deps --extern allo_isolate=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/liballo_isolate-3a0c67f6bf3f9482.rmeta --extern anyhow=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libanyhow-a49e2b0e0ce09114.rmeta --extern bytemuck=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libbytemuck-16911aaa7811745d.rmeta --extern chrono=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libchrono-4a69ae17eca14e25.rmeta --extern dart_sys=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libdart_sys-e97ac9ca79176062.rmeta --extern flutter_rust_bridge_macros=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/release/deps/libflutter_rust_bridge_macros-53652ad341c2616a.dylib --extern lazy_static=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/liblazy_static-1cdd6aa1f473a434.rmeta --extern libc=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/liblibc-94bda512985520a5.rmeta --extern log=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/liblog-50ddee76197df382.rmeta --extern parking_lot=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libparking_lot-01aa419f3a44ba7c.rmeta --extern threadpool=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libthreadpool-285547ba911b4b91.rmeta --cap-lints warn -L native=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/build/dart-sys-412bbd4acbdf9c93/out` [08:47:44.498]: warning: `oslog` (lib) generated 2 warnings [08:47:44.838]: Compiling sentry-core v0.23.0 (https://github.com/fzyzcjy/sentry-rust#bf71bf43) [08:47:44.838]: Running `CARGO=/Users/tom/.rustup/toolchains/1.64.0-x86_64-apple-darwin/bin/cargo CARGO_CRATE_NAME=sentry_core CARGO_MANIFEST_DIR=/Users/tom/.cargo/git/checkouts/sentry-rust-92aa47acd509410f/bf71bf4/sentry-core CARGO_PKG_AUTHORS='Sentry ' CARGO_PKG_DESCRIPTION='Core sentry library used for instrumentation and integration development. [08:47:44.838]: ' CARGO_PKG_HOMEPAGE='https://sentry.io/welcome/' CARGO_PKG_LICENSE=Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=sentry-core CARGO_PKG_REPOSITORY='https://github.com/getsentry/sentry-rust' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.23.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=23 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' DYLD_FALLBACK_LIBRARY_PATH='/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/release/deps:/Users/tom/.rustup/toolchains/1.64.0-x86_64-apple-darwin/lib:/Users/tom/.rustup/toolchains/1.64.0-x86_64-apple-darwin/lib:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/' rustc --crate-name sentry_core --edition=2018 /Users/tom/.cargo/git/checkouts/sentry-rust-92aa47acd509410f/bf71bf4/sentry-core/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no -C split-debuginfo=unpacked -C debuginfo=2 --cfg 'feature="client"' --cfg 'feature="default"' --cfg 'feature="rand"' --cfg 'feature="test"' -C metadata=d70983c55a4b9990 -C extra-filename=-d70983c55a4b9990 --out-dir /Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps --target x86_64-apple-ios -L dependency=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps -L dependency=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/release/deps --extern chrono=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libchrono-4a69ae17eca14e25.rmeta --extern lazy_static=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/liblazy_static-1cdd6aa1f473a434.rmeta --extern rand=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/librand-56df31966bc3e697.rmeta --extern sentry_types=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libsentry_types-d2e8ac4708391bde.rmeta --extern serde=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libserde-3aa75456434d2f92.rmeta --extern serde_json=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libserde_json-fb40980cd54246c9.rmeta --cap-lints warn` [08:47:45.695]: [ring 0.16.20] running: "ar" "cq" "/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/build/ring-d8851c9be174887d/out/libring-test.a" "/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/build/ring-d8851c9be174887d/out/constant_time_test.o" [08:47:45.737]: [ring 0.16.20] exit status: 0 [08:47:45.738]: [ring 0.16.20] running: "ar" "s" "/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/build/ring-d8851c9be174887d/out/libring-test.a" [08:47:45.779]: [ring 0.16.20] exit status: 0 [08:47:45.779]: [ring 0.16.20] cargo:rustc-link-lib=static=ring-test [08:47:45.779]: [ring 0.16.20] cargo:rustc-link-search=native=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/build/ring-d8851c9be174887d/out [08:47:45.788]: Compiling sentry-core v0.23.0 [08:47:45.788]: Running `CARGO=/Users/tom/.rustup/toolchains/1.64.0-x86_64-apple-darwin/bin/cargo CARGO_CRATE_NAME=sentry_core CARGO_MANIFEST_DIR=/Users/tom/.cargo/registry/src/github.com-1ecc6299db9ec823/sentry-core-0.23.0 CARGO_PKG_AUTHORS='Sentry ' CARGO_PKG_DESCRIPTION='Core sentry library used for instrumentation and integration development. [08:47:45.788]: ' CARGO_PKG_HOMEPAGE='https://sentry.io/welcome/' CARGO_PKG_LICENSE=Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=sentry-core CARGO_PKG_REPOSITORY='https://github.com/getsentry/sentry-rust' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.23.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=23 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' DYLD_FALLBACK_LIBRARY_PATH='/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/release/deps:/Users/tom/.rustup/toolchains/1.64.0-x86_64-apple-darwin/lib:/Users/tom/.rustup/toolchains/1.64.0-x86_64-apple-darwin/lib:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/' rustc --crate-name sentry_core --edition=2018 /Users/tom/.cargo/registry/src/github.com-1ecc6299db9ec823/sentry-core-0.23.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no -C split-debuginfo=unpacked -C debuginfo=2 --cfg 'feature="default"' -C metadata=fad4687b83d5a7c9 -C extra-filename=-fad4687b83d5a7c9 --out-dir /Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps --target x86_64-apple-ios -L dependency=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps -L dependency=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/release/deps --extern chrono=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libchrono-4a69ae17eca14e25.rmeta --extern lazy_static=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/liblazy_static-1cdd6aa1f473a434.rmeta --extern sentry_types=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libsentry_types-356ffc1d03abb2f6.rmeta --extern serde=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libserde-3aa75456434d2f92.rmeta --extern serde_json=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libserde_json-fb40980cd54246c9.rmeta --cap-lints warn` [08:47:47.107]: Running `CARGO=/Users/tom/.rustup/toolchains/1.64.0-x86_64-apple-darwin/bin/cargo CARGO_CRATE_NAME=ring CARGO_MANIFEST_DIR=/Users/tom/.cargo/registry/src/github.com-1ecc6299db9ec823/ring-0.16.20 CARGO_PKG_AUTHORS='Brian Smith ' CARGO_PKG_DESCRIPTION='Safe, fast, small crypto using Rust.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='' CARGO_PKG_LICENSE_FILE=LICENSE CARGO_PKG_NAME=ring CARGO_PKG_REPOSITORY='https://github.com/briansmith/ring' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.16.20 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=16 CARGO_PKG_VERSION_PATCH=20 CARGO_PKG_VERSION_PRE='' DYLD_FALLBACK_LIBRARY_PATH='/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/release/deps:/Users/tom/.rustup/toolchains/1.64.0-x86_64-apple-darwin/lib:/Users/tom/.rustup/toolchains/1.64.0-x86_64-apple-darwin/lib:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/' OUT_DIR=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/build/ring-d8851c9be174887d/out rustc --crate-name ring --edition=2018 /Users/tom/.cargo/registry/src/github.com-1ecc6299db9ec823/ring-0.16.20/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no -C split-debuginfo=unpacked -C debuginfo=2 --cfg 'feature="alloc"' --cfg 'feature="default"' --cfg 'feature="dev_urandom_fallback"' --cfg 'feature="once_cell"' -C metadata=aaa6ace72c392419 -C extra-filename=-aaa6ace72c392419 --out-dir /Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps --target x86_64-apple-ios -L dependency=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps -L dependency=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/release/deps --extern spin=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libspin-274546b3482a28a5.rmeta --extern untrusted=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libuntrusted-d16d506dd8f1f0d2.rmeta --cap-lints warn -L native=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/build/ring-d8851c9be174887d/out -l static=ring-core -l static=ring-test` [08:47:47.495]: warning: unused doc comment [08:47:47.495]: --> /Users/tom/.cargo/registry/src/github.com-1ecc6299db9ec823/ring-0.16.20/src/aead/chacha.rs:110:9 [08:47:47.495]: | [08:47:47.495]: 110 | / /// XXX: Although this takes an `Iv`, this actually uses it like a [08:47:47.495]: 111 | | /// `Counter`. [08:47:47.495]: | |______________________^ [08:47:47.496]: 112 | / extern "C" { [08:47:47.496]: 113 | | fn GFp_ChaCha20_ctr32( [08:47:47.496]: 114 | | out: *mut u8, [08:47:47.496]: 115 | | in_: *const u8, [08:47:47.496]: ... | [08:47:47.496]: 119 | | ); [08:47:47.496]: 120 | | } [08:47:47.496]: | |_________- rustdoc does not generate documentation for extern blocks [08:47:47.496]: | [08:47:47.496]: = note: `#[warn(unused_doc_comments)]` on by default [08:47:47.496]: = help: use `//` for a plain comment [08:47:47.496]: [08:47:50.020]: warning: field `cpu_features` is never read [08:47:50.020]: --> /Users/tom/.cargo/registry/src/github.com-1ecc6299db9ec823/ring-0.16.20/src/digest.rs:49:5 [08:47:50.020]: | [08:47:50.020]: 38 | pub(crate) struct BlockContext { [08:47:50.020]: | ------------ field in this struct [08:47:50.020]: ... [08:47:50.020]: 49 | cpu_features: cpu::Features, [08:47:50.020]: | ^^^^^^^^^^^^ [08:47:50.020]: | [08:47:50.020]: = note: `#[warn(dead_code)]` on by default [08:47:50.020]: = note: `BlockContext` has a derived impl for the trait `Clone`, but this is intentionally ignored during dead code analysis [08:47:50.020]: [08:47:50.886]: [opencv 0.84.5] === Generated: imgproc in 14.358248089s [08:47:51.283]: Compiling sentry-backtrace v0.23.0 (https://github.com/fzyzcjy/sentry-rust#bf71bf43) [08:47:51.284]: Running `CARGO=/Users/tom/.rustup/toolchains/1.64.0-x86_64-apple-darwin/bin/cargo CARGO_CRATE_NAME=sentry_backtrace CARGO_MANIFEST_DIR=/Users/tom/.cargo/git/checkouts/sentry-rust-92aa47acd509410f/bf71bf4/sentry-backtrace CARGO_PKG_AUTHORS='Sentry ' CARGO_PKG_DESCRIPTION='Sentry integration and utilities for dealing with stacktraces. [08:47:51.284]: ' CARGO_PKG_HOMEPAGE='https://sentry.io/welcome/' CARGO_PKG_LICENSE=Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=sentry-backtrace CARGO_PKG_REPOSITORY='https://github.com/getsentry/sentry-rust' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.23.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=23 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' DYLD_FALLBACK_LIBRARY_PATH='/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/release/deps:/Users/tom/.rustup/toolchains/1.64.0-x86_64-apple-darwin/lib:/Users/tom/.rustup/toolchains/1.64.0-x86_64-apple-darwin/lib:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/' rustc --crate-name sentry_backtrace --edition=2018 /Users/tom/.cargo/git/checkouts/sentry-rust-92aa47acd509410f/bf71bf4/sentry-backtrace/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no -C split-debuginfo=unpacked -C debuginfo=2 -C metadata=2c023b0d5124395c -C extra-filename=-2c023b0d5124395c --out-dir /Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps --target x86_64-apple-ios -L dependency=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps -L dependency=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/release/deps --extern backtrace=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libbacktrace-23b8c8c829c84711.rmeta --extern lazy_static=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/liblazy_static-1cdd6aa1f473a434.rmeta --extern regex=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libregex-6901b5ffe32d0e95.rmeta --extern sentry_core=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libsentry_core-d70983c55a4b9990.rmeta --cap-lints warn` [08:47:54.840]: Compiling sentry-debug-images v0.23.0 (https://github.com/fzyzcjy/sentry-rust#bf71bf43) [08:47:54.840]: Running `CARGO=/Users/tom/.rustup/toolchains/1.64.0-x86_64-apple-darwin/bin/cargo CARGO_CRATE_NAME=sentry_debug_images CARGO_MANIFEST_DIR=/Users/tom/.cargo/git/checkouts/sentry-rust-92aa47acd509410f/bf71bf4/sentry-debug-images CARGO_PKG_AUTHORS='Sentry ' CARGO_PKG_DESCRIPTION='Sentry integration that adds the list of loaded libraries to events. [08:47:54.840]: ' CARGO_PKG_HOMEPAGE='https://sentry.io/welcome/' CARGO_PKG_LICENSE=Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=sentry-debug-images CARGO_PKG_REPOSITORY='https://github.com/getsentry/sentry-rust' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.23.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=23 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' DYLD_FALLBACK_LIBRARY_PATH='/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/release/deps:/Users/tom/.rustup/toolchains/1.64.0-x86_64-apple-darwin/lib:/Users/tom/.rustup/toolchains/1.64.0-x86_64-apple-darwin/lib:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/' rustc --crate-name sentry_debug_images --edition=2018 /Users/tom/.cargo/git/checkouts/sentry-rust-92aa47acd509410f/bf71bf4/sentry-debug-images/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no -C split-debuginfo=unpacked -C debuginfo=2 -C metadata=24849429e391f053 -C extra-filename=-24849429e391f053 --out-dir /Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps --target x86_64-apple-ios -L dependency=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps -L dependency=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/release/deps --extern findshlibs=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libfindshlibs-9175da1e31050793.rmeta --extern lazy_static=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/liblazy_static-1cdd6aa1f473a434.rmeta --extern sentry_core=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libsentry_core-d70983c55a4b9990.rmeta --cap-lints warn` [08:47:57.569]: Compiling sentry-log v0.23.0 (https://github.com/fzyzcjy/sentry-rust#bf71bf43) [08:47:57.569]: Running `CARGO=/Users/tom/.rustup/toolchains/1.64.0-x86_64-apple-darwin/bin/cargo CARGO_CRATE_NAME=sentry_log CARGO_MANIFEST_DIR=/Users/tom/.cargo/git/checkouts/sentry-rust-92aa47acd509410f/bf71bf4/sentry-log CARGO_PKG_AUTHORS='Sentry ' CARGO_PKG_DESCRIPTION='Sentry integration for log and env_logger crates. [08:47:57.569]: ' CARGO_PKG_HOMEPAGE='https://sentry.io/welcome/' CARGO_PKG_LICENSE=Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=sentry-log CARGO_PKG_REPOSITORY='https://github.com/getsentry/sentry-rust' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.23.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=23 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' DYLD_FALLBACK_LIBRARY_PATH='/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/release/deps:/Users/tom/.rustup/toolchains/1.64.0-x86_64-apple-darwin/lib:/Users/tom/.rustup/toolchains/1.64.0-x86_64-apple-darwin/lib:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/' rustc --crate-name sentry_log --edition=2018 /Users/tom/.cargo/git/checkouts/sentry-rust-92aa47acd509410f/bf71bf4/sentry-log/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no -C split-debuginfo=unpacked -C debuginfo=2 -C metadata=a5c55948acf735f4 -C extra-filename=-a5c55948acf735f4 --out-dir /Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps --target x86_64-apple-ios -L dependency=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps -L dependency=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/release/deps --extern log=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/liblog-50ddee76197df382.rmeta --extern sentry_core=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libsentry_core-d70983c55a4b9990.rmeta --cap-lints warn` [08:47:57.837]: Running `CARGO=/Users/tom/.rustup/toolchains/1.64.0-x86_64-apple-darwin/bin/cargo CARGO_CRATE_NAME=sentry_contexts CARGO_MANIFEST_DIR=/Users/tom/.cargo/git/checkouts/sentry-rust-92aa47acd509410f/bf71bf4/sentry-contexts CARGO_PKG_AUTHORS='Sentry ' CARGO_PKG_DESCRIPTION='Sentry integration for os, device, and rust contexts. [08:47:57.837]: ' CARGO_PKG_HOMEPAGE='https://sentry.io/welcome/' CARGO_PKG_LICENSE=Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=sentry-contexts CARGO_PKG_REPOSITORY='https://github.com/getsentry/sentry-rust' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.23.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=23 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' DYLD_FALLBACK_LIBRARY_PATH='/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/release/deps:/Users/tom/.rustup/toolchains/1.64.0-x86_64-apple-darwin/lib:/Users/tom/.rustup/toolchains/1.64.0-x86_64-apple-darwin/lib:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/' OUT_DIR=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/build/sentry-contexts-0761cf13cbc13f26/out rustc --crate-name sentry_contexts --edition=2018 /Users/tom/.cargo/git/checkouts/sentry-rust-92aa47acd509410f/bf71bf4/sentry-contexts/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no -C split-debuginfo=unpacked -C debuginfo=2 -C metadata=685b428402f3ed75 -C extra-filename=-685b428402f3ed75 --out-dir /Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps --target x86_64-apple-ios -L dependency=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps -L dependency=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/release/deps --extern hostname=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libhostname-386d5cdcd64b039f.rmeta --extern lazy_static=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/liblazy_static-1cdd6aa1f473a434.rmeta --extern libc=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/liblibc-94bda512985520a5.rmeta --extern regex=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libregex-6901b5ffe32d0e95.rmeta --extern sentry_core=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libsentry_core-d70983c55a4b9990.rmeta --extern uname=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libuname-5b9bd359b5a874b4.rmeta --cap-lints warn` [08:47:58.571]: Compiling sentry-backtrace v0.23.0 [08:47:58.571]: Running `CARGO=/Users/tom/.rustup/toolchains/1.64.0-x86_64-apple-darwin/bin/cargo CARGO_CRATE_NAME=sentry_backtrace CARGO_MANIFEST_DIR=/Users/tom/.cargo/registry/src/github.com-1ecc6299db9ec823/sentry-backtrace-0.23.0 CARGO_PKG_AUTHORS='Sentry ' CARGO_PKG_DESCRIPTION='Sentry integration and utilities for dealing with stacktraces. [08:47:58.571]: ' CARGO_PKG_HOMEPAGE='https://sentry.io/welcome/' CARGO_PKG_LICENSE=Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=sentry-backtrace CARGO_PKG_REPOSITORY='https://github.com/getsentry/sentry-rust' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.23.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=23 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' DYLD_FALLBACK_LIBRARY_PATH='/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/release/deps:/Users/tom/.rustup/toolchains/1.64.0-x86_64-apple-darwin/lib:/Users/tom/.rustup/toolchains/1.64.0-x86_64-apple-darwin/lib:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/' rustc --crate-name sentry_backtrace --edition=2018 /Users/tom/.cargo/registry/src/github.com-1ecc6299db9ec823/sentry-backtrace-0.23.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no -C split-debuginfo=unpacked -C debuginfo=2 -C metadata=1209b5b83481ff24 -C extra-filename=-1209b5b83481ff24 --out-dir /Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps --target x86_64-apple-ios -L dependency=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps -L dependency=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/release/deps --extern backtrace=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libbacktrace-23b8c8c829c84711.rmeta --extern lazy_static=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/liblazy_static-1cdd6aa1f473a434.rmeta --extern regex=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libregex-6901b5ffe32d0e95.rmeta --extern sentry_core=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libsentry_core-fad4687b83d5a7c9.rmeta --cap-lints warn` [08:47:59.462]: Compiling webpki v0.21.4 [08:47:59.462]: Running `CARGO=/Users/tom/.rustup/toolchains/1.64.0-x86_64-apple-darwin/bin/cargo CARGO_CRATE_NAME=webpki CARGO_MANIFEST_DIR=/Users/tom/.cargo/registry/src/github.com-1ecc6299db9ec823/webpki-0.21.4 CARGO_PKG_AUTHORS='Brian Smith ' CARGO_PKG_DESCRIPTION='Web PKI X.509 Certificate Verification.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='' CARGO_PKG_LICENSE_FILE=LICENSE CARGO_PKG_NAME=webpki CARGO_PKG_REPOSITORY='https://github.com/briansmith/webpki' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.21.4 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=21 CARGO_PKG_VERSION_PATCH=4 CARGO_PKG_VERSION_PRE='' DYLD_FALLBACK_LIBRARY_PATH='/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/release/deps:/Users/tom/.rustup/toolchains/1.64.0-x86_64-apple-darwin/lib:/Users/tom/.rustup/toolchains/1.64.0-x86_64-apple-darwin/lib:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/' rustc --crate-name webpki --edition=2018 /Users/tom/.cargo/registry/src/github.com-1ecc6299db9ec823/webpki-0.21.4/src/webpki.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no -C split-debuginfo=unpacked -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="std"' --cfg 'feature="trust_anchor_util"' -C metadata=3170e254d5ac3149 -C extra-filename=-3170e254d5ac3149 --out-dir /Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps --target x86_64-apple-ios -L dependency=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps -L dependency=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/release/deps --extern ring=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libring-aaa6ace72c392419.rmeta --extern untrusted=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libuntrusted-d16d506dd8f1f0d2.rmeta --cap-lints warn -L native=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/build/ring-d8851c9be174887d/out` [08:48:01.057]: Compiling sct v0.6.1 [08:48:01.057]: Running `CARGO=/Users/tom/.rustup/toolchains/1.64.0-x86_64-apple-darwin/bin/cargo CARGO_CRATE_NAME=sct CARGO_MANIFEST_DIR=/Users/tom/.cargo/registry/src/github.com-1ecc6299db9ec823/sct-0.6.1 CARGO_PKG_AUTHORS='Joseph Birr-Pixton ' CARGO_PKG_DESCRIPTION='Certificate transparency SCT verification library' CARGO_PKG_HOMEPAGE='https://github.com/ctz/sct.rs' CARGO_PKG_LICENSE=Apache-2.0/ISC/MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=sct CARGO_PKG_REPOSITORY='https://github.com/ctz/sct.rs' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.6.1 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=6 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' DYLD_FALLBACK_LIBRARY_PATH='/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/release/deps:/Users/tom/.rustup/toolchains/1.64.0-x86_64-apple-darwin/lib:/Users/tom/.rustup/toolchains/1.64.0-x86_64-apple-darwin/lib:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/' rustc --crate-name sct --edition=2018 /Users/tom/.cargo/registry/src/github.com-1ecc6299db9ec823/sct-0.6.1/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no -C split-debuginfo=unpacked -C debuginfo=2 -C metadata=39a327e1fa2f2ed9 -C extra-filename=-39a327e1fa2f2ed9 --out-dir /Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps --target x86_64-apple-ios -L dependency=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps -L dependency=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/release/deps --extern ring=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libring-aaa6ace72c392419.rmeta --extern untrusted=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libuntrusted-d16d506dd8f1f0d2.rmeta --cap-lints warn -L native=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/build/ring-d8851c9be174887d/out` [08:48:02.155]: Compiling sentry-panic v0.23.0 (https://github.com/fzyzcjy/sentry-rust#bf71bf43) [08:48:02.155]: Running `CARGO=/Users/tom/.rustup/toolchains/1.64.0-x86_64-apple-darwin/bin/cargo CARGO_CRATE_NAME=sentry_panic CARGO_MANIFEST_DIR=/Users/tom/.cargo/git/checkouts/sentry-rust-92aa47acd509410f/bf71bf4/sentry-panic CARGO_PKG_AUTHORS='Sentry ' CARGO_PKG_DESCRIPTION='Sentry integration for capturing panics. [08:48:02.155]: ' CARGO_PKG_HOMEPAGE='https://sentry.io/welcome/' CARGO_PKG_LICENSE=Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=sentry-panic CARGO_PKG_REPOSITORY='https://github.com/getsentry/sentry-rust' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.23.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=23 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' DYLD_FALLBACK_LIBRARY_PATH='/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/release/deps:/Users/tom/.rustup/toolchains/1.64.0-x86_64-apple-darwin/lib:/Users/tom/.rustup/toolchains/1.64.0-x86_64-apple-darwin/lib:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/' rustc --crate-name sentry_panic --edition=2018 /Users/tom/.cargo/git/checkouts/sentry-rust-92aa47acd509410f/bf71bf4/sentry-panic/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no -C split-debuginfo=unpacked -C debuginfo=2 -C metadata=e2a2ea76a5ab5a5d -C extra-filename=-e2a2ea76a5ab5a5d --out-dir /Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps --target x86_64-apple-ios -L dependency=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps -L dependency=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/release/deps --extern sentry_backtrace=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libsentry_backtrace-2c023b0d5124395c.rmeta --extern sentry_core=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libsentry_core-d70983c55a4b9990.rmeta --cap-lints warn` [08:48:03.375]: Compiling sentry-anyhow v0.23.0 (https://github.com/fzyzcjy/sentry-rust#bf71bf43) [08:48:03.375]: Running `CARGO=/Users/tom/.rustup/toolchains/1.64.0-x86_64-apple-darwin/bin/cargo CARGO_CRATE_NAME=sentry_anyhow CARGO_MANIFEST_DIR=/Users/tom/.cargo/git/checkouts/sentry-rust-92aa47acd509410f/bf71bf4/sentry-anyhow CARGO_PKG_AUTHORS='Sentry ' CARGO_PKG_DESCRIPTION='Sentry integration for anyhow. [08:48:03.375]: ' CARGO_PKG_HOMEPAGE='https://sentry.io/welcome/' CARGO_PKG_LICENSE=Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=sentry-anyhow CARGO_PKG_REPOSITORY='https://github.com/getsentry/sentry-rust' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.23.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=23 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' DYLD_FALLBACK_LIBRARY_PATH='/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/release/deps:/Users/tom/.rustup/toolchains/1.64.0-x86_64-apple-darwin/lib:/Users/tom/.rustup/toolchains/1.64.0-x86_64-apple-darwin/lib:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/' rustc --crate-name sentry_anyhow --edition=2018 /Users/tom/.cargo/git/checkouts/sentry-rust-92aa47acd509410f/bf71bf4/sentry-anyhow/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no -C split-debuginfo=unpacked -C debuginfo=2 --cfg 'feature="backtrace"' --cfg 'feature="default"' -C metadata=7e6e6b19c42a17aa -C extra-filename=-7e6e6b19c42a17aa --out-dir /Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps --target x86_64-apple-ios -L dependency=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps -L dependency=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/release/deps --extern anyhow=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libanyhow-a49e2b0e0ce09114.rmeta --extern sentry_backtrace=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libsentry_backtrace-2c023b0d5124395c.rmeta --extern sentry_core=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libsentry_core-d70983c55a4b9990.rmeta --cap-lints warn` [08:48:03.980]: Compiling sentry-anyhow v0.23.0 [08:48:03.981]: Running `CARGO=/Users/tom/.rustup/toolchains/1.64.0-x86_64-apple-darwin/bin/cargo CARGO_CRATE_NAME=sentry_anyhow CARGO_MANIFEST_DIR=/Users/tom/.cargo/registry/src/github.com-1ecc6299db9ec823/sentry-anyhow-0.23.0 CARGO_PKG_AUTHORS='Sentry ' CARGO_PKG_DESCRIPTION='Sentry integration for anyhow. [08:48:03.981]: ' CARGO_PKG_HOMEPAGE='https://sentry.io/welcome/' CARGO_PKG_LICENSE=Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=sentry-anyhow CARGO_PKG_REPOSITORY='https://github.com/getsentry/sentry-rust' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.23.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=23 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' DYLD_FALLBACK_LIBRARY_PATH='/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/release/deps:/Users/tom/.rustup/toolchains/1.64.0-x86_64-apple-darwin/lib:/Users/tom/.rustup/toolchains/1.64.0-x86_64-apple-darwin/lib:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/' rustc --crate-name sentry_anyhow --edition=2018 /Users/tom/.cargo/registry/src/github.com-1ecc6299db9ec823/sentry-anyhow-0.23.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no -C split-debuginfo=unpacked -C debuginfo=2 --cfg 'feature="backtrace"' -C metadata=948dd348f292c560 -C extra-filename=-948dd348f292c560 --out-dir /Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps --target x86_64-apple-ios -L dependency=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps -L dependency=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/release/deps --extern anyhow=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libanyhow-a49e2b0e0ce09114.rmeta --extern sentry_backtrace=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libsentry_backtrace-1209b5b83481ff24.rmeta --extern sentry_core=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libsentry_core-fad4687b83d5a7c9.rmeta --cap-lints warn` [08:48:05.402]: warning: `ring` (lib) generated 2 warnings [08:48:05.403]: Compiling webpki-roots v0.21.1 [08:48:05.404]: Running `CARGO=/Users/tom/.rustup/toolchains/1.64.0-x86_64-apple-darwin/bin/cargo CARGO_CRATE_NAME=webpki_roots CARGO_MANIFEST_DIR=/Users/tom/.cargo/registry/src/github.com-1ecc6299db9ec823/webpki-roots-0.21.1 CARGO_PKG_AUTHORS='Joseph Birr-Pixton ' CARGO_PKG_DESCRIPTION='Mozilla'\''s CA root certificates for use with webpki' CARGO_PKG_HOMEPAGE='https://github.com/ctz/webpki-roots' CARGO_PKG_LICENSE=MPL-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=webpki-roots CARGO_PKG_REPOSITORY='https://github.com/ctz/webpki-roots' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.21.1 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=21 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' DYLD_FALLBACK_LIBRARY_PATH='/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/release/deps:/Users/tom/.rustup/toolchains/1.64.0-x86_64-apple-darwin/lib:/Users/tom/.rustup/toolchains/1.64.0-x86_64-apple-darwin/lib:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/' rustc --crate-name webpki_roots --edition=2018 /Users/tom/.cargo/registry/src/github.com-1ecc6299db9ec823/webpki-roots-0.21.1/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no -C split-debuginfo=unpacked -C debuginfo=2 -C metadata=7f13ce342301c01a -C extra-filename=-7f13ce342301c01a --out-dir /Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps --target x86_64-apple-ios -L dependency=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps -L dependency=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/release/deps --extern webpki=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libwebpki-3170e254d5ac3149.rmeta --cap-lints warn -L native=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/build/ring-d8851c9be174887d/out` [08:48:05.691]: Compiling rustls v0.19.1 [08:48:05.691]: Running `CARGO=/Users/tom/.rustup/toolchains/1.64.0-x86_64-apple-darwin/bin/cargo CARGO_CRATE_NAME=rustls CARGO_MANIFEST_DIR=/Users/tom/.cargo/registry/src/github.com-1ecc6299db9ec823/rustls-0.19.1 CARGO_PKG_AUTHORS='Joseph Birr-Pixton ' CARGO_PKG_DESCRIPTION='Rustls is a modern TLS library written in Rust.' CARGO_PKG_HOMEPAGE='https://github.com/ctz/rustls' CARGO_PKG_LICENSE=Apache-2.0/ISC/MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=rustls CARGO_PKG_REPOSITORY='https://github.com/ctz/rustls' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.19.1 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=19 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' DYLD_FALLBACK_LIBRARY_PATH='/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/release/deps:/Users/tom/.rustup/toolchains/1.64.0-x86_64-apple-darwin/lib:/Users/tom/.rustup/toolchains/1.64.0-x86_64-apple-darwin/lib:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/' rustc --crate-name rustls --edition=2018 /Users/tom/.cargo/registry/src/github.com-1ecc6299db9ec823/rustls-0.19.1/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no -C split-debuginfo=unpacked -C debuginfo=2 --cfg 'feature="dangerous_configuration"' --cfg 'feature="default"' --cfg 'feature="log"' --cfg 'feature="logging"' -C metadata=7b7f430e81650483 -C extra-filename=-7b7f430e81650483 --out-dir /Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps --target x86_64-apple-ios -L dependency=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps -L dependency=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/release/deps --extern base64=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libbase64-ceab7032261394f3.rmeta --extern log=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/liblog-50ddee76197df382.rmeta --extern ring=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libring-aaa6ace72c392419.rmeta --extern sct=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libsct-39a327e1fa2f2ed9.rmeta --extern webpki=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libwebpki-3170e254d5ac3149.rmeta --cap-lints warn -L native=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/build/ring-d8851c9be174887d/out` [08:48:07.692]: warning: trait objects without an explicit `dyn` are deprecated [08:48:07.692]: --> /Users/tom/.cargo/registry/src/github.com-1ecc6299db9ec823/rustls-0.19.1/src/record_layer.rs:32:32 [08:48:07.692]: | [08:48:07.692]: 32 | message_encrypter: MessageEncrypter::invalid(), [08:48:07.692]: | ^^^^^^^^^^^^^^^^ [08:48:07.692]: | [08:48:07.692]: = note: `#[warn(bare_trait_objects)]` on by default [08:48:07.693]: = warning: this is accepted in the current edition (Rust 2018) but is a hard error in Rust 2021! [08:48:07.693]: = note: for more information, see [08:48:07.693]: help: use `dyn` [08:48:07.693]: | [08:48:07.693]: 32 | message_encrypter: ::invalid(), [08:48:07.693]: | ++++ + [08:48:07.693]: [08:48:07.693]: warning: trait objects without an explicit `dyn` are deprecated [08:48:07.693]: --> /Users/tom/.cargo/registry/src/github.com-1ecc6299db9ec823/rustls-0.19.1/src/record_layer.rs:33:32 [08:48:07.693]: | [08:48:07.693]: 33 | message_decrypter: MessageDecrypter::invalid(), [08:48:07.693]: | ^^^^^^^^^^^^^^^^ [08:48:07.693]: | [08:48:07.693]: = warning: this is accepted in the current edition (Rust 2018) but is a hard error in Rust 2021! [08:48:07.693]: = note: for more information, see [08:48:07.693]: help: use `dyn` [08:48:07.693]: | [08:48:07.693]: 33 | message_decrypter: ::invalid(), [08:48:07.693]: | ++++ + [08:48:07.693]: [08:48:09.019]: [opencv 0.84.5] === Generated: core in 32.492100318s [08:48:09.020]: [opencv 0.84.5] === Total binding generation time: 32.492364105s [08:48:09.116]: [opencv 0.84.5] === Total binding collection time: 96.102301ms [08:48:09.116]: [opencv 0.84.5] OPT_LEVEL = Some("3") [08:48:09.116]: [opencv 0.84.5] TARGET = Some("x86_64-apple-ios") [08:48:09.116]: [opencv 0.84.5] HOST = Some("x86_64-apple-darwin") [08:48:09.116]: [opencv 0.84.5] cargo:rerun-if-env-changed=CXX_x86_64-apple-ios [08:48:09.117]: [opencv 0.84.5] CXX_x86_64-apple-ios = None [08:48:09.117]: [opencv 0.84.5] cargo:rerun-if-env-changed=CXX_x86_64_apple_ios [08:48:09.117]: [opencv 0.84.5] CXX_x86_64_apple_ios = None [08:48:09.117]: [opencv 0.84.5] cargo:rerun-if-env-changed=TARGET_CXX [08:48:09.117]: [opencv 0.84.5] TARGET_CXX = None [08:48:09.117]: [opencv 0.84.5] cargo:rerun-if-env-changed=CXX [08:48:09.117]: [opencv 0.84.5] CXX = None [08:48:09.117]: [opencv 0.84.5] cargo:rerun-if-env-changed=CXXFLAGS_x86_64-apple-ios [08:48:09.117]: [opencv 0.84.5] CXXFLAGS_x86_64-apple-ios = None [08:48:09.117]: [opencv 0.84.5] cargo:rerun-if-env-changed=CXXFLAGS_x86_64_apple_ios [08:48:09.117]: [opencv 0.84.5] CXXFLAGS_x86_64_apple_ios = None [08:48:09.117]: [opencv 0.84.5] cargo:rerun-if-env-changed=TARGET_CXXFLAGS [08:48:09.117]: [opencv 0.84.5] TARGET_CXXFLAGS = None [08:48:09.117]: [opencv 0.84.5] cargo:rerun-if-env-changed=CXXFLAGS [08:48:09.117]: [opencv 0.84.5] CXXFLAGS = None [08:48:09.117]: [opencv 0.84.5] cargo:rerun-if-env-changed=CRATE_CC_NO_DEFAULTS [08:48:09.117]: [opencv 0.84.5] CRATE_CC_NO_DEFAULTS = None [08:48:09.117]: [opencv 0.84.5] DEBUG = Some("true") [08:48:09.117]: [opencv 0.84.5] Detecting iOS SDK path for iphonesimulator [08:48:09.117]: [opencv 0.84.5] running: "xcrun" "--show-sdk-path" "--sdk" "iphonesimulator" [08:48:09.137]: [opencv 0.84.5] exit status: 0 [08:48:09.137]: [opencv 0.84.5] cargo:rerun-if-env-changed=CXX_x86_64-apple-ios [08:48:09.137]: [opencv 0.84.5] CXX_x86_64-apple-ios = None [08:48:09.137]: [opencv 0.84.5] cargo:rerun-if-env-changed=CXX_x86_64_apple_ios [08:48:09.138]: [opencv 0.84.5] CXX_x86_64_apple_ios = None [08:48:09.138]: [opencv 0.84.5] cargo:rerun-if-env-changed=TARGET_CXX [08:48:09.138]: [opencv 0.84.5] TARGET_CXX = None [08:48:09.138]: [opencv 0.84.5] cargo:rerun-if-env-changed=CXX [08:48:09.138]: [opencv 0.84.5] CXX = None [08:48:09.138]: [opencv 0.84.5] cargo:rerun-if-env-changed=CXXFLAGS_x86_64-apple-ios [08:48:09.138]: [opencv 0.84.5] CXXFLAGS_x86_64-apple-ios = None [08:48:09.138]: [opencv 0.84.5] cargo:rerun-if-env-changed=CXXFLAGS_x86_64_apple_ios [08:48:09.138]: [opencv 0.84.5] CXXFLAGS_x86_64_apple_ios = None [08:48:09.138]: [opencv 0.84.5] cargo:rerun-if-env-changed=TARGET_CXXFLAGS [08:48:09.138]: [opencv 0.84.5] TARGET_CXXFLAGS = None [08:48:09.138]: [opencv 0.84.5] cargo:rerun-if-env-changed=CXXFLAGS [08:48:09.138]: [opencv 0.84.5] CXXFLAGS = None [08:48:09.138]: [opencv 0.84.5] cargo:rerun-if-env-changed=CRATE_CC_NO_DEFAULTS [08:48:09.138]: [opencv 0.84.5] CRATE_CC_NO_DEFAULTS = None [08:48:09.138]: [opencv 0.84.5] Detecting iOS SDK path for iphonesimulator [08:48:09.138]: [opencv 0.84.5] running: "xcrun" "--show-sdk-path" "--sdk" "iphonesimulator" [08:48:09.147]: [opencv 0.84.5] exit status: 0 [08:48:09.330]: [opencv 0.84.5] cargo:rerun-if-env-changed=CXX_x86_64-apple-ios [08:48:09.330]: [opencv 0.84.5] CXX_x86_64-apple-ios = None [08:48:09.330]: [opencv 0.84.5] cargo:rerun-if-env-changed=CXX_x86_64_apple_ios [08:48:09.330]: [opencv 0.84.5] CXX_x86_64_apple_ios = None [08:48:09.330]: [opencv 0.84.5] cargo:rerun-if-env-changed=TARGET_CXX [08:48:09.330]: [opencv 0.84.5] TARGET_CXX = None [08:48:09.330]: [opencv 0.84.5] cargo:rerun-if-env-changed=CXX [08:48:09.330]: [opencv 0.84.5] CXX = None [08:48:09.330]: [opencv 0.84.5] cargo:rerun-if-env-changed=CXXFLAGS_x86_64-apple-ios [08:48:09.330]: [opencv 0.84.5] CXXFLAGS_x86_64-apple-ios = None [08:48:09.330]: [opencv 0.84.5] cargo:rerun-if-env-changed=CXXFLAGS_x86_64_apple_ios [08:48:09.330]: [opencv 0.84.5] CXXFLAGS_x86_64_apple_ios = None [08:48:09.330]: [opencv 0.84.5] cargo:rerun-if-env-changed=TARGET_CXXFLAGS [08:48:09.330]: [opencv 0.84.5] TARGET_CXXFLAGS = None [08:48:09.330]: [opencv 0.84.5] cargo:rerun-if-env-changed=CXXFLAGS [08:48:09.331]: [opencv 0.84.5] CXXFLAGS = None [08:48:09.331]: [opencv 0.84.5] cargo:rerun-if-env-changed=CRATE_CC_NO_DEFAULTS [08:48:09.331]: [opencv 0.84.5] CRATE_CC_NO_DEFAULTS = None [08:48:09.331]: [opencv 0.84.5] Detecting iOS SDK path for iphonesimulator [08:48:09.331]: [opencv 0.84.5] running: "xcrun" "--show-sdk-path" "--sdk" "iphonesimulator" [08:48:09.344]: [opencv 0.84.5] exit status: 0 [08:48:09.527]: [opencv 0.84.5] cargo:rerun-if-env-changed=CXX_x86_64-apple-ios [08:48:09.527]: [opencv 0.84.5] CXX_x86_64-apple-ios = None [08:48:09.527]: [opencv 0.84.5] cargo:rerun-if-env-changed=CXX_x86_64_apple_ios [08:48:09.527]: [opencv 0.84.5] CXX_x86_64_apple_ios = None [08:48:09.527]: [opencv 0.84.5] cargo:rerun-if-env-changed=TARGET_CXX [08:48:09.527]: [opencv 0.84.5] TARGET_CXX = None [08:48:09.527]: [opencv 0.84.5] cargo:rerun-if-env-changed=CXX [08:48:09.527]: [opencv 0.84.5] CXX = None [08:48:09.527]: [opencv 0.84.5] cargo:rerun-if-env-changed=CXXFLAGS_x86_64-apple-ios [08:48:09.527]: [opencv 0.84.5] CXXFLAGS_x86_64-apple-ios = None [08:48:09.527]: [opencv 0.84.5] cargo:rerun-if-env-changed=CXXFLAGS_x86_64_apple_ios [08:48:09.527]: [opencv 0.84.5] CXXFLAGS_x86_64_apple_ios = None [08:48:09.527]: [opencv 0.84.5] cargo:rerun-if-env-changed=TARGET_CXXFLAGS [08:48:09.528]: [opencv 0.84.5] TARGET_CXXFLAGS = None [08:48:09.528]: [opencv 0.84.5] cargo:rerun-if-env-changed=CXXFLAGS [08:48:09.528]: [opencv 0.84.5] CXXFLAGS = None [08:48:09.528]: [opencv 0.84.5] cargo:rerun-if-env-changed=CRATE_CC_NO_DEFAULTS [08:48:09.528]: [opencv 0.84.5] CRATE_CC_NO_DEFAULTS = None [08:48:09.528]: [opencv 0.84.5] Detecting iOS SDK path for iphonesimulator [08:48:09.528]: [opencv 0.84.5] running: "xcrun" "--show-sdk-path" "--sdk" "iphonesimulator" [08:48:09.544]: [opencv 0.84.5] exit status: 0 [08:48:09.716]: [opencv 0.84.5] cargo:rerun-if-env-changed=CXX_x86_64-apple-ios [08:48:09.716]: [opencv 0.84.5] CXX_x86_64-apple-ios = None [08:48:09.716]: [opencv 0.84.5] cargo:rerun-if-env-changed=CXX_x86_64_apple_ios [08:48:09.716]: [opencv 0.84.5] CXX_x86_64_apple_ios = None [08:48:09.716]: [opencv 0.84.5] cargo:rerun-if-env-changed=TARGET_CXX [08:48:09.716]: [opencv 0.84.5] TARGET_CXX = None [08:48:09.716]: [opencv 0.84.5] cargo:rerun-if-env-changed=CXX [08:48:09.716]: [opencv 0.84.5] CXX = None [08:48:09.716]: [opencv 0.84.5] cargo:rerun-if-env-changed=CXXFLAGS_x86_64-apple-ios [08:48:09.716]: [opencv 0.84.5] CXXFLAGS_x86_64-apple-ios = None [08:48:09.716]: [opencv 0.84.5] cargo:rerun-if-env-changed=CXXFLAGS_x86_64_apple_ios [08:48:09.717]: [opencv 0.84.5] CXXFLAGS_x86_64_apple_ios = None [08:48:09.717]: [opencv 0.84.5] cargo:rerun-if-env-changed=TARGET_CXXFLAGS [08:48:09.717]: [opencv 0.84.5] TARGET_CXXFLAGS = None [08:48:09.717]: [opencv 0.84.5] cargo:rerun-if-env-changed=CXXFLAGS [08:48:09.717]: [opencv 0.84.5] CXXFLAGS = None [08:48:09.717]: [opencv 0.84.5] cargo:rerun-if-env-changed=CRATE_CC_NO_DEFAULTS [08:48:09.717]: [opencv 0.84.5] CRATE_CC_NO_DEFAULTS = None [08:48:09.717]: [opencv 0.84.5] Detecting iOS SDK path for iphonesimulator [08:48:09.717]: [opencv 0.84.5] running: "xcrun" "--show-sdk-path" "--sdk" "iphonesimulator" [08:48:09.736]: [opencv 0.84.5] exit status: 0 [08:48:09.916]: [opencv 0.84.5] cargo:rerun-if-env-changed=CXX_x86_64-apple-ios [08:48:09.916]: [opencv 0.84.5] CXX_x86_64-apple-ios = None [08:48:09.916]: [opencv 0.84.5] cargo:rerun-if-env-changed=CXX_x86_64_apple_ios [08:48:09.916]: [opencv 0.84.5] CXX_x86_64_apple_ios = None [08:48:09.916]: [opencv 0.84.5] cargo:rerun-if-env-changed=TARGET_CXX [08:48:09.916]: [opencv 0.84.5] TARGET_CXX = None [08:48:09.916]: [opencv 0.84.5] cargo:rerun-if-env-changed=CXX [08:48:09.916]: [opencv 0.84.5] CXX = None [08:48:09.916]: [opencv 0.84.5] cargo:rerun-if-env-changed=CXXFLAGS_x86_64-apple-ios [08:48:09.916]: [opencv 0.84.5] CXXFLAGS_x86_64-apple-ios = None [08:48:09.916]: [opencv 0.84.5] cargo:rerun-if-env-changed=CXXFLAGS_x86_64_apple_ios [08:48:09.916]: [opencv 0.84.5] CXXFLAGS_x86_64_apple_ios = None [08:48:09.916]: [opencv 0.84.5] cargo:rerun-if-env-changed=TARGET_CXXFLAGS [08:48:09.916]: [opencv 0.84.5] TARGET_CXXFLAGS = None [08:48:09.916]: [opencv 0.84.5] cargo:rerun-if-env-changed=CXXFLAGS [08:48:09.916]: [opencv 0.84.5] CXXFLAGS = None [08:48:09.916]: [opencv 0.84.5] cargo:rerun-if-env-changed=CRATE_CC_NO_DEFAULTS [08:48:09.916]: [opencv 0.84.5] CRATE_CC_NO_DEFAULTS = None [08:48:09.916]: [opencv 0.84.5] Detecting iOS SDK path for iphonesimulator [08:48:09.916]: [opencv 0.84.5] running: "xcrun" "--show-sdk-path" "--sdk" "iphonesimulator" [08:48:09.934]: [opencv 0.84.5] exit status: 0 [08:48:10.105]: [opencv 0.84.5] cargo:rerun-if-env-changed=CXX_x86_64-apple-ios [08:48:10.105]: [opencv 0.84.5] CXX_x86_64-apple-ios = None [08:48:10.105]: [opencv 0.84.5] cargo:rerun-if-env-changed=CXX_x86_64_apple_ios [08:48:10.105]: [opencv 0.84.5] CXX_x86_64_apple_ios = None [08:48:10.105]: [opencv 0.84.5] cargo:rerun-if-env-changed=TARGET_CXX [08:48:10.105]: [opencv 0.84.5] TARGET_CXX = None [08:48:10.105]: [opencv 0.84.5] cargo:rerun-if-env-changed=CXX [08:48:10.105]: [opencv 0.84.5] CXX = None [08:48:10.105]: [opencv 0.84.5] cargo:rerun-if-env-changed=CXXFLAGS_x86_64-apple-ios [08:48:10.105]: [opencv 0.84.5] CXXFLAGS_x86_64-apple-ios = None [08:48:10.105]: [opencv 0.84.5] cargo:rerun-if-env-changed=CXXFLAGS_x86_64_apple_ios [08:48:10.105]: [opencv 0.84.5] CXXFLAGS_x86_64_apple_ios = None [08:48:10.105]: [opencv 0.84.5] cargo:rerun-if-env-changed=TARGET_CXXFLAGS [08:48:10.105]: [opencv 0.84.5] TARGET_CXXFLAGS = None [08:48:10.105]: [opencv 0.84.5] cargo:rerun-if-env-changed=CXXFLAGS [08:48:10.105]: [opencv 0.84.5] CXXFLAGS = None [08:48:10.105]: [opencv 0.84.5] cargo:rerun-if-env-changed=CRATE_CC_NO_DEFAULTS [08:48:10.105]: [opencv 0.84.5] CRATE_CC_NO_DEFAULTS = None [08:48:10.105]: [opencv 0.84.5] Detecting iOS SDK path for iphonesimulator [08:48:10.105]: [opencv 0.84.5] running: "xcrun" "--show-sdk-path" "--sdk" "iphonesimulator" [08:48:10.119]: [opencv 0.84.5] exit status: 0 [08:48:10.297]: [opencv 0.84.5] cargo:rerun-if-env-changed=CXX_x86_64-apple-ios [08:48:10.297]: [opencv 0.84.5] CXX_x86_64-apple-ios = None [08:48:10.297]: [opencv 0.84.5] cargo:rerun-if-env-changed=CXX_x86_64_apple_ios [08:48:10.297]: [opencv 0.84.5] CXX_x86_64_apple_ios = None [08:48:10.297]: [opencv 0.84.5] cargo:rerun-if-env-changed=TARGET_CXX [08:48:10.297]: [opencv 0.84.5] TARGET_CXX = None [08:48:10.297]: [opencv 0.84.5] cargo:rerun-if-env-changed=CXX [08:48:10.297]: [opencv 0.84.5] CXX = None [08:48:10.297]: [opencv 0.84.5] cargo:rerun-if-env-changed=CXXFLAGS_x86_64-apple-ios [08:48:10.297]: [opencv 0.84.5] CXXFLAGS_x86_64-apple-ios = None [08:48:10.297]: [opencv 0.84.5] cargo:rerun-if-env-changed=CXXFLAGS_x86_64_apple_ios [08:48:10.297]: [opencv 0.84.5] CXXFLAGS_x86_64_apple_ios = None [08:48:10.297]: [opencv 0.84.5] cargo:rerun-if-env-changed=TARGET_CXXFLAGS [08:48:10.297]: [opencv 0.84.5] TARGET_CXXFLAGS = None [08:48:10.297]: [opencv 0.84.5] cargo:rerun-if-env-changed=CXXFLAGS [08:48:10.297]: [opencv 0.84.5] CXXFLAGS = None [08:48:10.297]: [opencv 0.84.5] cargo:rerun-if-env-changed=CRATE_CC_NO_DEFAULTS [08:48:10.297]: [opencv 0.84.5] CRATE_CC_NO_DEFAULTS = None [08:48:10.297]: [opencv 0.84.5] Detecting iOS SDK path for iphonesimulator [08:48:10.297]: [opencv 0.84.5] running: "xcrun" "--show-sdk-path" "--sdk" "iphonesimulator" [08:48:10.315]: [opencv 0.84.5] exit status: 0 [08:48:10.495]: [opencv 0.84.5] cargo:rerun-if-env-changed=CXX_x86_64-apple-ios [08:48:10.495]: [opencv 0.84.5] CXX_x86_64-apple-ios = None [08:48:10.495]: [opencv 0.84.5] cargo:rerun-if-env-changed=CXX_x86_64_apple_ios [08:48:10.495]: [opencv 0.84.5] CXX_x86_64_apple_ios = None [08:48:10.495]: [opencv 0.84.5] cargo:rerun-if-env-changed=TARGET_CXX [08:48:10.495]: [opencv 0.84.5] TARGET_CXX = None [08:48:10.495]: [opencv 0.84.5] cargo:rerun-if-env-changed=CXX [08:48:10.495]: [opencv 0.84.5] CXX = None [08:48:10.495]: [opencv 0.84.5] cargo:rerun-if-env-changed=CXXFLAGS_x86_64-apple-ios [08:48:10.495]: [opencv 0.84.5] CXXFLAGS_x86_64-apple-ios = None [08:48:10.495]: [opencv 0.84.5] cargo:rerun-if-env-changed=CXXFLAGS_x86_64_apple_ios [08:48:10.495]: [opencv 0.84.5] CXXFLAGS_x86_64_apple_ios = None [08:48:10.495]: [opencv 0.84.5] cargo:rerun-if-env-changed=TARGET_CXXFLAGS [08:48:10.495]: [opencv 0.84.5] TARGET_CXXFLAGS = None [08:48:10.495]: [opencv 0.84.5] cargo:rerun-if-env-changed=CXXFLAGS [08:48:10.495]: [opencv 0.84.5] CXXFLAGS = None [08:48:10.495]: [opencv 0.84.5] cargo:rerun-if-env-changed=CRATE_CC_NO_DEFAULTS [08:48:10.495]: [opencv 0.84.5] CRATE_CC_NO_DEFAULTS = None [08:48:10.495]: [opencv 0.84.5] Detecting iOS SDK path for iphonesimulator [08:48:10.495]: [opencv 0.84.5] running: "xcrun" "--show-sdk-path" "--sdk" "iphonesimulator" [08:48:10.513]: [opencv 0.84.5] exit status: 0 [08:48:10.695]: [opencv 0.84.5] cargo:rerun-if-env-changed=CXX_x86_64-apple-ios [08:48:10.695]: [opencv 0.84.5] CXX_x86_64-apple-ios = None [08:48:10.695]: [opencv 0.84.5] cargo:rerun-if-env-changed=CXX_x86_64_apple_ios [08:48:10.695]: [opencv 0.84.5] CXX_x86_64_apple_ios = None [08:48:10.695]: [opencv 0.84.5] cargo:rerun-if-env-changed=TARGET_CXX [08:48:10.695]: [opencv 0.84.5] TARGET_CXX = None [08:48:10.695]: [opencv 0.84.5] cargo:rerun-if-env-changed=CXX [08:48:10.695]: [opencv 0.84.5] CXX = None [08:48:10.695]: [opencv 0.84.5] cargo:rerun-if-env-changed=CXXFLAGS_x86_64-apple-ios [08:48:10.695]: [opencv 0.84.5] CXXFLAGS_x86_64-apple-ios = None [08:48:10.695]: [opencv 0.84.5] cargo:rerun-if-env-changed=CXXFLAGS_x86_64_apple_ios [08:48:10.695]: [opencv 0.84.5] CXXFLAGS_x86_64_apple_ios = None [08:48:10.695]: [opencv 0.84.5] cargo:rerun-if-env-changed=TARGET_CXXFLAGS [08:48:10.695]: [opencv 0.84.5] TARGET_CXXFLAGS = None [08:48:10.695]: [opencv 0.84.5] cargo:rerun-if-env-changed=CXXFLAGS [08:48:10.695]: [opencv 0.84.5] CXXFLAGS = None [08:48:10.695]: [opencv 0.84.5] cargo:rerun-if-env-changed=CRATE_CC_NO_DEFAULTS [08:48:10.695]: [opencv 0.84.5] CRATE_CC_NO_DEFAULTS = None [08:48:10.696]: [opencv 0.84.5] Detecting iOS SDK path for iphonesimulator [08:48:10.696]: [opencv 0.84.5] running: "xcrun" "--show-sdk-path" "--sdk" "iphonesimulator" [08:48:10.707]: [opencv 0.84.5] exit status: 0 [08:48:10.875]: [opencv 0.84.5] Detecting iOS SDK path for iphonesimulator [08:48:10.875]: [opencv 0.84.5] cargo:rerun-if-env-changed=CXX_x86_64-apple-ios [08:48:10.875]: [opencv 0.84.5] CXX_x86_64-apple-ios = None [08:48:10.875]: [opencv 0.84.5] cargo:rerun-if-env-changed=CXX_x86_64_apple_ios [08:48:10.875]: [opencv 0.84.5] CXX_x86_64_apple_ios = None [08:48:10.875]: [opencv 0.84.5] cargo:rerun-if-env-changed=TARGET_CXX [08:48:10.875]: [opencv 0.84.5] TARGET_CXX = None [08:48:10.875]: [opencv 0.84.5] cargo:rerun-if-env-changed=CXX [08:48:10.875]: [opencv 0.84.5] CXX = None [08:48:10.875]: [opencv 0.84.5] cargo:rerun-if-env-changed=CXXFLAGS_x86_64-apple-ios [08:48:10.875]: [opencv 0.84.5] CXXFLAGS_x86_64-apple-ios = None [08:48:10.875]: [opencv 0.84.5] cargo:rerun-if-env-changed=CXXFLAGS_x86_64_apple_ios [08:48:10.875]: [opencv 0.84.5] CXXFLAGS_x86_64_apple_ios = None [08:48:10.875]: [opencv 0.84.5] cargo:rerun-if-env-changed=TARGET_CXXFLAGS [08:48:10.875]: [opencv 0.84.5] TARGET_CXXFLAGS = None [08:48:10.876]: [opencv 0.84.5] cargo:rerun-if-env-changed=CXXFLAGS [08:48:10.876]: [opencv 0.84.5] CXXFLAGS = None [08:48:10.876]: [opencv 0.84.5] cargo:rerun-if-env-changed=CRATE_CC_NO_DEFAULTS [08:48:10.876]: [opencv 0.84.5] CRATE_CC_NO_DEFAULTS = None [08:48:10.876]: [opencv 0.84.5] Detecting iOS SDK path for iphonesimulator [08:48:10.876]: [opencv 0.84.5] running: "xcrun" "--show-sdk-path" "--sdk" "iphonesimulator" [08:48:10.893]: [opencv 0.84.5] exit status: 0 [08:48:10.962]: [opencv 0.84.5] === Compiler information: Tool { [08:48:10.962]: [opencv 0.84.5] path: "clang++", [08:48:10.962]: [opencv 0.84.5] cc_wrapper_path: None, [08:48:10.962]: [opencv 0.84.5] cc_wrapper_args: [], [08:48:10.962]: [opencv 0.84.5] args: [ [08:48:10.963]: [opencv 0.84.5] "-O3", [08:48:10.963]: [opencv 0.84.5] "-fPIC", [08:48:10.963]: [opencv 0.84.5] "-gdwarf-2", [08:48:10.963]: [opencv 0.84.5] "-fno-omit-frame-pointer", [08:48:10.963]: [opencv 0.84.5] "--target=x86_64-apple-ios", [08:48:10.963]: [opencv 0.84.5] "-m64", [08:48:10.963]: [opencv 0.84.5] "-mios-simulator-version-min=7.0", [08:48:10.963]: [opencv 0.84.5] "-isysroot", [08:48:10.963]: [opencv 0.84.5] "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator16.2.sdk", [08:48:10.963]: [opencv 0.84.5] "-fembed-bitcode", [08:48:10.963]: [opencv 0.84.5] "-I", [08:48:10.963]: [opencv 0.84.5] "/Users/tom/.cargo/registry/src/github.com-1ecc6299db9ec823/opencv-0.84.5/src_cpp", [08:48:10.963]: [opencv 0.84.5] "-I", [08:48:10.963]: [opencv 0.84.5] "/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/build/opencv-d6b3999bb78f6a05/out", [08:48:10.963]: [opencv 0.84.5] "-I", [08:48:10.963]: [opencv 0.84.5] ".", [08:48:10.963]: [opencv 0.84.5] "-I", [08:48:10.963]: [opencv 0.84.5] "/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/temp_ios_headers", [08:48:10.963]: [opencv 0.84.5] "-Wall", [08:48:10.963]: [opencv 0.84.5] "-Wextra", [08:48:10.963]: [opencv 0.84.5] "-std=c++11", [08:48:10.963]: [opencv 0.84.5] "-Wno-deprecated-declarations", [08:48:10.964]: [opencv 0.84.5] "-Wno-deprecated-copy", [08:48:10.964]: [opencv 0.84.5] "-Wno-unused-parameter", [08:48:10.964]: [opencv 0.84.5] "-Wno-sign-compare", [08:48:10.964]: [opencv 0.84.5] "-Wno-comment", [08:48:10.964]: [opencv 0.84.5] "-Wno-unused-variable", [08:48:10.964]: [opencv 0.84.5] "-Wno-ignored-qualifiers", [08:48:10.964]: [opencv 0.84.5] "-Wno-return-type-c-linkage", [08:48:10.964]: [opencv 0.84.5] "-F/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/temp_ios_headers", [08:48:10.964]: [opencv 0.84.5] ], [08:48:10.964]: [opencv 0.84.5] env: [], [08:48:10.964]: [opencv 0.84.5] family: Clang, [08:48:10.964]: [opencv 0.84.5] cuda: false, [08:48:10.964]: [opencv 0.84.5] removed_args: [], [08:48:10.964]: [opencv 0.84.5] } [08:48:10.964]: [opencv 0.84.5] cargo:rustc-cfg=ocvrs_has_module_core [08:48:10.964]: [opencv 0.84.5] cargo:rustc-cfg=ocvrs_has_module_imgcodecs [08:48:10.964]: [opencv 0.84.5] cargo:rustc-cfg=ocvrs_has_module_imgproc [08:48:10.964]: [opencv 0.84.5] Detecting iOS SDK path for iphonesimulator [08:48:10.964]: [opencv 0.84.5] Detecting iOS SDK path for iphonesimulator [08:48:10.964]: [opencv 0.84.5] Detecting iOS SDK path for iphonesimulator [08:48:10.965]: [opencv 0.84.5] Detecting iOS SDK path for iphonesimulator [08:48:10.965]: [opencv 0.84.5] running: "clang++" "-O3" "-fPIC" "-gdwarf-2" "-fno-omit-frame-pointer" "--target=x86_64-apple-ios" "-m64" "-mios-simulator-version-min=7.0" "-isysroot" "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator16.2.sdk" "-fembed-bitcode" "-I" "/Users/tom/.cargo/registry/src/github.com-1ecc6299db9ec823/opencv-0.84.5/src_cpp" "-I" "/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/build/opencv-d6b3999bb78f6a05/out" "-I" "." "-I" "/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/temp_ios_headers" "-Wall" "-Wextra" "-std=c++11" "-Wno-deprecated-declarations" "-Wno-deprecated-copy" "-Wno-unused-parameter" "-Wno-sign-compare" "-Wno-comment" "-Wno-unused-variable" "-Wno-ignored-qualifiers" "-Wno-return-type-c-linkage" "-F/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/temp_ios_headers" "-o" "/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/build/opencv-d6b3999bb78f6a05/out/861949f3aee99742-core.o" "-c" "/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/build/opencv-d6b3999bb78f6a05/out/core.cpp" [08:48:10.965]: [opencv 0.84.5] running: "clang++" "-O3" "-fPIC" "-gdwarf-2" "-fno-omit-frame-pointer" "--target=x86_64-apple-ios" "-m64" "-mios-simulator-version-min=7.0" "-isysroot" "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator16.2.sdk" "-fembed-bitcode" "-I" "/Users/tom/.cargo/registry/src/github.com-1ecc6299db9ec823/opencv-0.84.5/src_cpp" "-I" "/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/build/opencv-d6b3999bb78f6a05/out" "-I" "." "-I" "/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/temp_ios_headers" "-Wall" "-Wextra" "-std=c++11" "-Wno-deprecated-declarations" "-Wno-deprecated-copy" "-Wno-unused-parameter" "-Wno-sign-compare" "-Wno-comment" "-Wno-unused-variable" "-Wno-ignored-qualifiers" "-Wno-return-type-c-linkage" "-F/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/temp_ios_headers" "-o" "/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/build/opencv-d6b3999bb78f6a05/out/ce5059528663c6d9-manual-core.o" "-c" "/Users/tom/.cargo/registry/src/github.com-1ecc6299db9ec823/opencv-0.84.5/src_cpp/manual-core.cpp" [08:48:10.965]: [opencv 0.84.5] running: "clang++" "-O3" "-fPIC" "-gdwarf-2" "-fno-omit-frame-pointer" "--target=x86_64-apple-ios" "-m64" "-mios-simulator-version-min=7.0" "-isysroot" "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator16.2.sdk" "-fembed-bitcode" "-I" "/Users/tom/.cargo/registry/src/github.com-1ecc6299db9ec823/opencv-0.84.5/src_cpp" "-I" "/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/build/opencv-d6b3999bb78f6a05/out" "-I" "." "-I" "/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/temp_ios_headers" "-Wall" "-Wextra" "-std=c++11" "-Wno-deprecated-declarations" "-Wno-deprecated-copy" "-Wno-unused-parameter" "-Wno-sign-compare" "-Wno-comment" "-Wno-unused-variable" "-Wno-ignored-qualifiers" "-Wno-return-type-c-linkage" "-F/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/temp_ios_headers" "-o" "/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/build/opencv-d6b3999bb78f6a05/out/861949f3aee99742-imgproc.o" "-c" "/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/build/opencv-d6b3999bb78f6a05/out/imgproc.cpp" [08:48:10.965]: [opencv 0.84.5] running: "clang++" "-O3" "-fPIC" "-gdwarf-2" "-fno-omit-frame-pointer" "--target=x86_64-apple-ios" "-m64" "-mios-simulator-version-min=7.0" "-isysroot" "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator16.2.sdk" "-fembed-bitcode" "-I" "/Users/tom/.cargo/registry/src/github.com-1ecc6299db9ec823/opencv-0.84.5/src_cpp" "-I" "/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/build/opencv-d6b3999bb78f6a05/out" "-I" "." "-I" "/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/temp_ios_headers" "-Wall" "-Wextra" "-std=c++11" "-Wno-deprecated-declarations" "-Wno-deprecated-copy" "-Wno-unused-parameter" "-Wno-sign-compare" "-Wno-comment" "-Wno-unused-variable" "-Wno-ignored-qualifiers" "-Wno-return-type-c-linkage" "-F/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/temp_ios_headers" "-o" "/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/build/opencv-d6b3999bb78f6a05/out/861949f3aee99742-imgcodecs.o" "-c" "/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/build/opencv-d6b3999bb78f6a05/out/imgcodecs.cpp" [08:48:13.747]: [opencv 0.84.5] exit status: 0 [08:48:14.227]: Compiling tokio-rustls v0.22.0 [08:48:14.227]: Running `CARGO=/Users/tom/.rustup/toolchains/1.64.0-x86_64-apple-darwin/bin/cargo CARGO_CRATE_NAME=tokio_rustls CARGO_MANIFEST_DIR=/Users/tom/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-rustls-0.22.0 CARGO_PKG_AUTHORS='quininer kel ' CARGO_PKG_DESCRIPTION='Asynchronous TLS/SSL streams for Tokio using Rustls.' CARGO_PKG_HOMEPAGE='https://github.com/tokio-rs/tls' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=tokio-rustls CARGO_PKG_REPOSITORY='https://github.com/tokio-rs/tls' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.22.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=22 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' DYLD_FALLBACK_LIBRARY_PATH='/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/release/deps:/Users/tom/.rustup/toolchains/1.64.0-x86_64-apple-darwin/lib:/Users/tom/.rustup/toolchains/1.64.0-x86_64-apple-darwin/lib:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/' rustc --crate-name tokio_rustls --edition=2018 /Users/tom/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-rustls-0.22.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no -C split-debuginfo=unpacked -C debuginfo=2 -C metadata=3490269009688e1e -C extra-filename=-3490269009688e1e --out-dir /Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps --target x86_64-apple-ios -L dependency=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps -L dependency=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/release/deps --extern rustls=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/librustls-7b7f430e81650483.rmeta --extern tokio=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libtokio-52beedfd41892e23.rmeta --extern webpki=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libwebpki-3170e254d5ac3149.rmeta --cap-lints warn -L native=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/build/ring-d8851c9be174887d/out` [08:48:15.947]: warning: `tokio` (lib) generated 4 warnings [08:48:15.948]: Compiling hyper v0.14.13 [08:48:15.948]: Running `CARGO=/Users/tom/.rustup/toolchains/1.64.0-x86_64-apple-darwin/bin/cargo CARGO_CRATE_NAME=hyper CARGO_MANIFEST_DIR=/Users/tom/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.13 CARGO_PKG_AUTHORS='Sean McArthur ' CARGO_PKG_DESCRIPTION='A fast and correct HTTP library.' CARGO_PKG_HOMEPAGE='https://hyper.rs' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=hyper CARGO_PKG_REPOSITORY='https://github.com/hyperium/hyper' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.14.13 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=14 CARGO_PKG_VERSION_PATCH=13 CARGO_PKG_VERSION_PRE='' DYLD_FALLBACK_LIBRARY_PATH='/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/release/deps:/Users/tom/.rustup/toolchains/1.64.0-x86_64-apple-darwin/lib:/Users/tom/.rustup/toolchains/1.64.0-x86_64-apple-darwin/lib:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/' rustc --crate-name hyper --edition=2018 /Users/tom/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.14.13/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --crate-type staticlib --crate-type cdylib --emit=dep-info,link -C opt-level=3 -C embed-bitcode=no -C split-debuginfo=unpacked -C debuginfo=2 --cfg 'feature="client"' --cfg 'feature="h2"' --cfg 'feature="http1"' --cfg 'feature="http2"' --cfg 'feature="runtime"' --cfg 'feature="socket2"' --cfg 'feature="tcp"' -C metadata=19840330cb509a70 -C extra-filename=-19840330cb509a70 --out-dir /Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps --target x86_64-apple-ios -L dependency=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps -L dependency=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/release/deps --extern bytes=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libbytes-57b3b7cdad79ed5b.rlib --extern futures_channel=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libfutures_channel-2c9bdfaf1d847e21.rlib --extern futures_core=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libfutures_core-02196662a10cee54.rlib --extern futures_util=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libfutures_util-0f2a86e02ab432cc.rlib --extern h2=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libh2-1f00b77706615314.rlib --extern http=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libhttp-6be31484ee150fab.rlib --extern http_body=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libhttp_body-11bc471a488092a5.rlib --extern httparse=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libhttparse-62470d29cbad29cc.rlib --extern httpdate=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libhttpdate-9d42b6980512ef9e.rlib --extern itoa=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libitoa-b77c05b14ff991ff.rlib --extern pin_project_lite=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libpin_project_lite-1b6ef9c7132fbc3a.rlib --extern socket2=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libsocket2-7a0ebf168b086ce8.rlib --extern tokio=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libtokio-52beedfd41892e23.rlib --extern tower_service=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libtower_service-bb9be9e1b9e15863.rlib --extern tracing=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libtracing-0c0ecc3c2a242d12.rlib --extern want=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libwant-30d6da0088c944d3.rlib --cap-lints warn` [08:48:16.117]: warning: dropping unsupported crate type `cdylib` for target `x86_64-apple-ios` [08:48:16.117]: [08:48:17.524]: [opencv 0.84.5] exit status: 0 [08:48:17.895]: [opencv 0.84.5] exit status: 0 [08:48:24.921]: warning: `protobuf` (lib) generated 1 warning [08:48:26.271]: warning: `image` (lib) generated 2 warnings [08:48:31.504]: warning: `rustls` (lib) generated 2 warnings [08:48:32.097]: warning: `hyper` (lib) generated 1 warning [08:48:32.097]: Compiling hyper-rustls v0.22.1 [08:48:32.097]: Running `CARGO=/Users/tom/.rustup/toolchains/1.64.0-x86_64-apple-darwin/bin/cargo CARGO_CRATE_NAME=hyper_rustls CARGO_MANIFEST_DIR=/Users/tom/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-rustls-0.22.1 CARGO_PKG_AUTHORS='Joseph Birr-Pixton ' CARGO_PKG_DESCRIPTION='Rustls+hyper integration for pure rust HTTPS' CARGO_PKG_HOMEPAGE='https://github.com/ctz/hyper-rustls' CARGO_PKG_LICENSE=Apache-2.0/ISC/MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=hyper-rustls CARGO_PKG_REPOSITORY='https://github.com/ctz/hyper-rustls' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.22.1 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=22 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' DYLD_FALLBACK_LIBRARY_PATH='/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/release/deps:/Users/tom/.rustup/toolchains/1.64.0-x86_64-apple-darwin/lib:/Users/tom/.rustup/toolchains/1.64.0-x86_64-apple-darwin/lib:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/' rustc --crate-name hyper_rustls --edition=2018 /Users/tom/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-rustls-0.22.1/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no -C split-debuginfo=unpacked -C debuginfo=2 -C metadata=c989f91c63ea67fe -C extra-filename=-c989f91c63ea67fe --out-dir /Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps --target x86_64-apple-ios -L dependency=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps -L dependency=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/release/deps --extern futures_util=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libfutures_util-0f2a86e02ab432cc.rmeta --extern hyper=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libhyper-19840330cb509a70.rlib --extern log=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/liblog-50ddee76197df382.rmeta --extern rustls=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/librustls-7b7f430e81650483.rmeta --extern tokio=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libtokio-52beedfd41892e23.rmeta --extern tokio_rustls=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libtokio_rustls-3490269009688e1e.rmeta --extern webpki=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libwebpki-3170e254d5ac3149.rmeta --cap-lints warn -L native=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/build/ring-d8851c9be174887d/out` [08:48:32.309]: Compiling reqwest v0.11.5 [08:48:32.310]: Running `CARGO=/Users/tom/.rustup/toolchains/1.64.0-x86_64-apple-darwin/bin/cargo CARGO_CRATE_NAME=reqwest CARGO_MANIFEST_DIR=/Users/tom/.cargo/registry/src/github.com-1ecc6299db9ec823/reqwest-0.11.5 CARGO_PKG_AUTHORS='Sean McArthur ' CARGO_PKG_DESCRIPTION='higher level HTTP client library' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=reqwest CARGO_PKG_REPOSITORY='https://github.com/seanmonstar/reqwest' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.11.5 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=11 CARGO_PKG_VERSION_PATCH=5 CARGO_PKG_VERSION_PRE='' DYLD_FALLBACK_LIBRARY_PATH='/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/release/deps:/Users/tom/.rustup/toolchains/1.64.0-x86_64-apple-darwin/lib:/Users/tom/.rustup/toolchains/1.64.0-x86_64-apple-darwin/lib:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/' rustc --crate-name reqwest --edition=2018 /Users/tom/.cargo/registry/src/github.com-1ecc6299db9ec823/reqwest-0.11.5/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no -C split-debuginfo=unpacked -C debuginfo=2 --cfg 'feature="__rustls"' --cfg 'feature="__tls"' --cfg 'feature="blocking"' --cfg 'feature="hyper-rustls"' --cfg 'feature="json"' --cfg 'feature="rustls"' --cfg 'feature="rustls-tls"' --cfg 'feature="rustls-tls-webpki-roots"' --cfg 'feature="serde_json"' --cfg 'feature="tokio-rustls"' --cfg 'feature="webpki-roots"' -C metadata=e407fd6c7c3f807b -C extra-filename=-e407fd6c7c3f807b --out-dir /Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps --target x86_64-apple-ios -L dependency=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps -L dependency=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/release/deps --extern base64=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libbase64-ceab7032261394f3.rmeta --extern bytes=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libbytes-57b3b7cdad79ed5b.rmeta --extern encoding_rs=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libencoding_rs-43acd4827f5131ce.rmeta --extern futures_core=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libfutures_core-02196662a10cee54.rmeta --extern futures_util=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libfutures_util-0f2a86e02ab432cc.rmeta --extern http=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libhttp-6be31484ee150fab.rmeta --extern http_body=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libhttp_body-11bc471a488092a5.rmeta --extern hyper=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libhyper-19840330cb509a70.rlib --extern hyper_rustls=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libhyper_rustls-c989f91c63ea67fe.rmeta --extern ipnet=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libipnet-43b6c27873d95611.rmeta --extern lazy_static=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/liblazy_static-1cdd6aa1f473a434.rmeta --extern log=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/liblog-50ddee76197df382.rmeta --extern mime=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libmime-4ecbd0b3e3bf4576.rmeta --extern percent_encoding=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libpercent_encoding-d3e3d8f5bf710ca5.rmeta --extern pin_project_lite=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libpin_project_lite-1b6ef9c7132fbc3a.rmeta --extern rustls=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/librustls-7b7f430e81650483.rmeta --extern serde=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libserde-3aa75456434d2f92.rmeta --extern serde_json=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libserde_json-fb40980cd54246c9.rmeta --extern serde_urlencoded=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libserde_urlencoded-8a956c87d50f84fe.rmeta --extern tokio=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libtokio-52beedfd41892e23.rmeta --extern tokio_rustls=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libtokio_rustls-3490269009688e1e.rmeta --extern url=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/liburl-57d2ca7835a48e01.rmeta --extern webpki_roots=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libwebpki_roots-7f13ce342301c01a.rmeta --cap-lints warn -L native=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/build/ring-d8851c9be174887d/out` [08:48:33.460]: Compiling sentry v0.23.0 (https://github.com/fzyzcjy/sentry-rust#bf71bf43) [08:48:33.461]: Running `CARGO=/Users/tom/.rustup/toolchains/1.64.0-x86_64-apple-darwin/bin/cargo CARGO_CRATE_NAME=sentry CARGO_MANIFEST_DIR=/Users/tom/.cargo/git/checkouts/sentry-rust-92aa47acd509410f/bf71bf4/sentry CARGO_PKG_AUTHORS='Sentry ' CARGO_PKG_DESCRIPTION='Sentry (getsentry.com) client for rust ;) [08:48:33.461]: ' CARGO_PKG_HOMEPAGE='https://sentry.io/welcome/' CARGO_PKG_LICENSE=Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=sentry CARGO_PKG_REPOSITORY='https://github.com/getsentry/sentry-rust' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.23.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=23 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' DYLD_FALLBACK_LIBRARY_PATH='/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/release/deps:/Users/tom/.rustup/toolchains/1.64.0-x86_64-apple-darwin/lib:/Users/tom/.rustup/toolchains/1.64.0-x86_64-apple-darwin/lib:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/' rustc --crate-name sentry --edition=2018 /Users/tom/.cargo/git/checkouts/sentry-rust-92aa47acd509410f/bf71bf4/sentry/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no -C split-debuginfo=unpacked -C debuginfo=2 --cfg 'feature="anyhow"' --cfg 'feature="backtrace"' --cfg 'feature="contexts"' --cfg 'feature="debug-images"' --cfg 'feature="httpdate"' --cfg 'feature="log"' --cfg 'feature="panic"' --cfg 'feature="reqwest"' --cfg 'feature="reqwest_"' --cfg 'feature="rustls"' --cfg 'feature="sentry-anyhow"' --cfg 'feature="sentry-backtrace"' --cfg 'feature="sentry-contexts"' --cfg 'feature="sentry-debug-images"' --cfg 'feature="sentry-log"' --cfg 'feature="sentry-panic"' --cfg 'feature="test"' --cfg 'feature="tokio"' -C metadata=9beb4bdff370fa79 -C extra-filename=-9beb4bdff370fa79 --out-dir /Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps --target x86_64-apple-ios -L dependency=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps -L dependency=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/release/deps --extern httpdate=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libhttpdate-9d42b6980512ef9e.rmeta --extern reqwest_=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libreqwest-e407fd6c7c3f807b.rmeta --extern sentry_anyhow=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libsentry_anyhow-7e6e6b19c42a17aa.rmeta --extern sentry_backtrace=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libsentry_backtrace-2c023b0d5124395c.rmeta --extern sentry_contexts=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libsentry_contexts-685b428402f3ed75.rmeta --extern sentry_core=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libsentry_core-d70983c55a4b9990.rmeta --extern sentry_debug_images=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libsentry_debug_images-24849429e391f053.rmeta --extern sentry_log=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libsentry_log-a5c55948acf735f4.rmeta --extern sentry_panic=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libsentry_panic-e2a2ea76a5ab5a5d.rmeta --extern tokio=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libtokio-52beedfd41892e23.rmeta --cap-lints warn -L native=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/build/ring-d8851c9be174887d/out` [08:48:48.674]: [opencv 0.84.5] exit status: 0 [08:48:48.674]: [opencv 0.84.5] cargo:rerun-if-env-changed=AR_x86_64-apple-ios [08:48:48.674]: [opencv 0.84.5] AR_x86_64-apple-ios = None [08:48:48.674]: [opencv 0.84.5] cargo:rerun-if-env-changed=AR_x86_64_apple_ios [08:48:48.674]: [opencv 0.84.5] AR_x86_64_apple_ios = None [08:48:48.674]: [opencv 0.84.5] cargo:rerun-if-env-changed=TARGET_AR [08:48:48.674]: [opencv 0.84.5] TARGET_AR = None [08:48:48.674]: [opencv 0.84.5] cargo:rerun-if-env-changed=AR [08:48:48.674]: [opencv 0.84.5] AR = None [08:48:48.674]: [opencv 0.84.5] RUSTC_LINKER = None [08:48:48.674]: [opencv 0.84.5] cargo:rerun-if-env-changed=CROSS_COMPILE [08:48:48.674]: [opencv 0.84.5] CROSS_COMPILE = None [08:48:48.674]: [opencv 0.84.5] cargo:rerun-if-env-changed=ARFLAGS_x86_64-apple-ios [08:48:48.674]: [opencv 0.84.5] ARFLAGS_x86_64-apple-ios = None [08:48:48.674]: [opencv 0.84.5] cargo:rerun-if-env-changed=ARFLAGS_x86_64_apple_ios [08:48:48.674]: [opencv 0.84.5] ARFLAGS_x86_64_apple_ios = None [08:48:48.674]: [opencv 0.84.5] cargo:rerun-if-env-changed=TARGET_ARFLAGS [08:48:48.674]: [opencv 0.84.5] TARGET_ARFLAGS = None [08:48:48.674]: [opencv 0.84.5] cargo:rerun-if-env-changed=ARFLAGS [08:48:48.674]: [opencv 0.84.5] ARFLAGS = None [08:48:48.675]: [opencv 0.84.5] running: "ar" "cq" "/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/build/opencv-d6b3999bb78f6a05/out/libocvrs.a" "/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/build/opencv-d6b3999bb78f6a05/out/861949f3aee99742-core.o" "/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/build/opencv-d6b3999bb78f6a05/out/ce5059528663c6d9-manual-core.o" "/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/build/opencv-d6b3999bb78f6a05/out/861949f3aee99742-imgcodecs.o" "/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/build/opencv-d6b3999bb78f6a05/out/861949f3aee99742-imgproc.o" [08:48:48.855]: [opencv 0.84.5] exit status: 0 [08:48:48.855]: [opencv 0.84.5] running: "ar" "s" "/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/build/opencv-d6b3999bb78f6a05/out/libocvrs.a" [08:48:48.999]: [opencv 0.84.5] exit status: 0 [08:48:48.999]: [opencv 0.84.5] cargo:rustc-link-lib=static=ocvrs [08:48:48.999]: [opencv 0.84.5] cargo:rustc-link-search=native=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/build/opencv-d6b3999bb78f6a05/out [08:48:48.999]: [opencv 0.84.5] cargo:rerun-if-env-changed=CXXSTDLIB_x86_64-apple-ios [08:48:48.999]: [opencv 0.84.5] CXXSTDLIB_x86_64-apple-ios = None [08:48:48.999]: [opencv 0.84.5] cargo:rerun-if-env-changed=CXXSTDLIB_x86_64_apple_ios [08:48:48.999]: [opencv 0.84.5] CXXSTDLIB_x86_64_apple_ios = None [08:48:48.999]: [opencv 0.84.5] cargo:rerun-if-env-changed=TARGET_CXXSTDLIB [08:48:48.999]: [opencv 0.84.5] TARGET_CXXSTDLIB = None [08:48:48.999]: [opencv 0.84.5] cargo:rerun-if-env-changed=CXXSTDLIB [08:48:48.999]: [opencv 0.84.5] CXXSTDLIB = None [08:48:48.999]: [opencv 0.84.5] cargo:rustc-link-lib=c++ [08:48:48.999]: [opencv 0.84.5] === Total cpp build time: 38.035300243s [08:48:48.999]: [opencv 0.84.5] cargo:rustc-link-search=/Users/tom/Main/yplusplus/frontend/vision_utils/vision_utils_flutter_wrapper/ios [08:48:48.999]: [opencv 0.84.5] cargo:rustc-link-search=framework=/Users/tom/Main/yplusplus/frontend/vision_utils/vision_utils_flutter_wrapper/ios [08:48:48.999]: [opencv 0.84.5] cargo:rustc-link-lib=framework=opencv2 [08:48:49.004]: Running `CARGO=/Users/tom/.rustup/toolchains/1.64.0-x86_64-apple-darwin/bin/cargo CARGO_CRATE_NAME=opencv CARGO_MANIFEST_DIR=/Users/tom/.cargo/registry/src/github.com-1ecc6299db9ec823/opencv-0.84.5 CARGO_PKG_AUTHORS='Pro :Mathieu Poumeyrol ' CARGO_PKG_DESCRIPTION='Rust bindings for OpenCV' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=opencv CARGO_PKG_REPOSITORY='https://github.com/twistedfall/opencv-rust' CARGO_PKG_RUST_VERSION=1.59 CARGO_PKG_VERSION=0.84.5 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=84 CARGO_PKG_VERSION_PATCH=5 CARGO_PKG_VERSION_PRE='' DYLD_FALLBACK_LIBRARY_PATH='/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/release/deps:/Users/tom/.rustup/toolchains/1.64.0-x86_64-apple-darwin/lib:/Users/tom/.rustup/toolchains/1.64.0-x86_64-apple-darwin/lib:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/' OUT_DIR=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/build/opencv-d6b3999bb78f6a05/out rustc --crate-name opencv --edition=2021 /Users/tom/.cargo/registry/src/github.com-1ecc6299db9ec823/opencv-0.84.5/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C opt-level=3 -C embed-bitcode=no -C split-debuginfo=unpacked -C debuginfo=2 --cfg 'feature="imgcodecs"' --cfg 'feature="imgproc"' --cfg 'feature="rgb"' -C metadata=00981f039dedc61d -C extra-filename=-00981f039dedc61d --out-dir /Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps --target x86_64-apple-ios -L dependency=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps -L dependency=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/release/deps --extern libc=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/liblibc-94bda512985520a5.rmeta --extern num_traits=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libnum_traits-d459ad2a50459083.rmeta --extern once_cell=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libonce_cell-332386073422ab2a.rmeta --extern rgb=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/librgb-5e1d4df48ba5474d.rmeta --cap-lints warn -L native=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/build/opencv-d6b3999bb78f6a05/out -L /Users/tom/Main/yplusplus/frontend/vision_utils/vision_utils_flutter_wrapper/ios -L framework=/Users/tom/Main/yplusplus/frontend/vision_utils/vision_utils_flutter_wrapper/ios -l static=ocvrs -l c++ -l framework=opencv2 --cfg ocvrs_opencv_branch_4 --cfg ocvrs_has_module_core --cfg ocvrs_has_module_imgcodecs --cfg ocvrs_has_module_imgproc` [08:49:02.541]: Compiling vision_utils_rs v0.1.0 (/Users/tom/Main/yplusplus/frontend/vision_utils/rust) [08:49:02.541]: Running `CARGO=/Users/tom/.rustup/toolchains/1.64.0-x86_64-apple-darwin/bin/cargo CARGO_CRATE_NAME=vision_utils_rs CARGO_MANIFEST_DIR=/Users/tom/Main/yplusplus/frontend/vision_utils/rust CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=vision_utils_rs CARGO_PKG_REPOSITORY='' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.1.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' CARGO_PRIMARY_PACKAGE=1 DYLD_FALLBACK_LIBRARY_PATH='/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/release/deps:/Users/tom/.rustup/toolchains/1.64.0-x86_64-apple-darwin/lib:/Users/tom/.rustup/toolchains/1.64.0-x86_64-apple-darwin/lib:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/' rustc --crate-name vision_utils_rs --edition=2018 src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type staticlib --emit=dep-info,link -C opt-level=3 -C embed-bitcode=no -C split-debuginfo=unpacked -C debuginfo=2 -C metadata=5ea26bbebaf7eb72 -C extra-filename=-5ea26bbebaf7eb72 --out-dir /Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps --target x86_64-apple-ios -L dependency=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps -L dependency=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/release/deps --extern align_data=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libalign_data-1b1cf06f8e80e8ab.rlib --extern anyhow=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libanyhow-a49e2b0e0ce09114.rlib --extern approx=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libapprox-09620dab7e53785e.rlib --extern argh=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libargh-00e726b130a99744.rlib --extern backtrace=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libbacktrace-23b8c8c829c84711.rlib --extern byte_slice_cast=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libbyte_slice_cast-3eb21b333d72d265.rlib --extern bytemuck=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libbytemuck-16911aaa7811745d.rlib --extern byteorder=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libbyteorder-e66b7e9e60aa9df3.rlib --extern bytes=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libbytes-57b3b7cdad79ed5b.rlib --extern colorous=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libcolorous-713b0aa200072993.rlib --extern const_fn_assert=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libconst_fn_assert-cec4f86452b65f21.rlib --extern const_format=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libconst_format-b5c90f655aa5f5e0.rlib --extern crossbeam=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libcrossbeam-8c931bd91b3af84f.rlib --extern delaunator=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libdelaunator-97ee787ace6e50a6.rlib --extern easy_ext=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/release/deps/libeasy_ext-8733eac0c02a7111.dylib --extern findshlibs=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libfindshlibs-9175da1e31050793.rlib --extern flutter_rust_bridge=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libflutter_rust_bridge-54d0a3c18499240f.rlib --extern fnv=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libfnv-c7392f7c340a5241.rlib --extern glob=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libglob-b24b859db765856d.rlib --extern image=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libimage-50cf85ffd5ea3d91.rlib --extern indicatif=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libindicatif-5fb0eb526849bc2d.rlib --extern itertools=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libitertools-58ba63f9a5560432.rlib --extern lazy_static=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/liblazy_static-1cdd6aa1f473a434.rlib --extern log=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/liblog-50ddee76197df382.rlib --extern material_color=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libmaterial_color-edebf07fc96be567.rlib --extern ndarray=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libndarray-bae953d31f6b906b.rlib --extern ndarray_rand=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libndarray_rand-3085d2551c74e997.rlib --extern ndarray_stats=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libndarray_stats-a43cb0d511845ddb.rlib --extern ndarray_ext=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libndarray_ext-97ecf5db29a1a215.rlib --extern noisy_float=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libnoisy_float-3e66834c1437ed8c.rlib --extern num=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libnum-699089a28d97f9ff.rlib --extern num_derive=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/release/deps/libnum_derive-5e2cf9b1af26f07f.dylib --extern num_traits=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libnum_traits-d459ad2a50459083.rlib --extern opencv=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libopencv-00981f039dedc61d.rlib --extern ordered_float=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libordered_float-b7822d1fa1d9a1ff.rlib --extern oslog=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/liboslog-e86a95305e19e1ca.rlib --extern parking_lot=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libparking_lot-f00e352e4233f580.rlib --extern pathdiff=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libpathdiff-2127c93d33d1e8a8.rlib --extern pathfinding=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libpathfinding-5c0d58614474ab5f.rlib --extern png=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libpng-40acc19caf51d13d.rlib --extern protobuf=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libprotobuf-eea4ea7c7e082a3f.rlib --extern rand=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/librand-56df31966bc3e697.rlib --extern rayon=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/librayon-049cae79cbd5494d.rlib --extern rgb=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/librgb-5e1d4df48ba5474d.rlib --extern sentry=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libsentry-9beb4bdff370fa79.rlib --extern sentry_anyhow=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libsentry_anyhow-948dd348f292c560.rlib --extern simplelog=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libsimplelog-430e472ffafc6614.rlib --extern static_assertions=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libstatic_assertions-65435c827b7705e2.rlib --extern strum_macros=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/release/deps/libstrum_macros-01b80bac9f7d069d.dylib --extern tflite_rust=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libtflite_rust-14b77a5b125992f8.rlib --extern thiserror=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libthiserror-9e849b459a6e3f66.rlib --extern threadpool=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/deps/libthreadpool-285547ba911b4b91.rlib --extern unroll=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/release/deps/libunroll-52ee9649fd3da250.dylib -L native=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/build/dart-sys-412bbd4acbdf9c93/out -L native=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/build/opencv-d6b3999bb78f6a05/out -L /Users/tom/Main/yplusplus/frontend/vision_utils/vision_utils_flutter_wrapper/ios -L framework=/Users/tom/Main/yplusplus/frontend/vision_utils/vision_utils_flutter_wrapper/ios -L native=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/build/oslog-e69e800f3271951e/out -L native=/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/build/ring-d8851c9be174887d/out -L native=/Users/tom/Main/yplusplus/frontend/tflite_rust/built_artifacts/ios/TensorFlowLiteC.framework/TensorFlowLiteC` [08:49:40.102]: Finished release [optimized + debuginfo] target(s) in 3m 10s [08:49:40.120]: [INFO cargo_lipo::lipo] Creating universal library for vision_utils_rs [08:49:40.120]: [DEBUG cargo_lipo::exec] Running: "lipo" "-create" "-output" "/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/universal/release/libvision_utils_rs.a" "/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/aarch64-apple-ios/release/libvision_utils_rs.a" "/Users/tom/Main/yplusplus/frontend/vision_utils/rust/target/x86_64-apple-ios/release/libvision_utils_rs.a" [08:49:44.583]: Finished running: `cargo lipo --release -vv` (cwd=/Users/tom/Main/yplusplus/frontend/vision_utils/rust, return_code=0) ```
twistedfall commented 1 year ago

This should now be fixed in 0.85.0