diff --git a/.github/workflows/openvx-conformance.yml b/.github/workflows/openvx-conformance.yml index dab06fd..af6964e 100644 --- a/.github/workflows/openvx-conformance.yml +++ b/.github/workflows/openvx-conformance.yml @@ -50,7 +50,13 @@ jobs: cmake \ ninja-build \ libgtest-dev \ +<<<<<<< HEAD + libjpeg-dev \ + libpng-dev \ + libtiff-dev \ +======= libopencv-dev \ +>>>>>>> origin/master python3 \ python3-pip @@ -61,6 +67,43 @@ jobs: rustc --version cargo --version +<<<<<<< HEAD + - name: Cache Cargo registry + uses: actions/cache@v4 + with: + path: ~/.cargo/registry + key: ${{ runner.os }}-cargo-registry-${{ hashFiles('**/Cargo.lock') }} + restore-keys: | + ${{ runner.os }}-cargo-registry- + + - name: Cache Cargo index + uses: actions/cache@v4 + with: + path: ~/.cargo/git + key: ${{ runner.os }}-cargo-index-${{ hashFiles('**/Cargo.lock') }} + restore-keys: | + ${{ runner.os }}-cargo-index- + + - name: Cache Cargo build + uses: actions/cache@v4 + with: + path: target + key: ${{ runner.os }}-cargo-build-${{ hashFiles('**/Cargo.lock') }}-${{ github.sha }} + restore-keys: | + ${{ runner.os }}-cargo-build-${{ hashFiles('**/Cargo.lock') }}- + ${{ runner.os }}-cargo-build- + + - name: Cache OpenVX CTS build + uses: actions/cache@v4 + with: + path: OpenVX-cts/build + key: ${{ runner.os }}-cts-build-${{ hashFiles('OpenVX-cts/CMakeLists.txt') }}-${{ github.sha }} + restore-keys: | + ${{ runner.os }}-cts-build-${{ hashFiles('OpenVX-cts/CMakeLists.txt') }}- + ${{ runner.os }}-cts-build- + +======= +>>>>>>> origin/master - name: Build rustVX run: | source $HOME/.cargo/env @@ -96,7 +139,19 @@ jobs: cp -r ../include/* include/ 2>/dev/null || true fi +<<<<<<< HEAD + # Ensure clean build directory if CMake configuration changed + if [ -f "build/CMakeCache.txt" ]; then + echo "Using cached CTS build" + else + echo "Creating fresh CTS build directory" + rm -rf build + mkdir -p build + fi + +======= mkdir -p build +>>>>>>> origin/master cd build # Configure with verbose output and proper include paths @@ -108,6 +163,11 @@ jobs: -DOPENVX_INCLUDES="${{ github.workspace }}/include;${{ github.workspace }}/OpenVX-cts/include" \ -DOPENVX_LIBRARIES="${{ github.workspace }}/target/release/libopenvx_core.so;${{ github.workspace }}/target/release/libopenvx_ffi.so;m" \ -DOPENVX_CONFORMANCE_VISION=ON \ +<<<<<<< HEAD + -DOPENVX_CONFORMANCE_NEURAL_NETWORKS=OFF \ + -DOPENVX_CONFORMANCE_OTHER=OFF \ +======= +>>>>>>> origin/master 2>&1 || { echo "CMAKE FAILED!" echo "CMake output:" @@ -162,8 +222,13 @@ jobs: # Create output directory for results mkdir -p ${{ github.workspace }}/test-results +<<<<<<< HEAD + # Run full vision conformance tests + timeout 600 ./bin/vx_test_conformance 2>&1 | tee ${{ github.workspace }}/test-results/vision_test_output.txt || true +======= # Run tests timeout 300 ./bin/vx_test_conformance 2>&1 | tee ${{ github.workspace }}/test-results/vision_test_output.txt || true +>>>>>>> origin/master echo "Test execution completed." @@ -189,13 +254,25 @@ jobs: FAIL_COUNT=$(grep -c "\[ !FAILED! \]" "$OUTPUT_FILE" 2>/dev/null || echo "0") echo "Tests failed: $FAIL_COUNT" +<<<<<<< HEAD + # Count skipped tests + SKIP_COUNT=$(grep -c "\[ SKIP \]" "$OUTPUT_FILE" 2>/dev/null || echo "0") + echo "Tests skipped: $SKIP_COUNT" + +======= +>>>>>>> origin/master # Extract test summary echo "========================================" | tee ${{ github.workspace }}/test-results/summary.txt echo "Vision Conformance Test Summary" | tee -a ${{ github.workspace }}/test-results/summary.txt echo "========================================" | tee -a ${{ github.workspace }}/test-results/summary.txt echo "Passed: $PASS_COUNT" | tee -a ${{ github.workspace }}/test-results/summary.txt echo "Failed: $FAIL_COUNT" | tee -a ${{ github.workspace }}/test-results/summary.txt +<<<<<<< HEAD + echo "Skipped: $SKIP_COUNT" | tee -a ${{ github.workspace }}/test-results/summary.txt + echo "Total: $((PASS_COUNT + FAIL_COUNT + SKIP_COUNT))" | tee -a ${{ github.workspace }}/test-results/summary.txt +======= echo "Total: $((PASS_COUNT + FAIL_COUNT))" | tee -a ${{ github.workspace }}/test-results/summary.txt +>>>>>>> origin/master if [ "$FAIL_COUNT" -eq 0 ] && [ "$PASS_COUNT" -gt 0 ]; then echo "Status: ✅ ALL TESTS PASSED" | tee -a ${{ github.workspace }}/test-results/summary.txt @@ -208,6 +285,10 @@ jobs: # Set outputs for GitHub Actions summary echo "pass_count=$PASS_COUNT" >> $GITHUB_OUTPUT echo "fail_count=$FAIL_COUNT" >> $GITHUB_OUTPUT +<<<<<<< HEAD + echo "skip_count=$SKIP_COUNT" >> $GITHUB_OUTPUT +======= +>>>>>>> origin/master - name: Upload test results uses: actions/upload-artifact@v4 @@ -233,7 +314,15 @@ jobs: source $HOME/.cargo/env echo "- **Rust Version:** $(rustc --version)" >> $GITHUB_STEP_SUMMARY echo "- **Build Type:** Release" >> $GITHUB_STEP_SUMMARY +<<<<<<< HEAD + echo "- **CTS Build:** OpenVX Conformance Test Suite (Vision Only)" >> $GITHUB_STEP_SUMMARY + echo "- **Test Suite:** Full Vision Conformance (~6000 tests)" >> $GITHUB_STEP_SUMMARY + + echo "" >> $GITHUB_STEP_SUMMARY + echo "📥 **Download full logs:** See Artifacts section above" >> $GITHUB_STEP_SUMMARY +======= echo "- **CTS Build:** OpenVX Conformance Test Suite" >> $GITHUB_STEP_SUMMARY echo "" >> $GITHUB_STEP_SUMMARY - echo "📥 **Download full logs:** See Artifacts section above" >> $GITHUB_STEP_SUMMARY \ No newline at end of file + echo "📥 **Download full logs:** See Artifacts section above" >> $GITHUB_STEP_SUMMARY +>>>>>>> origin/master diff --git a/CONFORMANCE_PLAN.md b/CONFORMANCE_PLAN.md index cc7359a..2501475 100644 --- a/CONFORMANCE_PLAN.md +++ b/CONFORMANCE_PLAN.md @@ -1,5 +1,195 @@ # rustVX OpenVX Conformance Achievement Plan +<<<<<<< HEAD +## Current Status Analysis + +### What Works: +- ✅ Core framework architecture (Context, Graph, Reference management) +- ✅ 27 integration tests passing (100%) +- ✅ Basic C FFI bindings functional +- ✅ ~32 API functions exported + +### What's Missing: +- ❌ ~268+ API functions not implemented (out of ~300 total) +- ❌ Vision kernels are stubs (no actual algorithms) +- ❌ CTS link stage fails due to undefined references +- ❌ Missing: vxIsGraphVerified, user kernel allocation, many query functions + +## Target: Full Khronos OpenVX 1.3.1 Vision Conformance + +## Plan Overview + +The approach is to: +1. **Phase 1: Complete Core API** - Implement remaining ~150 core functions +2. **Phase 2: Implement Vision Algorithms** - Replace stubs with actual implementations +3. **Phase 3: Data Object Completion** - Arrays, Scalars, Thresholds, Convolutions, etc. +4. **Phase 4: CTS Integration & Fixes** - Achieve passing test suite + +## Detailed Execution Plan + +### Round 1: Core Reference & Context Functions (Foundation) +**Dependencies:** None +**Scope:** Complete the reference management and context query functions +**Functions to implement:** +- vxSetReferenceName +- vxQueryReference (full implementation for all types) +- vxDirective +- vxRegisterLogCallback / vxAddLogEntry +- vxIsGraphVerified +- vxReplicateNode + +### Round 2: Graph & Node Management +**Dependencies:** Round 1 +**Scope:** Complete graph and node attribute management +**Functions to implement:** +- vxQueryGraph (full attributes) +- vxSetGraphAttribute (full implementation) +- vxQueryNode (all attributes) +- vxSetNodeTarget +- vxRemoveNode (complete implementation) +- vxAssignNodeCallback (complete) + +### Round 3: Kernel Loading & User Kernels +**Dependencies:** Round 1-2 +**Scope:** Complete kernel management and user kernel support +**Functions to implement:** +- vxAllocateUserKernelId +- vxAllocateUserKernelLibraryId +- vxRegisterUserStructWithName +- vxGetUserStructNameByEnum +- vxGetUserStructEnumByName +- vxGetKernelParameterByIndex (full implementation) + +### Round 4: Image Operations +**Dependencies:** Round 1 +**Scope:** Complete image API (already partially implemented) +**Functions to add:** +- vxCreateImageFromROI +- vxSetImageAttribute (full) +- vxGetValidRegionImage +- vxCopyImagePatch +- vxQueryImage (complete all attributes) + +### Round 5: Scalar Implementation +**Dependencies:** Round 1 +**Scope:** Complete scalar data objects +**Functions to implement:** +- vxCreateScalar +- vxQueryScalar +- vxCopyScalar +- vxReleaseScalar + +### Round 6: Array Implementation +**Dependencies:** Round 1 +**Scope:** Complete array data objects +**Functions to implement:** +- vxCreateArray +- vxQueryArray +- vxAddArrayItems +- vxTruncateArray +- vxMapArrayRange +- vxUnmapArrayRange +- vxCopyArrayRange +- vxReleaseArray + +### Round 7: Threshold Implementation +**Dependencies:** Round 1 +**Scope:** Complete threshold data objects +**Functions to implement:** +- vxCreateThreshold +- vxQueryThreshold +- vxSetThresholdAttribute +- vxReleaseThreshold + +### Round 8: Convolution Implementation +**Dependencies:** Round 1 +**Scope:** Complete convolution data objects +**Functions to implement:** +- vxCreateConvolution +- vxQueryConvolution +- vxSetConvolutionAttribute +- vxCopyConvolutionCoefficients +- vxReleaseConvolution + +### Round 9: Matrix & LUT Implementation +**Dependencies:** Round 1 +**Scope:** Complete matrix and LUT data objects +**Functions to implement:** +- vxCreateMatrix +- vxQueryMatrix +- vxCopyMatrix +- vxReleaseMatrix +- vxCreateLUT +- vxQueryLUT +- vxCopyLUT +- vxReleaseLUT + +### Round 10: Distribution & Pyramid Implementation +**Dependencies:** Round 1 +**Scope:** Complete distribution and pyramid data objects +**Functions to implement:** +- vxCreateDistribution +- vxQueryDistribution +- vxReleaseDistribution +- vxCreatePyramid +- vxQueryPyramid +- vxReleasePyramid +- vxGetPyramidLevel + +### Round 11: Remap & Delay Implementation +**Dependencies:** Round 1 +**Scope:** Complete remap and delay data objects +**Functions to implement:** +- vxCreateRemap +- vxQueryRemap +- vxSetRemapPoint +- vxGetRemapPoint +- vxReleaseRemap +- vxCreateDelay +- vxQueryDelay +- vxGetDelay +- vxAgeDelay +- vxReleaseDelay + +### Round 12: Object Array Implementation +**Dependencies:** Round 1-11 +**Scope:** Complete object array support +**Functions to implement:** +- vxCreateObjectArray +- vxQueryObjectArray +- vxGetObjectArrayItem +- vxReleaseObjectArray + +### Round 13: Vision Kernel Algorithms +**Dependencies:** Round 4 (Images) +**Scope:** Replace stub kernels with actual algorithms +**Kernels to implement:** +- ColorConvert (RGB↔YUV, RGB↔NV12, etc.) - actual conversion +- Gaussian3x3 / Gaussian5x5 - actual Gaussian blur +- Sobel3x3 / Sobel5x5 - actual gradient computation +- Box3x3 / Median3x3 - actual filters +- Dilate3x3 / Erode3x3 - actual morphology +- Add / Subtract / Multiply - actual arithmetic +- Threshold - actual thresholding +- ScaleImage - actual resizing +- WarpAffine / WarpPerspective - actual warping +- OpticalFlowPyrLK - actual Lucas-Kanade +- HarrisCorners / FASTCorners - actual feature detection + +### Round 14: SIMD Optimizations +**Dependencies:** Round 13 +**Scope:** Optimize vision kernels with SIMD +**Target:** SSE2/AVX2/NEON acceleration for performance + +### Round 15: CTS Integration & Fixes +**Dependencies:** Round 1-14 +**Scope:** Fix CTS build and runtime failures +**Tasks:** +- Fix link errors +- Run CTS test suites +- Debug and fix failing tests +- Achieve full conformance +======= ## Current Status ### Phase Overview @@ -132,6 +322,7 @@ - ⏳ Achieve full conformance --- +>>>>>>> origin/master ## Risk Analysis @@ -156,6 +347,12 @@ ## Success Criteria +<<<<<<< HEAD +- ✅ CTS builds successfully without link errors +- ✅ All Vision Feature Set tests pass +- ✅ No regressions in existing 27 integration tests +- ✅ Memory safety maintained (no leaks/crashes) +======= - ✅ Core API fully implemented (~300 functions) - ✅ All data objects working - ✅ Vision kernels implemented with correct algorithms @@ -165,10 +362,26 @@ - 🔄 CTS builds successfully without link errors - ⏳ All Vision Feature Set tests pass (in progress) - ⏳ No regressions in existing tests +>>>>>>> origin/master ## Team Assignment Strategy Using Team Code with 4 agents: +<<<<<<< HEAD +- **Agent 1:** Core/Reference/Context (Rounds 1-3) +- **Agent 2:** Data Objects - Images, Scalars, Arrays (Rounds 4-6) +- **Agent 3:** Data Objects - Thresholds, Convolutions, Matrix/LUT, etc. (Rounds 7-12) +- **Agent 4:** Vision Algorithms + SIMD (Rounds 13-14) +- **Manager (me):** Round 15 integration + +## Execution Order + +1. Start with Round 1 (foundation) +2. Parallel: Round 2, 3, 4 once Round 1 complete +3. Parallel: Round 5-12 (data objects) once Round 1 complete +4. Round 13-14 (vision algorithms) once Round 4 complete +5. Round 15 (CTS integration) at the end +======= - **Agent 1:** Core/Reference/Context (Rounds 1-3) ✅ - **Agent 2:** Data Objects - Images, Scalars, Arrays (Rounds 4-6) ✅ - **Agent 3:** Data Objects - Thresholds, Convolutions, Matrix/LUT, etc. (Rounds 7-12) ✅ @@ -182,3 +395,4 @@ Using Team Code with 4 agents: 3. ✅ Round 13: 40+ vision kernels implemented with actual algorithms 4. ⏳ Round 14: SIMD optimizations (deferred to future) 5. 🔄 Round 15: CTS integration ongoing +>>>>>>> origin/master diff --git a/Cargo.lock b/Cargo.lock index 66120eb..61c78b6 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -221,9 +221,15 @@ checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c" [[package]] name = "indexmap" +<<<<<<< HEAD +version = "2.13.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7714e70437a7dc3ac8eb7e6f8df75fd8eb422675fc7678aff7364301092b1017" +======= version = "2.13.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "45a8a2b9cb3e0b0c1803dbb0758ffac5de2f425b23c28f518faabd9d805342ff" +>>>>>>> origin/master dependencies = [ "equivalent", "hashbrown", @@ -257,9 +263,15 @@ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682" [[package]] name = "js-sys" +<<<<<<< HEAD +version = "0.3.91" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b49715b7073f385ba4bc528e5747d02e66cb39c6146efb66b781f131f0fb399c" +======= version = "0.3.94" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2e04e2ef80ce82e13552136fabeef8a5ed1f985a96805761cbb9a2c34e7664d9" +>>>>>>> origin/master dependencies = [ "once_cell", "wasm-bindgen", @@ -626,9 +638,15 @@ dependencies = [ [[package]] name = "wasm-bindgen" +<<<<<<< HEAD +version = "0.2.114" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6532f9a5c1ece3798cb1c2cfdba640b9b3ba884f5db45973a6f442510a87d38e" +======= version = "0.2.117" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0551fc1bb415591e3372d0bc4780db7e587d84e2a7e79da121051c5c4b89d0b0" +>>>>>>> origin/master dependencies = [ "cfg-if", "once_cell", @@ -639,9 +657,15 @@ dependencies = [ [[package]] name = "wasm-bindgen-macro" +<<<<<<< HEAD +version = "0.2.114" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "18a2d50fcf105fb33bb15f00e7a77b772945a2ee45dcf454961fd843e74c18e6" +======= version = "0.2.117" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7fbdf9a35adf44786aecd5ff89b4563a90325f9da0923236f6104e603c7e86be" +>>>>>>> origin/master dependencies = [ "quote", "wasm-bindgen-macro-support", @@ -649,9 +673,15 @@ dependencies = [ [[package]] name = "wasm-bindgen-macro-support" +<<<<<<< HEAD +version = "0.2.114" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "03ce4caeaac547cdf713d280eda22a730824dd11e6b8c3ca9e42247b25c631e3" +======= version = "0.2.117" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "dca9693ef2bab6d4e6707234500350d8dad079eb508dca05530c85dc3a529ff2" +>>>>>>> origin/master dependencies = [ "bumpalo", "proc-macro2", @@ -662,18 +692,30 @@ dependencies = [ [[package]] name = "wasm-bindgen-shared" +<<<<<<< HEAD +version = "0.2.114" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "75a326b8c223ee17883a4251907455a2431acc2791c98c26279376490c378c16" +======= version = "0.2.117" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "39129a682a6d2d841b6c429d0c51e5cb0ed1a03829d8b3d1e69a011e62cb3d3b" +>>>>>>> origin/master dependencies = [ "unicode-ident", ] [[package]] name = "web-sys" +<<<<<<< HEAD +version = "0.3.91" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "854ba17bb104abfb26ba36da9729addc7ce7f06f5c0f90f3c391f8461cca21f9" +======= version = "0.3.94" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "cd70027e39b12f0849461e08ffc50b9cd7688d942c1c8e3c7b22273236b4dd0a" +>>>>>>> origin/master dependencies = [ "js-sys", "wasm-bindgen", @@ -705,18 +747,30 @@ dependencies = [ [[package]] name = "zerocopy" +<<<<<<< HEAD +version = "0.8.47" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "efbb2a062be311f2ba113ce66f697a4dc589f85e78a4aea276200804cea0ed87" +======= version = "0.8.48" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "eed437bf9d6692032087e337407a86f04cd8d6a16a37199ed57949d415bd68e9" +>>>>>>> origin/master dependencies = [ "zerocopy-derive", ] [[package]] name = "zerocopy-derive" +<<<<<<< HEAD +version = "0.8.47" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0e8bc7269b54418e7aeeef514aa68f8690b8c0489a06b0136e5f57c4c5ccab89" +======= version = "0.8.48" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "70e3cd084b1788766f53af483dd21f93881ff30d7320490ec3ef7526d203bad4" +>>>>>>> origin/master dependencies = [ "proc-macro2", "quote", diff --git a/Cargo.toml b/Cargo.toml index 1761e5c..43e03ad 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,4 +1,7 @@ [workspace] +<<<<<<< HEAD +members = ["openvx-core", "openvx-image", "openvx-buffer", "openvx-vision", "openvx-ffi"] +======= members = [ "openvx-core", "openvx-image", @@ -6,12 +9,17 @@ members = [ "openvx-vision", "openvx-ffi", ] +>>>>>>> origin/master resolver = "2" [workspace.package] version = "0.1.0" edition = "2021" +<<<<<<< HEAD +authors = ["OpenVX Rust Implementation"] +======= authors = ["Your Name "] +>>>>>>> origin/master license = "MIT OR Apache-2.0" [workspace.dependencies] @@ -20,4 +28,7 @@ parking_lot = "0.12" thiserror = "1.0" log = "0.4" once_cell = "1.19" +<<<<<<< HEAD +======= libc = "0.2" +>>>>>>> origin/master diff --git a/README.md b/README.md index 431f6cb..1274d24 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,10 @@ # rustVX +<<<<<<< HEAD +======= [![OpenVX Vision Conformance](https://github.com/simoncatbot/rustVX/actions/workflows/openvx-conformance.yml/badge.svg)](https://github.com/simoncatbot/rustVX/actions/workflows/openvx-conformance.yml) +>>>>>>> origin/master OpenVX 1.3.1 Vision Conformant Implementation in Rust ## Overview @@ -104,6 +107,8 @@ This implementation passes the Khronos OpenVX Conformance Test Suite for: See CONFORMANCE.md for detailed results. +<<<<<<< HEAD +======= ## Continuous Integration This project uses GitHub Actions to automatically build and run OpenVX Vision Conformance tests on every push and pull request. @@ -127,6 +132,7 @@ LD_LIBRARY_PATH=../../target/release ./bin/vx_test_conformance ### Workflow Status See [Actions tab](https://github.com/simoncatbot/rustVX/actions) for latest test results. +>>>>>>> origin/master ## License MIT License - See LICENSE file diff --git a/openvx-buffer/src/c_api.rs b/openvx-buffer/src/c_api.rs index e578664..38f6e66 100644 --- a/openvx-buffer/src/c_api.rs +++ b/openvx-buffer/src/c_api.rs @@ -1,21 +1,35 @@ //! C API for OpenVX Buffer and Array use std::ffi::c_void; +<<<<<<< HEAD +use std::sync::RwLock; +use std::collections::HashMap; +use openvx_core::c_api::{ + vx_context, vx_graph, vx_array, vx_status, vx_enum, vx_size, vx_uint32, vx_map_id, vx_int32, +======= use std::sync::{RwLock, atomic::AtomicUsize, Mutex}; use std::collections::HashMap; use openvx_core::c_api::{ vx_context, vx_graph, vx_array, vx_status, vx_enum, vx_size, vx_uint32, vx_map_id, vx_int32, vx_reference, +>>>>>>> origin/master VX_SUCCESS, VX_ERROR_INVALID_REFERENCE, VX_ERROR_INVALID_PARAMETERS, VX_ERROR_NOT_IMPLEMENTED, VX_TYPE_UINT8, VX_TYPE_INT8, VX_TYPE_UINT16, VX_TYPE_INT16, VX_TYPE_UINT32, VX_TYPE_INT32, VX_TYPE_FLOAT32, VX_TYPE_FLOAT64, VX_ARRAY_CAPACITY, VX_ARRAY_ITEMTYPE, VX_ARRAY_NUMITEMS, VX_ARRAY_ITEMSIZE, +<<<<<<< HEAD + VX_READ_ONLY, VX_WRITE_ONLY, VX_READ_AND_WRITE, VX_MEMORY_TYPE_HOST, VX_MEMORY_TYPE_NONE, +}; +use openvx_core::unified_c_api::{vx_distribution, vxCreateDistribution, REFERENCE_COUNTS, REFERENCE_TYPES, USER_STRUCTS}; +use openvx_core::unified_c_api::{VX_TYPE_ARRAY}; +======= VX_MEMORY_TYPE_HOST, VX_MEMORY_TYPE_NONE, }; use openvx_core::unified_c_api::{vx_distribution, vxCreateDistribution, REFERENCE_COUNTS, REFERENCE_TYPES, USER_STRUCTS}; use openvx_core::unified_c_api::{VX_TYPE_ARRAY}; use openvx_core::c_api::vxGetContext; +>>>>>>> origin/master /// Array struct for C API pub struct VxCArray { @@ -26,7 +40,10 @@ pub struct VxCArray { data: RwLock>, context: vx_context, mapped_ranges: RwLock)>>, +<<<<<<< HEAD +======= is_virtual: bool, +>>>>>>> origin/master } impl VxCArray { @@ -54,7 +71,12 @@ impl VxCArray { } // Internal storage for arrays +<<<<<<< HEAD +use std::sync::atomic::{AtomicUsize, Ordering}; +use std::sync::Mutex; +======= use std::sync::atomic::{Ordering}; +>>>>>>> origin/master static ARRAY_ID_COUNTER: AtomicUsize = AtomicUsize::new(1); /// Create an array @@ -88,7 +110,10 @@ pub extern "C" fn vxCreateArray( data: RwLock::new(vec![0u8; total_size]), context, mapped_ranges: RwLock::new(HashMap::new()), +<<<<<<< HEAD +======= is_virtual: false, +>>>>>>> origin/master }); let array_ptr = Box::into_raw(array) as vx_array; @@ -249,6 +274,12 @@ pub extern "C" fn vxCreateVirtualArray( if graph.is_null() { return std::ptr::null_mut(); } +<<<<<<< HEAD + // Virtual arrays are created like regular ones but associated with graph + // In a full implementation, memory would be allocated during graph execution + // A capacity of 0 means unspecified capacity + vxCreateArray(graph as vx_context, item_type, if capacity == 0 { 1024 } else { capacity }) +======= // Get the context from the graph let context = vxGetContext(graph as vx_reference); @@ -299,6 +330,7 @@ pub extern "C" fn vxCreateVirtualArray( } array_ptr +>>>>>>> origin/master } /// Create a virtual distribution (for graph intermediate results) @@ -327,6 +359,18 @@ pub extern "C" fn vxReleaseArray(arr: *mut vx_array) -> vx_status { if !(*arr).is_null() { let addr = *arr as usize; +<<<<<<< HEAD + // Remove from reference counts and types + if let Ok(mut counts) = REFERENCE_COUNTS.lock() { + counts.remove(&addr); + } + if let Ok(mut types) = REFERENCE_TYPES.lock() { + types.remove(&addr); + } + + let _ = Box::from_raw(*arr as *mut VxCArray); + *arr = std::ptr::null_mut(); +======= // Check reference count before freeing let should_free = if let Ok(counts) = REFERENCE_COUNTS.lock() { if let Some(cnt) = counts.get(&addr) { @@ -358,6 +402,7 @@ pub extern "C" fn vxReleaseArray(arr: *mut vx_array) -> vx_status { *arr = std::ptr::null_mut(); } else { +>>>>>>> origin/master } } diff --git a/openvx-core/src/c_api.rs b/openvx-core/src/c_api.rs index 02d8cd2..90ea7ec 100644 --- a/openvx-core/src/c_api.rs +++ b/openvx-core/src/c_api.rs @@ -9,7 +9,11 @@ use std::sync::atomic::AtomicUsize; // Import the unified CONTEXTS registry use crate::unified_c_api::{CONTEXTS as UNIFIED_CONTEXTS, VxCContext}; use crate::unified_c_api::{GRAPHS_DATA, VxCGraphData}; +<<<<<<< HEAD +use crate::unified_c_api::{REFERENCE_COUNTS, REFERENCE_TYPES}; +======= use crate::unified_c_api::{REFERENCE_COUNTS, REFERENCE_TYPES, REFERENCE_NAMES}; +>>>>>>> origin/master use crate::c_api_data::vx_pixel_value_t; // ============================================================================ @@ -121,9 +125,12 @@ pub type vx_target = *mut VxTarget; /// Node completion callback type pub type vx_nodecomplete_f = Option vx_action>; +<<<<<<< HEAD +======= /// Log callback type pub type vx_log_callback_t = Option; +>>>>>>> origin/master /// Action return values from callbacks #[repr(C)] #[derive(Debug, Copy, Clone)] @@ -141,7 +148,10 @@ pub struct GraphData { pub id: u64, pub context_id: u32, pub nodes: Mutex>, // Store node IDs instead of pointers +<<<<<<< HEAD +======= pub ref_count: std::sync::atomic::AtomicUsize, +>>>>>>> origin/master } /// Internal node data (stored in Arc) @@ -239,10 +249,13 @@ pub extern "C" fn vxCreateContext() -> vx_context { mode: crate::unified_c_api::VX_BORDER_UNDEFINED, constant_value: vx_pixel_value_t { U32: 0 }, }), +<<<<<<< HEAD +======= log_callback: Mutex::new(None), log_reentrant: std::sync::atomic::AtomicBool::new(false), logging_enabled: std::sync::atomic::AtomicBool::new(false), performance_enabled: std::sync::atomic::AtomicBool::new(false), +>>>>>>> origin/master })); } // Initialize reference count to 1 (the creation itself counts as a reference) @@ -263,6 +276,70 @@ fn register_standard_kernels(context_id: u32) { // Format: (name, enum, num_params) // Kernel enums aligned with OpenVX 1.3.1 spec (VX_KERNEL_BASE values) // VX_KERNEL_BASE(vendor, lib) = ((vendor) << 20) | ((lib) << 12) +<<<<<<< HEAD + // For VX_ID_KHRONOS=0 and VX_LIBRARY_KHR_BASE=0: VX_KERNEL_BASE = 0 + // Kernel enums are then VX_KERNEL_BASE + offset + let standard_kernels: Vec<(&str, i32, u32)> = vec![ + // Color conversions + ("org.khronos.openvx.color_convert", 0x00i32, 2), + ("org.khronos.openvx.channel_extract", 0x01, 3), + ("org.khronos.openvx.channel_combine", 0x02, 4), + // Gradient operations + ("org.khronos.openvx.sobel_3x3", 0x03, 3), + ("org.khronos.openvx.magnitude", 0x04, 3), + ("org.khronos.openvx.phase", 0x05, 3), + // Geometric + ("org.khronos.openvx.scale_image", 0x06, 3), + ("org.khronos.openvx.warp_affine", 0x07, 4), + ("org.khronos.openvx.warp_perspective", 0x08, 4), + // Arithmetic + ("org.khronos.openvx.add", 0x09, 4), + ("org.khronos.openvx.subtract", 0x0A, 4), + ("org.khronos.openvx.multiply", 0x0B, 4), + ("org.khronos.openvx.weighted_average", 0x0C, 4), + // Filters + ("org.khronos.openvx.convolve", 0x0D, 3), + ("org.khronos.openvx.gaussian_3x3", 0x0E, 2), + ("org.khronos.openvx.median_3x3", 0x0F, 2), + // Morphology + ("org.khronos.openvx.sobel_5x5", 0x10, 3), + ("org.khronos.openvx.box_3x3", 0x12, 2), // Correct per OpenVX spec: 0x12 + ("org.khronos.openvx.gaussian_5x5", 0x13, 2), // 0x13 + ("org.khronos.openvx.harris_corners", 0x14, 4), // 0x14 + // Feature detection + ("org.khronos.openvx.fast_corners", 0x15, 3), // 0x15 + ("org.khronos.openvx.optical_flow_pyr_lk", 0x16, 7), // 0x16 + ("org.khronos.openvx.laplacian", 0x17, 3), // 0x17 + ("org.khronos.openvx.non_linear_filter", 0x18, 4), // 0x18 + ("org.khronos.openvx.dilate_3x3", 0x19, 2), // 0x19 + ("org.khronos.openvx.erode_3x3", 0x1A, 2), // 0x1A + ("org.khronos.openvx.median_3x3", 0x1B, 2), // 0x1B + // Statistics + ("org.khronos.openvx.histogram", 0x1C, 2), // 0x1C + ("org.khronos.openvx.equalize_histogram", 0x1D, 2), // 0x1D + ("org.khronos.openvx.integral_image", 0x1E, 2), // 0x1E + ("org.khronos.openvx.mean_stddev", 0x1F, 4), // 0x1F + ("org.khronos.openvx.minmaxloc", 0x20, 6), // 0x20 + // Additional features + ("org.khronos.openvx.absdiff", 0x21, 3), // 0x21 + ("org.khronos.openvx.mean_shift", 0x22, 5), // 0x22 + ("org.khronos.openvx.threshold", 0x23, 3), // 0x23 + ("org.khronos.openvx.integral_image_sq", 0x24, 2), // 0x24 + ("org.khronos.openvx.dilate_5x5", 0x25, 2), // 0x25 + ("org.khronos.openvx.erode_5x5", 0x26, 2), // 0x26 + // Pyramids + ("org.khronos.openvx.gaussian_pyramid", 0x27, 2), // 0x27 + ("org.khronos.openvx.laplacian_pyramid", 0x28, 2), // 0x28 + // Reconstruction + ("org.khronos.openvx.laplacian_reconstruct", 0x29, 3), // 0x29 + // Geometric + ("org.khronos.openvx.remap", 0x2A, 4), // 0x2A + // Extended feature detection + ("org.khronos.openvx.corner_min_eigen_val", 0x2B, 3), // 0x2B + ("org.khronos.openvx.hough_lines_p", 0x2C, 6), // 0x2C + // Object detection + ("org.khronos.openvx.canny_edge_detector", 0x2D, 4), // 0x2D +======= // Per OpenVX spec: VX_KERNEL_ = VX_KERNEL_BASE(VX_ID_KHRONOS, VX_LIBRARY_KHR_BASE) + offset // Since VX_ID_KHRONOS=0x000 and VX_LIBRARY_KHR_BASE=0x0, the base is 0x00000000 // Kernel enums start at 0x1 (not 0x0). @@ -321,14 +398,19 @@ fn register_standard_kernels(context_id: u32) { ("org.khronos.openvx.non_linear_filter", 0x2C, 4), // OpenVX 1.0.2 addition ("org.khronos.openvx.weighted_average", 0x40, 4), +>>>>>>> origin/master ]; if let Ok(mut kernels) = KERNELS.lock() { for (name, kernel_enum, num_params) in standard_kernels { +<<<<<<< HEAD + let kernel_id = generate_id(); +======= // Use kernel enum + offset to avoid collision with graph IDs // Graph IDs use generate_id() starting at 1 // Kernel IDs use 0x10000 + kernel_enum to ensure they're unique let kernel_id = 0x10000 + kernel_enum as u64; +>>>>>>> origin/master let kernel = Arc::new(KernelData { id: kernel_id, context_id, @@ -339,7 +421,11 @@ fn register_standard_kernels(context_id: u32) { }); kernels.insert(kernel_id, kernel); +<<<<<<< HEAD + // Register kernel in REFERENCE_COUNTS and REFERENCE_TYPES +======= // Register kernel in REFERENCE_COUNTS and REFERENCE_TYPES using the offset ID +>>>>>>> origin/master if let Ok(mut counts) = REFERENCE_COUNTS.lock() { counts.insert(kernel_id as usize, AtomicUsize::new(1)); } @@ -406,12 +492,23 @@ pub extern "C" fn vxRetainReference(_ref_: vx_reference) -> vx_status { return VX_ERROR_INVALID_REFERENCE; } let addr = _ref_ as usize; +<<<<<<< HEAD +======= let id = _ref_ as u64; +>>>>>>> origin/master // Increment reference count in unified registry if let Ok(counts) = REFERENCE_COUNTS.lock() { if let Some(count) = counts.get(&addr) { count.fetch_add(1, std::sync::atomic::Ordering::SeqCst); +<<<<<<< HEAD + } else { + return VX_ERROR_INVALID_REFERENCE; + } + } + + VX_SUCCESS +======= return VX_SUCCESS; } } @@ -484,6 +581,7 @@ pub extern "C" fn vxRetainReference(_ref_: vx_reference) -> vx_status { } VX_ERROR_INVALID_REFERENCE +>>>>>>> origin/master } #[no_mangle] @@ -627,7 +725,10 @@ pub extern "C" fn vxCreateGraph(context: vx_context) -> vx_graph { id, context_id, nodes: Mutex::new(Vec::new()), +<<<<<<< HEAD +======= ref_count: std::sync::atomic::AtomicUsize::new(1), +>>>>>>> origin/master }); if let Ok(mut graphs) = GRAPHS.lock() { @@ -671,13 +772,42 @@ pub extern "C" fn vxReleaseGraph(graph: *mut vx_graph) -> vx_status { let id = g as u64; let addr = g as usize; +<<<<<<< HEAD + // Decrement reference count +======= // Decrement reference count first let mut should_remove = false; +>>>>>>> origin/master if let Ok(counts) = REFERENCE_COUNTS.lock() { if let Some(count) = counts.get(&addr) { let current = count.load(std::sync::atomic::Ordering::SeqCst); if current > 1 { +<<<<<<< HEAD + let new_count = current - 1; + count.store(new_count, std::sync::atomic::Ordering::SeqCst); + *graph = std::ptr::null_mut(); + return VX_SUCCESS; + } else { + drop(counts); + if let Ok(mut counts) = REFERENCE_COUNTS.lock() { + counts.remove(&addr); + } + if let Ok(mut types) = REFERENCE_TYPES.lock() { + types.remove(&addr); + } + } + } + } + + if let Ok(mut graphs) = GRAPHS.lock() { + graphs.remove(&id); + } + // Also remove from unified registry + if let Ok(mut graphs_data) = GRAPHS_DATA.lock() { + graphs_data.remove(&id); + } +======= count.store(current - 1, std::sync::atomic::Ordering::SeqCst); } else { should_remove = true; @@ -773,6 +903,7 @@ pub extern "C" fn vxReleaseGraph(graph: *mut vx_graph) -> vx_status { } } +>>>>>>> origin/master *graph = std::ptr::null_mut(); } VX_SUCCESS @@ -883,13 +1014,19 @@ pub extern "C" fn vxReleaseNode(node: *mut vx_node) -> vx_status { let id = n as u64; let mut count = 0; let num_params: usize; +<<<<<<< HEAD +======= let graph_id: u64; +>>>>>>> origin/master // Get node data and parameters if let Ok(nodes) = NODES.lock() { if let Some(node_data) = nodes.get(&id) { +<<<<<<< HEAD +======= graph_id = node_data.graph_id; +>>>>>>> origin/master count = node_data.ref_count.fetch_sub(1, std::sync::atomic::Ordering::SeqCst); if let Ok(params) = node_data.parameters.lock() { num_params = params.len(); @@ -897,6 +1034,39 @@ pub extern "C" fn vxReleaseNode(node: *mut vx_node) -> vx_status { num_params = 0; } } else { +<<<<<<< HEAD + num_params = 0; + } + } else { + num_params = 0; + } + + if count <= 1 { + // Last reference - clean up parameters first + for index in 0..num_params { + let param_id = (id << 32) | (index as u64); + // Remove parameter from unified registry + crate::unified_c_api::remove_parameter(param_id); + // Remove from reference tracking + if let Ok(mut counts) = REFERENCE_COUNTS.lock() { + counts.remove(&(param_id as usize)); + } + if let Ok(mut types) = REFERENCE_TYPES.lock() { + types.remove(&(param_id as usize)); + } + } + + // Remove from NODES and unified registries + if let Ok(mut nodes_mut) = NODES.lock() { + nodes_mut.remove(&id); + } + if let Ok(mut counts) = REFERENCE_COUNTS.lock() { + counts.remove(&(id as usize)); + } + if let Ok(mut types) = REFERENCE_TYPES.lock() { + types.remove(&(id as usize)); + } +======= // Node not found, might already be freed *node = std::ptr::null_mut(); return VX_SUCCESS; @@ -971,6 +1141,7 @@ pub extern "C" fn vxReleaseNode(node: *mut vx_node) -> vx_status { types.remove(&(id as usize)); } } +>>>>>>> origin/master } else { // Decrement unified reference count if let Ok(mut counts) = REFERENCE_COUNTS.lock() { @@ -996,7 +1167,11 @@ pub extern "C" fn vxRemoveNode(node: *mut vx_node) -> vx_status { } let id = n as u64; +<<<<<<< HEAD + // Remove from graph's node list +======= // Remove from graph's node list (c_api registry) +>>>>>>> origin/master if let Ok(nodes) = NODES.lock() { if let Some(node_data) = nodes.get(&id) { let graph_id = node_data.graph_id; @@ -1008,6 +1183,8 @@ pub extern "C" fn vxRemoveNode(node: *mut vx_node) -> vx_status { } } } +<<<<<<< HEAD +======= // Also remove from unified GRAPHS_DATA registry (where vxQueryGraph reads from) if let Ok(graphs_data) = crate::unified_c_api::GRAPHS_DATA.lock() { @@ -1017,6 +1194,7 @@ pub extern "C" fn vxRemoveNode(node: *mut vx_node) -> vx_status { } } } +>>>>>>> origin/master } } @@ -1126,6 +1304,8 @@ pub extern "C" fn vxCreateGenericNode(graph: vx_graph, kernel: vx_kernel) -> vx_ } } +<<<<<<< HEAD +======= // Increment ref count for the graph's ownership // When vxReleaseNode is called, it will decrement but not free // The graph will free the node when vxReleaseGraph is called @@ -1135,6 +1315,7 @@ pub extern "C" fn vxCreateGenericNode(graph: vx_graph, kernel: vx_kernel) -> vx_ } } +>>>>>>> origin/master ptr } @@ -1279,6 +1460,9 @@ pub extern "C" fn vxGetKernelByName(context: vx_context, name: *const vx_char) - if let Ok(kernels) = KERNELS.lock() { for (id, kernel) in kernels.iter() { if kernel.name == kernel_name && kernel.context_id == context_id { +<<<<<<< HEAD + kernel.ref_count.fetch_add(1, std::sync::atomic::Ordering::SeqCst); +======= // Increment both internal and unified reference counts kernel.ref_count.fetch_add(1, std::sync::atomic::Ordering::SeqCst); if let Ok(mut counts) = REFERENCE_COUNTS.lock() { @@ -1286,6 +1470,7 @@ pub extern "C" fn vxGetKernelByName(context: vx_context, name: *const vx_char) - count.fetch_add(1, std::sync::atomic::Ordering::SeqCst); } } +>>>>>>> origin/master return *id as *mut VxKernel; } } @@ -1298,6 +1483,10 @@ pub extern "C" fn vxGetKernelByName(context: vx_context, name: *const vx_char) - #[no_mangle] pub extern "C" fn vxGetKernelByEnum(context: vx_context, kernel_e: vx_enum) -> vx_kernel { +<<<<<<< HEAD + eprintln!("DEBUG vxGetKernelByEnum: context={:?}, kernel_e=0x{:x}={}", context, kernel_e, kernel_e); +======= +>>>>>>> origin/master if context.is_null() { return std::ptr::null_mut(); } @@ -1305,7 +1494,13 @@ pub extern "C" fn vxGetKernelByEnum(context: vx_context, kernel_e: vx_enum) -> v // Look up kernel by enum if let Ok(kernels) = KERNELS.lock() { +<<<<<<< HEAD + eprintln!("DEBUG vxGetKernelByEnum: {} kernels in registry", kernels.len()); for (id, kernel) in kernels.iter() { + eprintln!("DEBUG vxGetKernelByEnum: checking kernel 0x{:x} (enum=0x{:x}, ctx={})", id, kernel.kernel_enum, kernel.context_id); +======= + for (id, kernel) in kernels.iter() { +>>>>>>> origin/master if kernel.kernel_enum == kernel_e && kernel.context_id == context_id { kernel.ref_count.fetch_add(1, std::sync::atomic::Ordering::SeqCst); // Also increment reference count in unified registry @@ -1314,9 +1509,17 @@ pub extern "C" fn vxGetKernelByEnum(context: vx_context, kernel_e: vx_enum) -> v count.fetch_add(1, std::sync::atomic::Ordering::SeqCst); } } +<<<<<<< HEAD + eprintln!("DEBUG vxGetKernelByEnum: found kernel, returning id=0x{:x}", id); + return *id as *mut VxKernel; + } + } + eprintln!("DEBUG vxGetKernelByEnum: kernel not found, will create new one"); +======= return *id as *mut VxKernel; } } +>>>>>>> origin/master } // Kernel not found - create it @@ -1366,15 +1569,32 @@ pub extern "C" fn vxQueryKernel( ptr: *mut c_void, size: vx_size, ) -> vx_status { +<<<<<<< HEAD + eprintln!("DEBUG vxQueryKernel: kernel={:?}, attribute=0x{:x}={}", kernel, attribute, attribute); + if kernel.is_null() || ptr.is_null() { + eprintln!("DEBUG vxQueryKernel: null kernel or ptr"); +======= if kernel.is_null() || ptr.is_null() { +>>>>>>> origin/master return VX_ERROR_INVALID_REFERENCE; } unsafe { let id = kernel as u64; +<<<<<<< HEAD + eprintln!("DEBUG vxQueryKernel: id={}, VX_KERNEL_PARAMETERS=0x{:x}={}", id, VX_KERNEL_PARAMETERS, VX_KERNEL_PARAMETERS); + if let Ok(kernels) = KERNELS.lock() { + eprintln!("DEBUG vxQueryKernel: {} kernels registered", kernels.len()); + if let Some(kernel_data) = kernels.get(&id) { + eprintln!("DEBUG vxQueryKernel: found kernel_data: num_params={}, name={}, enum=0x{:x}", kernel_data.num_params, kernel_data.name, kernel_data.kernel_enum); + match attribute { + VX_KERNEL_PARAMETERS => { // VX_KERNEL_PARAMETERS + eprintln!("DEBUG vxQueryKernel: handling VX_KERNEL_PARAMETERS, size={}", size); +======= if let Ok(kernels) = KERNELS.lock() { if let Some(kernel_data) = kernels.get(&id) { match attribute { VX_KERNEL_PARAMETERS => { // VX_KERNEL_PARAMETERS +>>>>>>> origin/master if size >= 4 { let ptr_u8 = ptr as *mut u8; std::ptr::copy_nonoverlapping( @@ -1443,6 +1663,9 @@ pub extern "C" fn vxGetKernelParameterByIndex(kernel: vx_kernel, index: vx_uint3 }); if let Ok(mut params) = PARAMETERS.lock() { +<<<<<<< HEAD + params.insert(id, param); +======= params.insert(id, param.clone()); } @@ -1458,6 +1681,7 @@ pub extern "C" fn vxGetKernelParameterByIndex(kernel: vx_kernel, index: vx_uint3 value: Mutex::new(None), }); unified_params.insert(id, unified_param); +>>>>>>> origin/master } // Initialize reference count and type for the parameter @@ -1509,9 +1733,12 @@ pub extern "C" fn vxReleaseKernel(kernel: *mut vx_kernel) -> vx_status { if let Ok(mut types) = REFERENCE_TYPES.lock() { types.remove(&(id as usize)); } +<<<<<<< HEAD +======= if let Ok(mut names) = REFERENCE_NAMES.lock() { names.remove(&(id as usize)); } +>>>>>>> origin/master } else { // Just update reference count if let Ok(mut counts) = REFERENCE_COUNTS.lock() { @@ -1542,6 +1769,9 @@ pub extern "C" fn vxQueryParameter( unsafe { let id = param as u64; +<<<<<<< HEAD + // Use unified_c_api's PARAMETERS only +======= // First check local c_api PARAMETERS (where vxGetKernelParameterByIndex stores params) if let Ok(params) = PARAMETERS.lock() { if let Some(param_data) = params.get(&id) { @@ -1600,6 +1830,7 @@ pub extern "C" fn vxQueryParameter( } // Also check unified_c_api's PARAMETERS +>>>>>>> origin/master if let Ok(params) = crate::unified_c_api::PARAMETERS.lock() { if let Some(param_data) = params.get(&id) { match attribute { @@ -1656,7 +1887,10 @@ pub extern "C" fn vxQueryParameter( } } +<<<<<<< HEAD +======= +>>>>>>> origin/master // Also check unified_c_api's PARAMETERS via helper function if attribute == VX_PARAMETER_REF { if let Some(ref_value) = crate::unified_c_api::get_parameter_value(id) { @@ -1725,6 +1959,8 @@ pub extern "C" fn vxSetParameterByIndex( if let Ok(mut params) = node_data.parameters.lock() { if (index as usize) < params.len() { +<<<<<<< HEAD +======= // Retain the new value before storing it (if not null) if !value.is_null() { let value_addr = value as usize; @@ -1749,6 +1985,7 @@ pub extern "C" fn vxSetParameterByIndex( } } } +>>>>>>> origin/master params[index as usize] = Some(value as u64); drop(params); (cid, kid) @@ -1790,6 +2027,9 @@ pub extern "C" fn vxSetParameterByReference( return VX_ERROR_INVALID_PARAMETERS; } let id = param as u64; +<<<<<<< HEAD + // Use unified_c_api's PARAMETERS only +======= // Extract node_id and index from param_id // param_id = (node_id << 32) | index @@ -1797,10 +2037,18 @@ pub extern "C" fn vxSetParameterByReference( let index = (id & 0xFFFFFFFF) as u32; // Try unified_c_api::PARAMETERS first +>>>>>>> origin/master if let Ok(params) = crate::unified_c_api::PARAMETERS.lock() { if let Some(param_data) = params.get(&id) { if let Ok(mut val) = param_data.value.lock() { *val = Some(value as u64); +<<<<<<< HEAD + return VX_SUCCESS; + } + } + } + VX_ERROR_INVALID_REFERENCE +======= } } } @@ -1817,6 +2065,7 @@ pub extern "C" fn vxSetParameterByReference( } VX_SUCCESS +>>>>>>> origin/master } #[no_mangle] @@ -1832,6 +2081,17 @@ pub extern "C" fn vxReleaseParameter(param: *mut vx_parameter) -> vx_status { let id = p as u64; let addr = id as usize; +<<<<<<< HEAD + // Simple reference counting - decrement and remove if 0 + let mut should_remove = false; + if let Ok(counts) = REFERENCE_COUNTS.lock() { + if let Some(count) = counts.get(&addr) { + let current = count.load(std::sync::atomic::Ordering::SeqCst); + if current > 1 { + count.store(current - 1, std::sync::atomic::Ordering::SeqCst); + } else { + should_remove = true; +======= // Validate that this is a reasonable parameter ID if id == 0 || id > 0xFFFFFFFFFFFFFFFF { @@ -1847,10 +2107,20 @@ pub extern "C" fn vxReleaseParameter(param: *mut vx_parameter) -> vx_status { in_graph = true; break; } +>>>>>>> origin/master } } } +<<<<<<< HEAD + if should_remove { + // Remove from unified PARAMETERS only (remove_parameter handles types/counts) + crate::unified_c_api::remove_parameter(id); + } + + *param = std::ptr::null_mut(); + } +======= if in_graph { // Parameter is in a graph - just decrement ref count // DO NOT remove from graph - the graph owns the parameter @@ -1894,6 +2164,7 @@ pub extern "C" fn vxReleaseParameter(param: *mut vx_parameter) -> vx_status { } +>>>>>>> origin/master VX_SUCCESS } @@ -2117,7 +2388,10 @@ pub const VX_IMAGE_RANGE: vx_enum = 0x80F05; pub const VX_IMAGE_MEMORY_TYPE: vx_enum = 0x80F07; pub const VX_IMAGE_IS_UNIFORM: vx_enum = 0x80F08; pub const VX_IMAGE_UNIFORM_VALUE: vx_enum = 0x80F09; +<<<<<<< HEAD +======= pub const VX_IMAGE_IS_VIRTUAL: vx_enum = 0x80F0A; +>>>>>>> origin/master // ============================================================================ // Array Attributes diff --git a/openvx-core/src/c_api_data.rs b/openvx-core/src/c_api_data.rs index 34d641f..a8dcd5a 100644 --- a/openvx-core/src/c_api_data.rs +++ b/openvx-core/src/c_api_data.rs @@ -173,6 +173,17 @@ pub extern "C" fn vxReleaseScalar(scalar: *mut vx_scalar) -> vx_status { if !(*scalar).is_null() { let addr = *scalar as usize; +<<<<<<< HEAD + // Remove from reference counts and types + if let Ok(mut counts) = REFERENCE_COUNTS.lock() { + counts.remove(&addr); + } + if let Ok(mut types) = REFERENCE_TYPES.lock() { + types.remove(&addr); + } + + let _ = Box::from_raw(*scalar as *mut VxCScalarData); +======= // Check reference count before freeing let should_free = if let Ok(counts) = REFERENCE_COUNTS.lock() { if let Some(cnt) = counts.get(&addr) { @@ -205,6 +216,7 @@ pub extern "C" fn vxReleaseScalar(scalar: *mut vx_scalar) -> vx_status { let _ = Box::from_raw(*scalar as *mut VxCScalarData); } +>>>>>>> origin/master *scalar = std::ptr::null_mut(); } } @@ -1120,5 +1132,172 @@ pub extern "C" fn vxCopyThreshold( VX_SUCCESS } +<<<<<<< HEAD +// ============================================================================ +// Pyramid Implementation +// ============================================================================ + +/// Pyramid level structure +pub struct VxCPyramidLevel { + width: vx_uint32, + height: vx_uint32, + data: Vec, +} + +/// Pyramid structure for C API +pub struct VxCPyramidData { + levels: vx_size, + scale: vx_float32, + format: vx_df_image, + images: Vec, + context: vx_context, +} + +/// Create a pyramid +#[no_mangle] +pub extern "C" fn vxCreatePyramid( + context: vx_context, + levels: vx_size, + scale: vx_float32, + width: vx_uint32, + height: vx_uint32, + format: vx_df_image, +) -> vx_pyramid { + if context.is_null() { + return std::ptr::null_mut(); + } + if levels == 0 || width == 0 || height == 0 { + return std::ptr::null_mut(); + } + + let mut pyramid_images = Vec::with_capacity(levels); + let mut current_width = width; + let mut current_height = height; + + // Calculate bytes per pixel based on format + let bpp = match format { + VX_DF_IMAGE_U8 => 1, + VX_DF_IMAGE_U16 | VX_DF_IMAGE_S16 => 2, + VX_DF_IMAGE_RGB => 3, + VX_DF_IMAGE_RGBA | VX_DF_IMAGE_RGBX => 4, + _ => 1, + }; + + for _ in 0..levels { + let w = current_width as usize; + let h = current_height as usize; + let size = w + .checked_mul(h) + .and_then(|s| s.checked_mul(bpp)) + .unwrap_or(0); + if size == 0 { + break; + } + pyramid_images.push(VxCPyramidLevel { + width: current_width, + height: current_height, + data: vec![0u8; size], + }); + + // Calculate next level dimensions + current_width = (current_width as f32 * scale) as vx_uint32; + current_height = (current_height as f32 * scale) as vx_uint32; + if current_width == 0 || current_height == 0 { + break; + } + } + + let pyramid = Box::new(VxCPyramidData { + levels: pyramid_images.len(), + scale, + format, + images: pyramid_images, + context, + }); + + let pyramid_ptr = Box::into_raw(pyramid) as vx_pyramid; + + // Register in reference counting + unsafe { + if let Ok(mut counts) = REFERENCE_COUNTS.lock() { + counts.insert(pyramid_ptr as usize, AtomicUsize::new(1)); + } + if let Ok(mut types) = REFERENCE_TYPES.lock() { + types.insert(pyramid_ptr as usize, VX_TYPE_PYRAMID); + } + } + + pyramid_ptr +} + +/// Get pyramid level as image +#[no_mangle] +pub extern "C" fn vxGetPyramidLevel( + pyr: vx_pyramid, + index: vx_uint32, +) -> vx_image { + if pyr.is_null() { + return std::ptr::null_mut(); + } + + let p = unsafe { &*(pyr as *const VxCPyramidData) }; + if (index as usize) >= p.levels { + return std::ptr::null_mut(); + } + + // Create a simple image wrapper for the pyramid level + // In a full implementation, this would return a proper vx_image + // For now, return a pointer that represents the level + let level = &p.images[index as usize]; + let img_wrapper = Box::new(level.data.as_ptr() as usize); + Box::into_raw(img_wrapper) as vx_image +} + +/// Create a virtual pyramid (for graph intermediate results) +#[no_mangle] +pub extern "C" fn vxCreateVirtualPyramid( + graph: vx_graph, + levels: vx_size, + scale: vx_float32, + width: vx_uint32, + height: vx_uint32, + format: vx_df_image, +) -> vx_pyramid { + if graph.is_null() { + return std::ptr::null_mut(); + } + // Virtual pyramids are created like regular ones but associated with graph + // In a full implementation, memory would be allocated during graph execution + vxCreatePyramid(graph as vx_context, levels, scale, width, height, format) +} + +/// Release pyramid +#[no_mangle] +pub extern "C" fn vxReleasePyramid(pyr: *mut vx_pyramid) -> vx_status { + if pyr.is_null() { + return VX_ERROR_INVALID_REFERENCE; + } + + unsafe { + if !(*pyr).is_null() { + let addr = *pyr as usize; + + // Remove from reference counts and types + if let Ok(mut counts) = REFERENCE_COUNTS.lock() { + counts.remove(&addr); + } + if let Ok(mut types) = REFERENCE_TYPES.lock() { + types.remove(&addr); + } + + let _ = Box::from_raw(*pyr as *mut VxCPyramidData); + *pyr = std::ptr::null_mut(); + } + } + + VX_SUCCESS +} +======= // Pyramid functions (vxCreatePyramid, vxGetPyramidLevel, vxReleasePyramid, vxCreateVirtualPyramid) // are implemented in the openvx-image crate +>>>>>>> origin/master diff --git a/openvx-core/src/unified_c_api.rs b/openvx-core/src/unified_c_api.rs index fa0714d..f854272 100644 --- a/openvx-core/src/unified_c_api.rs +++ b/openvx-core/src/unified_c_api.rs @@ -13,7 +13,11 @@ use crate::c_api_data::vx_pixel_value_t; // Include the image C API functions directly // These are duplicated here to ensure proper symbol export use std::ffi::{CStr, CString, c_void}; +<<<<<<< HEAD +use std::sync::atomic::{AtomicUsize, Ordering}; +======= use std::sync::atomic::{AtomicBool, AtomicUsize, Ordering}; +>>>>>>> origin/master use std::sync::{Mutex, RwLock}; use std::collections::{HashMap, HashSet}; @@ -49,6 +53,8 @@ pub struct VxCContext { pub ref_count: AtomicUsize, /// Immediate border mode for VXU operations (vx_border_t) pub border_mode: RwLock, +<<<<<<< HEAD +======= /// Log callback function pub log_callback: Mutex>, /// Flag indicating if callback is reentrant @@ -57,6 +63,7 @@ pub struct VxCContext { pub logging_enabled: AtomicBool, /// Flag indicating if performance measurement is enabled pub performance_enabled: AtomicBool, +>>>>>>> origin/master } /// Border mode structure (vx_border_t from OpenVX spec) @@ -78,6 +85,13 @@ pub struct VxCImage { pub context: vx_context, pub data: Arc>>, /// Structure for tracking mapped patches +<<<<<<< HEAD + /// Fields: (map_id, patch_data, usage, offset, stride_y, plane_index) + pub mapped_patches: Arc, vx_enum, usize, usize, u32)>>>, + /// Optional parent image reference for sub-images (channel, ROI) + /// Stores the parent image pointer to keep parent alive while sub-image exists + pub parent: Option, // Store vx_image pointer as usize for Send + Sync +======= /// Fields: (map_id, patch_data, usage, offset, stride_y, plane_index, mapped_width) pub mapped_patches: Arc, vx_enum, usize, usize, u32, u32)>>>, /// Optional parent image reference for sub-images (channel, ROI) @@ -89,6 +103,7 @@ pub struct VxCImage { /// External memory pointers for from-handle images /// Stores the raw pointers passed by the caller for planar formats pub external_ptrs: Vec<*mut u8>, +>>>>>>> origin/master } impl VxCImage { @@ -126,7 +141,11 @@ impl VxCImage { /// Check if the format is a planar YUV format pub fn is_planar_format(format: u32) -> bool { matches!(format, 0x3231564E | 0x3132564E | 0x56555949 | 0x34555659 | 0x34565559) +<<<<<<< HEAD + // NV12 | NV21 | IYUV | YUV4 +======= // NV12 | NV21 | IYUV | YUV4 | YVU4 +>>>>>>> origin/master } /// Get the number of planes for a format @@ -134,7 +153,11 @@ impl VxCImage { match format { 0x3231564E | 0x3132564E => 2, // NV12, NV21: Y plane + interleaved UV plane 0x56555949 => 3, // IYUV: Y, U, V planes (I420) +<<<<<<< HEAD + 0x34555659 | 0x34565559 => 3, // YUV4: Y, U, V planes (4:4:4) +======= 0x34555659 | 0x34565559 => 3, // YUV4, YVU4: Y, U, V planes (4:4:4) +>>>>>>> origin/master _ => 1, // All other formats are single plane } } @@ -221,8 +244,13 @@ impl VxCImage { (0, 0) } } +<<<<<<< HEAD + // YUV4: All planes full size + 0x34555659 => { +======= // YUV4 and YVU4: All planes full size 0x34555659 | 0x34565559 => { +>>>>>>> origin/master if plane_index >= 1 && plane_index <= 3 { (width, height) } else { @@ -273,10 +301,17 @@ impl VxCImage { /// Array data pub struct VxCArray { +<<<<<<< HEAD + item_type: vx_enum, + capacity: usize, + items: RwLock>, + ref_count: AtomicUsize, +======= pub item_type: vx_enum, pub capacity: usize, pub items: RwLock>, pub ref_count: AtomicUsize, +>>>>>>> origin/master } /// Matrix data @@ -312,9 +347,12 @@ pub struct VxCDistribution { range: u32, data: RwLock>, ref_count: AtomicUsize, +<<<<<<< HEAD +======= /// Structure for tracking mapped distributions /// Fields: (map_id, mapped_data, usage) pub mapped_distributions: Arc, vx_enum)>>>, +>>>>>>> origin/master } /// Threshold data @@ -325,6 +363,12 @@ pub struct VxCThreshold { } /// Pyramid data +<<<<<<< HEAD +pub struct VxCPyramid { + levels: usize, + scale: f32, + ref_count: AtomicUsize, +======= /// A pyramid contains multiple levels of scaled images pub struct VxCPyramid { pub context: usize, // Store as usize for thread safety (Send + Sync) @@ -334,6 +378,7 @@ pub struct VxCPyramid { pub height: vx_uint32, pub format: vx_df_image, pub levels: Vec, // Store as usize for thread safety (Send + Sync) +>>>>>>> origin/master } /// Remap data @@ -401,6 +446,11 @@ pub struct VxCImport { /// Kernel data pub struct VxCKernel { +<<<<<<< HEAD + enumeration: vx_enum, + name: String, + ref_count: AtomicUsize, +======= pub enumeration: vx_enum, pub name: String, pub ref_count: AtomicUsize, @@ -414,6 +464,7 @@ impl VxCKernel { ref_count: AtomicUsize::new(1), } } +>>>>>>> origin/master } /// Target data @@ -432,8 +483,11 @@ pub struct VxCNode { /// Parameter data pub struct VxCParameter { +<<<<<<< HEAD +======= pub id: u64, pub node_id: u64, // 0 for graph parameters +>>>>>>> origin/master pub index: u32, pub direction: vx_enum, pub data_type: vx_enum, @@ -451,6 +505,8 @@ pub static PARAMETERS: Lazy>>> = Lazy::new( Mutex::new(HashMap::new()) }); +<<<<<<< HEAD +======= // Node parameter bindings: (node_id, param_index) -> (graph_param_index or direct_value) // This maps node parameters to either graph parameters or direct references pub static NODE_PARAMETER_BINDINGS: Lazy>> = Lazy::new(|| { @@ -466,6 +522,7 @@ pub enum NodeParamBinding { DirectValue(u64), } +>>>>>>> origin/master // Global graph storage use once_cell::sync::Lazy; use std::sync::Arc; @@ -474,11 +531,14 @@ pub static GRAPHS_DATA: Lazy>>> = Lazy::new Mutex::new(HashMap::new()) }); +<<<<<<< HEAD +======= /// Graph parameter bindings: (graph_id, param_index) -> reference_address pub static GRAPH_PARAMETER_BINDINGS: Lazy>> = Lazy::new(|| { Mutex::new(HashMap::new()) }); +>>>>>>> origin/master static NEXT_GRAPH_ID: Lazy = Lazy::new(|| { AtomicUsize::new(1) }); @@ -523,6 +583,8 @@ fn convert_graph_state_to_vx(state: VxGraphState) -> vx_enum { } } +<<<<<<< HEAD +======= /// Check if a reference is an image fn is_image_reference(ref_id: u64) -> bool { if let Ok(types) = REFERENCE_TYPES.lock() { @@ -692,6 +754,7 @@ fn allocate_virtual_image_storage( } } +>>>>>>> origin/master /// Verify graph - validates graph structure #[no_mangle] pub extern "C" fn vxVerifyGraph(graph: vx_graph) -> vx_status { @@ -705,6 +768,20 @@ pub extern "C" fn vxVerifyGraph(graph: vx_graph) -> vx_status { if let Some(g) = graphs.get(&graph_id) { let nodes = g.nodes.read().unwrap(); +<<<<<<< HEAD + // Check all nodes have required parameters + for node_id in nodes.iter() { + // Check parameter 0 (required) is set + if let Ok(nodes_data) = crate::c_api::NODES.lock() { + if let Some(node_data) = nodes_data.get(node_id) { + if let Ok(params) = node_data.parameters.lock() { + // Check if parameter 0 is set (required input) + if params.len() > 0 { + if params[0].is_none() { + return VX_ERROR_INVALID_PARAMETERS; + } + } +======= // Collect all parameter references to analyze connections let mut node_params: Vec<(u64, Vec>)> = Vec::new(); for node_id in nodes.iter() { @@ -864,6 +941,7 @@ pub extern "C" fn vxVerifyGraph(graph: vx_graph) -> vx_status { if let Err(_) = allocate_virtual_image_storage(*param_ref, width, height, format) { return VX_ERROR_NO_MEMORY; } +>>>>>>> origin/master } } } @@ -878,6 +956,11 @@ pub extern "C" fn vxVerifyGraph(graph: vx_graph) -> vx_status { } return VX_SUCCESS; +<<<<<<< HEAD + } + } + +======= } else { eprintln!("ERROR: vxVerifyGraph: graph not found in GRAPHS_DATA"); } @@ -886,21 +969,90 @@ pub extern "C" fn vxVerifyGraph(graph: vx_graph) -> vx_status { } eprintln!("ERROR: vxVerifyGraph: returning INVALID_GRAPH"); +>>>>>>> origin/master VX_ERROR_INVALID_GRAPH } /// Process graph - execute nodes in topological order #[no_mangle] pub extern "C" fn vxProcessGraph(graph: vx_graph) -> vx_status { +<<<<<<< HEAD + if graph.is_null() { +======= // Null check for graph pointer if graph.is_null() { eprintln!("ERROR: vxProcessGraph: graph is NULL"); +>>>>>>> origin/master return VX_ERROR_INVALID_REFERENCE; } let graph_id = graph as u64; +<<<<<<< HEAD + if let Ok(graphs) = GRAPHS_DATA.lock() { + if let Some(g) = graphs.get(&graph_id) { + // Check if verified + let verified = g.verified.lock().unwrap(); + if !*verified { + return VX_ERROR_INVALID_GRAPH; + } + drop(verified); + + // Set state to running + if let Ok(mut state) = g.state.lock() { + *state = VxGraphState::VxGraphStateRunning; + } + + // Get nodes and execute them + let nodes = g.nodes.read().unwrap(); + + // Execute each node in order + for node_id in nodes.iter() { + if let Some(status) = execute_node(*node_id) { + if status != VX_SUCCESS { + // Mark as abandoned on failure + if let Ok(mut state) = g.state.lock() { + *state = VxGraphState::VxGraphStateAbandoned; + } + return status; + } + } else { + // Node not found - mark as abandoned + if let Ok(mut state) = g.state.lock() { + *state = VxGraphState::VxGraphStateAbandoned; + } + return VX_ERROR_INVALID_NODE; + } + } + + // Mark as completed + if let Ok(mut state) = g.state.lock() { + *state = VxGraphState::VxGraphStateCompleted; + } + + // Auto-age any registered delays + auto_age_delays(graph_id); + + return VX_SUCCESS; + } + } + + VX_ERROR_INVALID_GRAPH +} + +/// Execute a single node by looking up its kernel and parameters +fn execute_node(node_id: u64) -> Option { + // Debug logging removed + // Get node data including border mode + let (kernel_id, param_ids, node_border) = { + if let Ok(nodes) = crate::c_api::NODES.lock() { + if let Some(node_data) = nodes.get(&node_id) { + let params = node_data.parameters.lock().ok()?; + let param_refs: Vec> = params.iter().cloned().collect(); + let border = node_data.border_mode.lock().ok()?; + (node_data.kernel_id, param_refs, *border) +======= // Validate graph_id is valid if graph_id == 0 { eprintln!("ERROR: vxProcessGraph: graph_id is 0 (invalid)"); @@ -1044,12 +1196,17 @@ fn resolve_graph_parameter(graph_id: u64, graph_param_index: usize) -> Option>>>>>> origin/master } else { return None; } } else { return None; } +<<<<<<< HEAD + }; + +======= } else { return None; }; @@ -1128,6 +1285,7 @@ fn execute_node(node_id: u64) -> Option { return Some(VX_ERROR_INVALID_KERNEL); } +>>>>>>> origin/master // Get kernel name let kernel_name = { if let Ok(kernels) = crate::c_api::KERNELS.lock() { @@ -1140,7 +1298,10 @@ fn execute_node(node_id: u64) -> Option { if let Some(kernel) = unified_kernels.get(&kernel_id) { kernel.name.clone() } else { +<<<<<<< HEAD +======= eprintln!("ERROR: execute_node: kernel {} not found for node {}", kernel_id, node_id); +>>>>>>> origin/master return Some(VX_ERROR_INVALID_KERNEL); } } else { @@ -1152,6 +1313,15 @@ fn execute_node(node_id: u64) -> Option { } }; +<<<<<<< HEAD + // Get actual parameter references (convert u64 to vx_reference) + let mut params: Vec = Vec::new(); + for param_id_opt in param_ids.iter() { + if let Some(param_id) = param_id_opt { + params.push(*param_id as vx_reference); + } else { + params.push(std::ptr::null_mut()); +======= // Validate kernel_name is not empty if kernel_name.is_empty() { eprintln!("ERROR: execute_node: kernel name is empty for node {}", node_id); @@ -1208,6 +1378,7 @@ fn execute_node(node_id: u64) -> Option { eprintln!("ERROR: execute_node: param[{}] = null and no graph binding for node {}", idx, node_id); params.push(std::ptr::null_mut()); } +>>>>>>> origin/master } } @@ -1224,12 +1395,15 @@ fn dispatch_kernel_with_border(kernel_name: &str, params: &[vx_reference], borde if params.len() >= 2 { let input = params[0] as vx_image; let output = params[1] as vx_image; +<<<<<<< HEAD +======= // Validate images before processing let status = validate_image(input); if status != VX_SUCCESS { return status; } let status = validate_image(output); if status != VX_SUCCESS { return status; } +>>>>>>> origin/master if !input.is_null() && !output.is_null() { crate::vxu_impl::vxu_box3x3_impl_with_border( unsafe { crate::c_api::vxGetContext(input as vx_reference) }, @@ -1249,12 +1423,15 @@ fn dispatch_kernel_with_border(kernel_name: &str, params: &[vx_reference], borde if params.len() >= 2 { let input = params[0] as vx_image; let output = params[1] as vx_image; +<<<<<<< HEAD +======= // Validate images before processing let status = validate_image(input); if status != VX_SUCCESS { return status; } let status = validate_image(output); if status != VX_SUCCESS { return status; } +>>>>>>> origin/master if !input.is_null() && !output.is_null() { crate::vxu_impl::vxu_median3x3_impl_with_border( unsafe { crate::c_api::vxGetContext(input as vx_reference) }, @@ -1274,12 +1451,15 @@ fn dispatch_kernel_with_border(kernel_name: &str, params: &[vx_reference], borde if params.len() >= 2 { let input = params[0] as vx_image; let output = params[1] as vx_image; +<<<<<<< HEAD +======= // Validate images before processing let status = validate_image(input); if status != VX_SUCCESS { return status; } let status = validate_image(output); if status != VX_SUCCESS { return status; } +>>>>>>> origin/master if !input.is_null() && !output.is_null() { crate::vxu_impl::vxu_gaussian3x3_impl_with_border( unsafe { crate::c_api::vxGetContext(input as vx_reference) }, @@ -1299,12 +1479,15 @@ fn dispatch_kernel_with_border(kernel_name: &str, params: &[vx_reference], borde if params.len() >= 2 { let input = params[0] as vx_image; let output = params[1] as vx_image; +<<<<<<< HEAD +======= // Validate images before processing let status = validate_image(input); if status != VX_SUCCESS { return status; } let status = validate_image(output); if status != VX_SUCCESS { return status; } +>>>>>>> origin/master if !input.is_null() && !output.is_null() { crate::vxu_impl::vxu_gaussian5x5_impl_with_border( unsafe { crate::c_api::vxGetContext(input as vx_reference) }, @@ -1324,12 +1507,15 @@ fn dispatch_kernel_with_border(kernel_name: &str, params: &[vx_reference], borde if params.len() >= 2 { let input = params[0] as vx_image; let output = params[1] as vx_image; +<<<<<<< HEAD +======= // Validate images before processing let status = validate_image(input); if status != VX_SUCCESS { return status; } let status = validate_image(output); if status != VX_SUCCESS { return status; } +>>>>>>> origin/master if !input.is_null() && !output.is_null() { crate::vxu_impl::vxu_dilate3x3_impl_with_border( unsafe { crate::c_api::vxGetContext(input as vx_reference) }, @@ -1349,12 +1535,15 @@ fn dispatch_kernel_with_border(kernel_name: &str, params: &[vx_reference], borde if params.len() >= 2 { let input = params[0] as vx_image; let output = params[1] as vx_image; +<<<<<<< HEAD +======= // Validate images before processing let status = validate_image(input); if status != VX_SUCCESS { return status; } let status = validate_image(output); if status != VX_SUCCESS { return status; } +>>>>>>> origin/master if !input.is_null() && !output.is_null() { crate::vxu_impl::vxu_erode3x3_impl_with_border( unsafe { crate::c_api::vxGetContext(input as vx_reference) }, @@ -1374,12 +1563,15 @@ fn dispatch_kernel_with_border(kernel_name: &str, params: &[vx_reference], borde if params.len() >= 2 { let input = params[0] as vx_image; let output = params[1] as vx_image; +<<<<<<< HEAD +======= // Validate images before processing let status = validate_image(input); if status != VX_SUCCESS { return status; } let status = validate_image(output); if status != VX_SUCCESS { return status; } +>>>>>>> origin/master if !input.is_null() && !output.is_null() { crate::vxu_impl::vxu_color_convert_impl( unsafe { crate::c_api::vxGetContext(input as vx_reference) }, @@ -1399,12 +1591,15 @@ fn dispatch_kernel_with_border(kernel_name: &str, params: &[vx_reference], borde let input = params[0] as vx_image; let matrix = params[1] as vx_matrix; let output = params[3] as vx_image; +<<<<<<< HEAD +======= // Validate images before processing let status = validate_image(input); if status != VX_SUCCESS { return status; } let status = validate_image(output); if status != VX_SUCCESS { return status; } +>>>>>>> origin/master if !input.is_null() && !matrix.is_null() && !output.is_null() { crate::vxu_impl::vxu_warp_perspective_impl( unsafe { crate::c_api::vxGetContext(input as vx_reference) }, @@ -1426,12 +1621,15 @@ fn dispatch_kernel_with_border(kernel_name: &str, params: &[vx_reference], borde let input = params[0] as vx_image; let thresh = params[1] as vx_threshold; let output = params[2] as vx_image; +<<<<<<< HEAD +======= // Validate images before processing let status = validate_image(input); if status != VX_SUCCESS { return status; } let status = validate_image(output); if status != VX_SUCCESS { return status; } +>>>>>>> origin/master if !input.is_null() && !thresh.is_null() && !output.is_null() { crate::vxu_impl::vxu_threshold_impl( unsafe { crate::c_api::vxGetContext(input as vx_reference) }, @@ -1446,6 +1644,8 @@ fn dispatch_kernel_with_border(kernel_name: &str, params: &[vx_reference], borde VX_ERROR_INVALID_PARAMETERS } } +<<<<<<< HEAD +======= // Integral Image "org.khronos.openvx.integral_image" => { if params.len() >= 2 { @@ -2131,6 +2331,7 @@ fn dispatch_kernel_with_border(kernel_name: &str, params: &[vx_reference], borde VX_ERROR_INVALID_PARAMETERS } } +>>>>>>> origin/master // Unknown kernel _ => { // For now, return success for unimplemented kernels @@ -2333,13 +2534,18 @@ pub extern "C" fn vxReplicateNode( // Context attribute constants (calculated using VX_ATTRIBUTE_BASE(VX_ID_KHRONOS, VX_TYPE_CONTEXT) + offset) // VX_ATTRIBUTE_BASE(0x000, 0x801) = 0x00080100 +<<<<<<< HEAD +======= pub const VX_CONTEXT_ATTRIBUTE_VENDOR_ID: vx_enum = 0x00080100; // +0x0 pub const VX_CONTEXT_ATTRIBUTE_VERSION: vx_enum = 0x00080101; // +0x1 +>>>>>>> origin/master pub const VX_CONTEXT_ATTRIBUTE_UNIQUE_KERNELS: vx_enum = 0x00080102; // +0x2 pub const VX_CONTEXT_ATTRIBUTE_MODULES: vx_enum = 0x00080103; // +0x3 pub const VX_CONTEXT_ATTRIBUTE_REFERENCES: vx_enum = 0x00080104; // +0x4 pub const VX_CONTEXT_ATTRIBUTE_USER_MEMORY: vx_enum = 0x00080105; // +0x5 pub const VX_CONTEXT_ATTRIBUTE_IMPLEMENTATION: vx_enum = 0x00080106; // +0x6 +<<<<<<< HEAD +======= pub const VX_CONTEXT_ATTRIBUTE_EXTENSIONS_SIZE: vx_enum = 0x00080107; // +0x7 pub const VX_CONTEXT_ATTRIBUTE_EXTENSIONS: vx_enum = 0x00080108; // +0x8 pub const VX_CONTEXT_ATTRIBUTE_USER_MEMORY_FREE: vx_enum = 0x00080109; // +0x9 (callback for user memory deallocation) @@ -2351,6 +2557,7 @@ pub const VX_VERSION_1_3: vx_uint32 = 0x00130000; // VX_VERSION(1, 3) // Vendor ID - using Khronos as the vendor pub const VX_ID_KHRONOS: vx_uint32 = 0x00000000; +>>>>>>> origin/master /// Query context attributes #[no_mangle] @@ -2369,6 +2576,8 @@ pub extern "C" fn vxQueryContext( unsafe { match attribute { +<<<<<<< HEAD +======= VX_CONTEXT_ATTRIBUTE_VENDOR_ID => { // vx_uint32 is expected per spec if size == std::mem::size_of::() { @@ -2389,6 +2598,7 @@ pub extern "C" fn vxQueryContext( VX_ERROR_INVALID_PARAMETERS } } +>>>>>>> origin/master VX_CONTEXT_ATTRIBUTE_UNIQUE_KERNELS => { // vx_uint32 is expected per spec if size == std::mem::size_of::() { @@ -2433,8 +2643,13 @@ pub extern "C" fn vxQueryContext( let context_id = context as u64; let mut count = 0u32; let mut counted_ids = std::collections::HashSet::new(); +<<<<<<< HEAD + + // Count graphs for this context in unified registry +======= // Count graphs for this context +>>>>>>> origin/master if let Ok(graphs) = GRAPHS_DATA.lock() { for (id, graph) in graphs.iter() { if graph.context_id == context_id { @@ -2443,16 +2658,34 @@ pub extern "C" fn vxQueryContext( } } } +<<<<<<< HEAD + +======= +>>>>>>> origin/master // Count graphs in c_api registry (avoid duplicates) if let Ok(c_api_graphs) = crate::c_api::GRAPHS.lock() { for (id, graph) in c_api_graphs.iter() { if graph.context_id == context_id as u32 && !counted_ids.contains(id) { +<<<<<<< HEAD +======= counted_ids.insert(*id); +>>>>>>> origin/master count += 1; } } } +<<<<<<< HEAD + + // Count all references in REFERENCE_COUNTS for this context + // Since REFERENCE_COUNTS uses address as key, we need to iterate + // through all registries to count per-context objects + // For now, just count total references as a baseline + if let Ok(counts) = REFERENCE_COUNTS.lock() { + count = counts.len() as vx_uint32; + } + +======= // Count nodes for this context's graphs if let Ok(nodes) = crate::c_api::NODES.lock() { @@ -2477,12 +2710,15 @@ pub extern "C" fn vxQueryContext( // NOTE: We don't count images here because they don't have context_id // and the test framework handles image reference counting separately +>>>>>>> origin/master *(ptr as *mut vx_uint32) = count; VX_SUCCESS } else { VX_ERROR_INVALID_PARAMETERS } } +<<<<<<< HEAD +======= VX_CONTEXT_ATTRIBUTE_IMPLEMENTATION => { // vx_char array is expected per spec if size >= 1 { @@ -2521,6 +2757,7 @@ pub extern "C" fn vxQueryContext( VX_ERROR_INVALID_PARAMETERS } } +>>>>>>> origin/master _ => VX_ERROR_NOT_IMPLEMENTED, } } @@ -2621,10 +2858,13 @@ pub fn register_context(id: u64, ptr: *mut VxContext) { mode: VX_BORDER_UNDEFINED, constant_value: vx_pixel_value_t { U32: 0 }, }), +<<<<<<< HEAD +======= log_callback: Mutex::new(None), log_reentrant: AtomicBool::new(false), logging_enabled: AtomicBool::new(false), performance_enabled: AtomicBool::new(false), +>>>>>>> origin/master })); } } @@ -2667,12 +2907,15 @@ pub fn remove_parameter(param_id: u64) { if let Ok(mut types) = REFERENCE_TYPES.lock() { types.remove(&(param_id as usize)); } +<<<<<<< HEAD +======= if let Ok(mut counts) = REFERENCE_COUNTS.lock() { counts.remove(&(param_id as usize)); } if let Ok(mut names) = REFERENCE_NAMES.lock() { names.remove(&(param_id as usize)); } +>>>>>>> origin/master } /// Helper function to create or update a parameter in the unified registry @@ -2700,8 +2943,11 @@ pub fn create_or_update_parameter( drop(params); if let Ok(mut params_mut) = PARAMETERS.lock() { let param = Arc::new(VxCParameter { +<<<<<<< HEAD +======= id: param_id, node_id: 0, // Created via vxSetParameterByIndex, no associated node +>>>>>>> origin/master index, direction: VX_INPUT, data_type: 0, @@ -2844,7 +3090,11 @@ static TARGETS: Lazy>>> = Lazy::new(|| { }); // Reference name storage - use CString to ensure null-terminated strings with stable pointers +<<<<<<< HEAD +static REFERENCE_NAMES: Lazy>> = Lazy::new(|| { +======= pub static REFERENCE_NAMES: Lazy>> = Lazy::new(|| { +>>>>>>> origin/master Mutex::new(HashMap::new()) }); @@ -3142,7 +3392,11 @@ pub extern "C" fn vxQueryReference( } /// Release reference (decrement reference count) +<<<<<<< HEAD +/// Returns VX_SUCCESS +======= /// Returns VX_SUCCESS or error code +>>>>>>> origin/master #[no_mangle] pub extern "C" fn vxReleaseReference(ref_: *mut vx_reference) -> vx_status { if ref_.is_null() { @@ -3151,6 +3405,70 @@ pub extern "C" fn vxReleaseReference(ref_: *mut vx_reference) -> vx_status { unsafe { let inner_ref = *ref_; +<<<<<<< HEAD + if !inner_ref.is_null() { + let addr = inner_ref as usize; + let mut ref_count_was = 0; + + // Decrement reference count in unified registry + if let Ok(counts) = REFERENCE_COUNTS.lock() { + if let Some(count) = counts.get(&addr) { + let current = count.load(std::sync::atomic::Ordering::SeqCst); + if current > 1 { + count.store(current - 1, std::sync::atomic::Ordering::SeqCst); + ref_count_was = current - 1; + } else { + ref_count_was = 0; + } + } + } + + // Also decrement internal ref_count based on object type + let addr_u64 = addr as u64; + // Try kernel + if let Ok(kernels) = crate::c_api::KERNELS.lock() { + if let Some(k) = kernels.get(&addr_u64) { + k.ref_count.fetch_sub(1, std::sync::atomic::Ordering::SeqCst); + drop(kernels); + } + } + // Try parameter + if let Ok(params) = crate::c_api::PARAMETERS.lock() { + if let Some(p) = params.get(&addr_u64) { + p.ref_count.fetch_sub(1, std::sync::atomic::Ordering::SeqCst); + drop(params); + } + } + // Try node + if let Ok(nodes) = crate::c_api::NODES.lock() { + if let Some(n) = nodes.get(&addr_u64) { + n.ref_count.fetch_sub(1, std::sync::atomic::Ordering::SeqCst); + drop(nodes); + } + } + + // Clean up unified registry if count reached zero + if ref_count_was == 0 { + if let Ok(mut counts) = REFERENCE_COUNTS.lock() { + counts.remove(&addr); + } + if let Ok(mut names) = REFERENCE_NAMES.lock() { + names.remove(&addr); + } + if let Ok(mut types) = REFERENCE_TYPES.lock() { + types.remove(&addr); + } + } + + // Always set the caller's pointer to null + *ref_ = std::ptr::null_mut(); + + return VX_SUCCESS; + } + } + + VX_SUCCESS +======= if inner_ref.is_null() { return VX_ERROR_INVALID_REFERENCE; } @@ -3227,6 +3545,7 @@ pub extern "C" fn vxReleaseReference(ref_: *mut vx_reference) -> vx_status { return VX_SUCCESS; } +>>>>>>> origin/master } /// Set reference name for debugging @@ -3923,6 +4242,14 @@ pub const VX_MATRIX_PATTERN_GAUSSIAN: vx_enum = 2; pub const VX_MATRIX_PATTERN_CUSTOM: vx_enum = 3; pub const VX_MATRIX_PATTERN_PYRAMID_SCALE: vx_enum = 4; +<<<<<<< HEAD +// Pyramid attributes +pub const VX_PYRAMID_LEVELS: vx_enum = 0x00; +pub const VX_PYRAMID_SCALE: vx_enum = 0x01; +pub const VX_PYRAMID_FORMAT: vx_enum = 0x02; +pub const VX_PYRAMID_WIDTH: vx_enum = 0x03; +pub const VX_PYRAMID_HEIGHT: vx_enum = 0x04; +======= // Pyramid attributes - calculated using VX_ATTRIBUTE_BASE(VX_ID_KHRONOS, VX_TYPE_PYRAMID) + offset // VX_ATTRIBUTE_BASE(0x000, 0x809) = 0x00080900 pub const VX_PYRAMID_LEVELS: vx_enum = 0x00080900; @@ -3930,6 +4257,7 @@ pub const VX_PYRAMID_SCALE: vx_enum = 0x00080901; pub const VX_PYRAMID_FORMAT: vx_enum = 0x00080902; pub const VX_PYRAMID_WIDTH: vx_enum = 0x00080903; pub const VX_PYRAMID_HEIGHT: vx_enum = 0x00080904; +>>>>>>> origin/master // Matrix attributes pub const VX_MATRIX_TYPE: vx_enum = 0x00; @@ -4019,6 +4347,53 @@ pub const VX_KERNEL_LOCAL_DATA_PTR: vx_enum = 0x04; pub const VX_KERNEL_ATTRIBUTE_BORDER: vx_enum = 0x05; // Kernel enum constants aligned with OpenVX 1.3 spec +<<<<<<< HEAD +pub const VX_KERNEL_COLOR_CONVERT: vx_enum = 0x00; +pub const VX_KERNEL_CHANNEL_EXTRACT: vx_enum = 0x01; +pub const VX_KERNEL_CHANNEL_COMBINE: vx_enum = 0x02; +pub const VX_KERNEL_SOBEL_3x3: vx_enum = 0x03; +pub const VX_KERNEL_MAGNITUDE: vx_enum = 0x04; +pub const VX_KERNEL_PHASE: vx_enum = 0x05; +pub const VX_KERNEL_SCALE_IMAGE: vx_enum = 0x06; +pub const VX_KERNEL_WARP_AFFINE: vx_enum = 0x07; +pub const VX_KERNEL_WARP_PERSPECTIVE: vx_enum = 0x08; +pub const VX_KERNEL_ADD: vx_enum = 0x09; +pub const VX_KERNEL_SUBTRACT: vx_enum = 0x0A; +pub const VX_KERNEL_MULTIPLY: vx_enum = 0x0B; +pub const VX_KERNEL_WEIGHTED_AVERAGE: vx_enum = 0x0C; +pub const VX_KERNEL_CONVOLVE: vx_enum = 0x0D; +pub const VX_KERNEL_GAUSSIAN_3x3: vx_enum = 0x0E; +pub const VX_KERNEL_MEDIAN_3x3: vx_enum = 0x0F; +pub const VX_KERNEL_SOBEL_5x5: vx_enum = 0x10; +pub const VX_KERNEL_BOX_3x3: vx_enum = 0x12; // Per OpenVX spec: VX_KERNEL_BASE + 0x12 +pub const VX_KERNEL_GAUSSIAN_5x5: vx_enum = 0x13; +pub const VX_KERNEL_HARRIS_CORNERS: vx_enum = 0x14; +pub const VX_KERNEL_FAST_CORNERS: vx_enum = 0x15; +pub const VX_KERNEL_OPTICAL_FLOW_PYR_LK: vx_enum = 0x16; +pub const VX_KERNEL_LAPLACIAN: vx_enum = 0x17; +pub const VX_KERNEL_NON_LINEAR_FILTER: vx_enum = 0x18; +pub const VX_KERNEL_DILATE_3x3: vx_enum = 0x19; +pub const VX_KERNEL_ERODE_3x3: vx_enum = 0x1A; +pub const VX_KERNEL_MEDIAN_3x3_ALT: vx_enum = 0x1B; // 0x1B +pub const VX_KERNEL_HISTOGRAM: vx_enum = 0x1C; +pub const VX_KERNEL_EQUALIZE_HISTOGRAM: vx_enum = 0x1D; +pub const VX_KERNEL_INTEGRAL_IMAGE: vx_enum = 0x1E; +pub const VX_KERNEL_MEAN_STDDEV: vx_enum = 0x1F; +pub const VX_KERNEL_MINMAXLOC: vx_enum = 0x20; +pub const VX_KERNEL_ABSDIFF: vx_enum = 0x21; +pub const VX_KERNEL_MEAN_SHIFT: vx_enum = 0x22; +pub const VX_KERNEL_THRESHOLD: vx_enum = 0x23; +pub const VX_KERNEL_INTEGRAL_IMAGE_SQ: vx_enum = 0x24; +pub const VX_KERNEL_DILATE_5x5: vx_enum = 0x25; +pub const VX_KERNEL_ERODE_5x5: vx_enum = 0x26; +pub const VX_KERNEL_GAUSSIAN_PYRAMID: vx_enum = 0x27; +pub const VX_KERNEL_LAPLACIAN_PYRAMID: vx_enum = 0x28; +pub const VX_KERNEL_LAPLACIAN_RECONSTRUCT: vx_enum = 0x29; +pub const VX_KERNEL_REMAP: vx_enum = 0x2A; +pub const VX_KERNEL_CORNER_MIN_EIGEN_VAL: vx_enum = 0x2B; +pub const VX_KERNEL_HOUGH_LINES_P: vx_enum = 0x2C; +pub const VX_KERNEL_CANNY_EDGE_DETECTOR: vx_enum = 0x2D; +======= // Per OpenVX spec: VX_KERNEL_ = VX_KERNEL_BASE(VX_ID_KHRONOS, VX_LIBRARY_KHR_BASE) + offset // Since VX_ID_KHRONOS=0x000 and VX_LIBRARY_KHR_BASE=0x0, the base is 0x00000000 // Kernel enums start at 0x1 (not 0x0). @@ -4064,6 +4439,7 @@ pub const VX_KERNEL_LAPLACIAN_PYRAMID: vx_enum = 0x2A; pub const VX_KERNEL_LAPLACIAN_RECONSTRUCT: vx_enum = 0x2B; pub const VX_KERNEL_NON_LINEAR_FILTER: vx_enum = 0x2C; pub const VX_KERNEL_WEIGHTED_AVERAGE: vx_enum = 0x40; +>>>>>>> origin/master // ============================================================================ // Extended API Functions @@ -4107,8 +4483,23 @@ pub const VX_DF_IMAGE_YUYV: vx_enum = 0x56595559i32; // 'YUYV' // Per OpenVX spec, it takes (image, channel) - context is extracted from image // It is re-exported from openvx-image crate and should not be declared here +<<<<<<< HEAD +#[no_mangle] +pub extern "C" fn vxQueryPyramid( + pyr: vx_pyramid, + attribute: i32, + ptr: *mut c_void, + size: usize, +) -> i32 { + if pyr.is_null() || ptr.is_null() { + return -2; + } + -30 +} +======= // Note: vxCreatePyramid, vxReleasePyramid, vxGetPyramidLevel, and vxQueryPyramid // are implemented in the openvx-image crate and should not be redeclared here +>>>>>>> origin/master #[no_mangle] pub extern "C" fn vxCopyPyramid( @@ -4259,7 +4650,10 @@ pub extern "C" fn vxCreateDistribution( range, data: RwLock::new(vec![0u32; bins]), ref_count: AtomicUsize::new(1), +<<<<<<< HEAD +======= mapped_distributions: Arc::new(RwLock::new(Vec::new())), +>>>>>>> origin/master }); let dist_ptr = Box::into_raw(distribution) as vx_distribution; @@ -4279,7 +4673,10 @@ pub extern "C" fn vxCreateDistribution( range, data: RwLock::new(vec![0u32; bins]), ref_count: AtomicUsize::new(1), +<<<<<<< HEAD +======= mapped_distributions: Arc::new(RwLock::new(Vec::new())), +>>>>>>> origin/master })); } } @@ -4339,6 +4736,8 @@ pub extern "C" fn vxCopyDistribution( 0 } +<<<<<<< HEAD +======= /// Map distribution for CPU access #[no_mangle] pub extern "C" fn vxMapDistribution( @@ -4427,6 +4826,7 @@ pub extern "C" fn vxUnmapDistribution( VX_ERROR_INVALID_REFERENCE } +>>>>>>> origin/master #[no_mangle] pub extern "C" fn vxReleaseDistribution(distribution: *mut vx_distribution) -> i32 { if distribution.is_null() { @@ -4825,6 +5225,13 @@ pub extern "C" fn vxReleaseTensor(tensor: *mut vx_tensor) -> i32 { pub extern "C" fn vxAddParameterToGraph( graph: vx_graph, parameter: vx_parameter, +<<<<<<< HEAD +) -> vx_graph_parameter { + if graph.is_null() || parameter.is_null() { + return std::ptr::null_mut(); + } + parameter as vx_graph_parameter +======= ) -> vx_status { if graph.is_null() { return VX_ERROR_INVALID_REFERENCE; @@ -4889,6 +5296,7 @@ pub extern "C" fn vxAddParameterToGraph( } VX_SUCCESS +>>>>>>> origin/master } #[no_mangle] @@ -7403,6 +7811,8 @@ pub extern "C" fn vxGetParameterByIndex(node: vx_node, index: vx_uint32) -> vx_p counts.entry(param_id as usize).or_insert(AtomicUsize::new(1)); } +<<<<<<< HEAD +======= // Also create an entry in PARAMETERS registry for vxQueryParameter to find // Check if this parameter already exists in the registry let param_exists = if let Ok(params) = PARAMETERS.lock() { @@ -7434,6 +7844,7 @@ pub extern "C" fn vxGetParameterByIndex(node: vx_node, index: vx_uint32) -> vx_p } } +>>>>>>> origin/master param_id as vx_parameter } @@ -7522,6 +7933,12 @@ pub extern "C" fn vxuOpticalFlowPyrLK( use_initial_estimate: vx_bool, window_dimension: vx_size, ) -> vx_status { +<<<<<<< HEAD + if context.is_null() { + return VX_ERROR_INVALID_REFERENCE; + } + VX_SUCCESS +======= use crate::vxu_impl::vxu_optical_flow_pyr_lk_impl; vxu_optical_flow_pyr_lk_impl( context, @@ -7536,6 +7953,7 @@ pub extern "C" fn vxuOpticalFlowPyrLK( use_initial_estimate, window_dimension, ) +>>>>>>> origin/master } // ============================================================================ @@ -7692,7 +8110,10 @@ pub extern "C" fn vxCreateMatrixFromPatternAndOrigin(context: vx_context, patter // ============================================================================ /// Set graph parameter by index +<<<<<<< HEAD +======= /// Binds a reference to a graph parameter, which then binds to connected node parameters +>>>>>>> origin/master #[no_mangle] pub extern "C" fn vxSetGraphParameterByIndex(graph: vx_graph, index: vx_uint32, param: vx_reference) -> vx_status { if graph.is_null() { @@ -7701,6 +8122,8 @@ pub extern "C" fn vxSetGraphParameterByIndex(graph: vx_graph, index: vx_uint32, if param.is_null() { return VX_ERROR_INVALID_REFERENCE; } +<<<<<<< HEAD +======= let graph_id = graph as u64; let param_addr = param as usize; @@ -7764,16 +8187,23 @@ pub extern "C" fn vxSetGraphParameterByIndex(graph: vx_graph, index: vx_uint32, } } +>>>>>>> origin/master VX_SUCCESS } /// Get graph parameter by index +<<<<<<< HEAD +======= /// Returns a parameter object that can be used with vxSetParameterByReference +>>>>>>> origin/master #[no_mangle] pub extern "C" fn vxGetGraphParameterByIndex(graph: vx_graph, index: vx_uint32) -> vx_parameter { if graph.is_null() { return std::ptr::null_mut(); } +<<<<<<< HEAD + // Return a new parameter +======= let graph_id = graph as u64; @@ -7810,6 +8240,7 @@ pub extern "C" fn vxGetGraphParameterByIndex(graph: vx_graph, index: vx_uint32) } } +>>>>>>> origin/master std::ptr::null_mut() } @@ -7877,9 +8308,34 @@ pub extern "C" fn vxuHalfScaleGaussian(context: vx_context, input: vx_image, out VX_SUCCESS } +<<<<<<< HEAD +/// Map distribution +#[no_mangle] +pub extern "C" fn vxMapDistribution(distribution: vx_distribution, map_id: *mut vx_map_id, ptr: *mut *mut c_void, usage: vx_enum, mem_type: vx_enum, copy_enable: vx_bool) -> vx_status { + if distribution.is_null() || ptr.is_null() { + return VX_ERROR_INVALID_REFERENCE; + } + unsafe { + *ptr = distribution as *mut c_void; + } + VX_SUCCESS +} + +/// Unmap distribution +#[no_mangle] +pub extern "C" fn vxUnmapDistribution(distribution: vx_distribution, map_id: vx_map_id) -> vx_status { + if distribution.is_null() { + return VX_ERROR_INVALID_REFERENCE; + } + VX_SUCCESS +} + +// Final missing functions for CTS +======= // ============================================================================ // 12. Final CTS Functions // ============================================================================ +>>>>>>> origin/master /// Convert depth immediate mode #[no_mangle] diff --git a/openvx-core/src/vxu_impl.rs b/openvx-core/src/vxu_impl.rs index c3cceee..a0b84ac 100644 --- a/openvx-core/src/vxu_impl.rs +++ b/openvx-core/src/vxu_impl.rs @@ -6,21 +6,32 @@ use std::ffi::c_void; use crate::c_api::{ vx_context, vx_image, vx_scalar, vx_array, vx_matrix, vx_convolution, +<<<<<<< HEAD + vx_pyramid, vx_threshold, vx_status, vx_bool, + vx_enum, vx_df_image, vx_uint32, vx_size, vx_char, + VX_SUCCESS, VX_ERROR_INVALID_REFERENCE, VX_ERROR_INVALID_PARAMETERS, + VX_ERROR_INVALID_FORMAT, VX_ERROR_NOT_IMPLEMENTED, +======= vx_pyramid, vx_threshold, vx_status, vx_bool, vx_float32, vx_enum, vx_df_image, vx_uint32, vx_size, vx_char, VX_SUCCESS, VX_ERROR_INVALID_REFERENCE, VX_ERROR_INVALID_PARAMETERS, VX_ERROR_INVALID_FORMAT, VX_ERROR_NOT_IMPLEMENTED, VX_DF_IMAGE_S16, VX_DF_IMAGE_U16, // Add S16/U16 format constants +>>>>>>> origin/master }; use crate::unified_c_api::{vx_distribution, vx_remap, VxCImage}; /// Image format enum for internal use #[derive(Clone, Copy, Debug, PartialEq)] pub enum ImageFormat { +<<<<<<< HEAD + Gray, +======= Gray, // U8 - single byte per pixel GrayU16, // U16 - two bytes per pixel GrayS16, // S16 - two bytes per pixel (signed) GrayU32, // U32 - four bytes per pixel (for integral image) +>>>>>>> origin/master Rgb, Rgba, NV12, @@ -33,9 +44,12 @@ impl ImageFormat { pub fn channels(&self) -> usize { match self { ImageFormat::Gray => 1, +<<<<<<< HEAD +======= ImageFormat::GrayU16 => 1, // U16 is single channel, 2 bytes ImageFormat::GrayS16 => 1, // S16 is single channel, 2 bytes ImageFormat::GrayU32 => 4, +>>>>>>> origin/master ImageFormat::Rgb => 3, ImageFormat::Rgba => 4, // Planar formats return 1 for buffer calculation base @@ -52,9 +66,12 @@ impl ImageFormat { pub fn buffer_size(&self, width: usize, height: usize) -> usize { match self { ImageFormat::Gray => width.saturating_mul(height), +<<<<<<< HEAD +======= ImageFormat::GrayU16 => width.saturating_mul(height).saturating_mul(2), // U16 = 2 bytes per pixel ImageFormat::GrayS16 => width.saturating_mul(height).saturating_mul(2), // S16 = 2 bytes per pixel ImageFormat::GrayU32 => width.saturating_mul(height).saturating_mul(4), // U32 = 4 bytes per pixel +>>>>>>> origin/master ImageFormat::Rgb => width.saturating_mul(height).saturating_mul(3), ImageFormat::Rgba => width.saturating_mul(height).saturating_mul(4), // IYUV/I420: Y (full) + U (quarter) + V (quarter) = 1.5 * width * height @@ -154,10 +171,13 @@ impl Image { fn df_image_to_format(df: vx_df_image) -> Option { match df { 0x38303055 => Some(ImageFormat::Gray), // VX_DF_IMAGE_U8 ('U008') +<<<<<<< HEAD +======= 0x31305555 => Some(ImageFormat::GrayU16), // VX_DF_IMAGE_U16 ('U016') 0x53313053 => Some(ImageFormat::GrayS16), // VX_DF_IMAGE_S16 ('S016') - CORRECTED 0x36313053 => Some(ImageFormat::GrayS16), // Alternative S16 format code 0x32333055 => Some(ImageFormat::GrayU32), // VX_DF_IMAGE_U32 ('U032') +>>>>>>> origin/master 0x32424752 => Some(ImageFormat::Rgb), // VX_DF_IMAGE_RGB ('RGB2') 0x41424752 => Some(ImageFormat::Rgba), // VX_DF_IMAGE_RGBA/RGBX ('RGBA') 0x3231564E => Some(ImageFormat::NV12), // VX_DF_IMAGE_NV12 ('NV12') @@ -359,6 +379,13 @@ unsafe fn copy_rust_to_c_image_optimized(src: &Image, dst: vx_image) -> vx_statu VX_ERROR_INVALID_PARAMETERS } +<<<<<<< HEAD +/// Create a new Rust Image matching the C image dimensions and format +unsafe fn create_matching_image(c_image: vx_image) -> Option { + let (width, height, format) = get_image_info(c_image)?; + let format = df_image_to_format(format)?; + Image::new(width as usize, height as usize, format) +======= /// Copy Rust Image data back to C API image with format conversion unsafe fn convert_and_copy(src: &Image, dst: vx_image, target_format: vx_df_image) -> vx_status { if dst.is_null() { @@ -422,6 +449,7 @@ unsafe fn create_matching_image(c_image: vx_image) -> Option { // Default to same format unless explicitly needed otherwise let output_format = src_format; Image::new(width as usize, height as usize, output_format) +>>>>>>> origin/master } /// VXU Color Functions @@ -1805,6 +1833,20 @@ pub fn vxu_sobel3x3_impl( unsafe { let src = match c_image_to_rust(input) { +<<<<<<< HEAD + Some(img) => img, + None => return VX_ERROR_INVALID_PARAMETERS, + }; + + let mut gx = match create_matching_image(output_x) { + Some(img) => img, + None => return VX_ERROR_INVALID_PARAMETERS, + }; + + let mut gy = match create_matching_image(output_y) { + Some(img) => img, + None => return VX_ERROR_INVALID_PARAMETERS, +======= Some(img) => { img }, @@ -1835,22 +1877,32 @@ pub fn vxu_sobel3x3_impl( None => { return VX_ERROR_INVALID_PARAMETERS; }, +>>>>>>> origin/master }; match sobel3x3(&src, &mut gx, &mut gy) { Ok(_) => { +<<<<<<< HEAD + let status_x = if output_x.is_null() { VX_SUCCESS } else { copy_rust_to_c_image(&gx, output_x) }; + let status_y = if output_y.is_null() { VX_SUCCESS } else { copy_rust_to_c_image(&gy, output_y) }; +======= // Convert from U8 to output format let status_x = convert_and_copy(&gx, output_x, out_x_format); let status_y = convert_and_copy(&gy, output_y, VX_DF_IMAGE_S16); +>>>>>>> origin/master if status_x == VX_SUCCESS && status_y == VX_SUCCESS { VX_SUCCESS } else { VX_ERROR_INVALID_PARAMETERS } } +<<<<<<< HEAD + Err(_) => VX_ERROR_INVALID_PARAMETERS, +======= Err(e) => { VX_ERROR_INVALID_PARAMETERS }, +>>>>>>> origin/master } } } @@ -2355,20 +2407,28 @@ pub fn vxu_harris_corners_impl( _corners: vx_array, _num_corners: vx_scalar, ) -> vx_status { +<<<<<<< HEAD + if context.is_null() || input.is_null() { +======= // Validate all required parameters with null checks if context.is_null() { return VX_ERROR_INVALID_REFERENCE; } if input.is_null() { +>>>>>>> origin/master return VX_ERROR_INVALID_REFERENCE; } unsafe { let src = match c_image_to_rust(input) { Some(img) => img, +<<<<<<< HEAD + None => return VX_ERROR_INVALID_PARAMETERS, +======= None => { return VX_ERROR_INVALID_PARAMETERS; } +>>>>>>> origin/master }; // Default parameters @@ -4348,7 +4408,10 @@ pub fn vxu_or_impl( in2: vx_image, output: vx_image, ) -> vx_status { +<<<<<<< HEAD +======= +>>>>>>> origin/master if context.is_null() || in1.is_null() || in2.is_null() || output.is_null() { return VX_ERROR_INVALID_REFERENCE; } @@ -4356,23 +4419,35 @@ pub fn vxu_or_impl( unsafe { let src1 = match c_image_to_rust(in1) { Some(img) => img, +<<<<<<< HEAD + None => return VX_ERROR_INVALID_PARAMETERS, +======= None => { return VX_ERROR_INVALID_PARAMETERS; } +>>>>>>> origin/master }; let src2 = match c_image_to_rust(in2) { Some(img) => img, +<<<<<<< HEAD + None => return VX_ERROR_INVALID_PARAMETERS, +======= None => { return VX_ERROR_INVALID_PARAMETERS; } +>>>>>>> origin/master }; let mut dst = match create_matching_image(output) { Some(img) => img, +<<<<<<< HEAD + None => return VX_ERROR_INVALID_PARAMETERS, +======= None => { return VX_ERROR_INVALID_PARAMETERS; } +>>>>>>> origin/master }; // Bitwise OR implementation @@ -4479,6 +4554,8 @@ pub fn vxu_not_impl( copy_rust_to_c_image(&dst, output) } } +<<<<<<< HEAD +======= /// =========================================================================== /// VXU Optical Flow Functions @@ -4669,3 +4746,4 @@ pub fn vxu_optical_flow_pyr_lk_impl( VX_SUCCESS } } +>>>>>>> origin/master diff --git a/openvx-image/src/c_api.rs b/openvx-image/src/c_api.rs index 1f3c278..a96b218 100644 --- a/openvx-image/src/c_api.rs +++ b/openvx-image/src/c_api.rs @@ -1,19 +1,29 @@ //! C API for OpenVX Image use std::ffi::c_void; +<<<<<<< HEAD +use std::sync::{RwLock, Arc}; +======= use std::sync::{RwLock, Arc, atomic::AtomicUsize}; +>>>>>>> origin/master // FFI declarations for register/unregister image - ensure we use the same symbol // as defined in openvx-core's unified_c_api extern "C" { fn register_image(addr: usize); fn unregister_image(addr: usize); +<<<<<<< HEAD +======= fn vxGetContext(ref_: vx_reference) -> vx_context; +>>>>>>> origin/master } use openvx_core::unified_c_api::VxCImage; use openvx_core::c_api::{ vx_context, vx_graph, vx_image, vx_status, vx_enum, vx_size, vx_uint32, vx_rectangle_t, vx_imagepatch_addressing_t, vx_map_id, vx_df_image, vx_int32, +<<<<<<< HEAD +======= vx_float32, vx_reference, VxImage, +>>>>>>> origin/master VX_SUCCESS, VX_ERROR_INVALID_REFERENCE, VX_ERROR_INVALID_PARAMETERS, VX_ERROR_NOT_IMPLEMENTED, VX_DF_IMAGE_RGB, VX_DF_IMAGE_RGBA, VX_DF_IMAGE_RGBX, VX_DF_IMAGE_NV12, @@ -22,7 +32,10 @@ use openvx_core::c_api::{ VX_DF_IMAGE_U32, VX_DF_IMAGE_S32, VX_DF_IMAGE_VIRT, VX_IMAGE_FORMAT, VX_IMAGE_WIDTH, VX_IMAGE_HEIGHT, VX_IMAGE_PLANES, VX_IMAGE_IS_UNIFORM, VX_IMAGE_UNIFORM_VALUE, VX_IMAGE_SPACE, VX_IMAGE_RANGE, +<<<<<<< HEAD +======= VX_IMAGE_IS_VIRTUAL, +>>>>>>> origin/master VX_READ_ONLY, VX_WRITE_ONLY, VX_READ_AND_WRITE, VX_MEMORY_TYPE_HOST, }; use openvx_core::unified_c_api::{REFERENCE_COUNTS, REFERENCE_TYPES, VX_TYPE_IMAGE}; @@ -68,8 +81,11 @@ pub extern "C" fn vxCreateImage( data: Arc::new(RwLock::new(data)), mapped_patches: Arc::new(RwLock::new(Vec::new())), parent: None, +<<<<<<< HEAD +======= is_external_memory: false, external_ptrs: Vec::new(), +>>>>>>> origin/master }); let image_ptr = Box::into_raw(image) as vx_image; @@ -99,6 +115,8 @@ pub extern "C" fn vxCreateImage( image_ptr } +<<<<<<< HEAD +======= /// Use unified VIRTUAL_IMAGES registry from openvx_core use openvx_core::unified_c_api::{VIRTUAL_IMAGES, VirtualImageInfo as VxCVirtualImageInfo}; use openvx_core::unified_c_api as core_unified; @@ -148,6 +166,7 @@ fn unregister_virtual_image(addr: usize) -> Option { } } +>>>>>>> origin/master /// Create a virtual image (for graph intermediate results) #[no_mangle] pub extern "C" fn vxCreateVirtualImage( @@ -159,6 +178,21 @@ pub extern "C" fn vxCreateVirtualImage( if graph.is_null() { return std::ptr::null_mut(); } +<<<<<<< HEAD + // Note: Virtual images CAN have width/height of 0 - they get dimensions + // from connected nodes during graph verification + + // Virtual images don't allocate memory immediately + let image = Box::new(VxCImage { + width, + height, + format: color, + is_virtual: true, + context: std::ptr::null_mut(), // Virtual images use graph context + data: Arc::new(RwLock::new(Vec::new())), + mapped_patches: Arc::new(RwLock::new(Vec::new())), + parent: None, +======= // Get the context from the graph let context = unsafe { vxGetContext(graph as vx_reference) }; @@ -189,10 +223,13 @@ pub extern "C" fn vxCreateVirtualImage( parent: None, is_external_memory: false, external_ptrs: Vec::new(), +>>>>>>> origin/master }); let image_ptr = Box::into_raw(image) as vx_image; +<<<<<<< HEAD +======= // Register virtual image info use openvx_core::unified_c_api::VirtualImageInfo; register_virtual_image( @@ -206,6 +243,7 @@ pub extern "C" fn vxCreateVirtualImage( } ); +>>>>>>> origin/master // Register image address in unified registry for type queries (vxQueryReference) unsafe { register_image(image_ptr as usize); @@ -214,6 +252,8 @@ pub extern "C" fn vxCreateVirtualImage( // Register as valid image for double-free protection register_valid_image(image_ptr as usize); +<<<<<<< HEAD +======= // Register in reference counting unsafe { if let Ok(mut counts) = REFERENCE_COUNTS.lock() { @@ -228,13 +268,17 @@ pub extern "C" fn vxCreateVirtualImage( } } +>>>>>>> origin/master image_ptr } /// Create an image from existing handles +<<<<<<< HEAD +======= /// /// IMPORTANT: The image created does NOT own the memory - it references external memory /// provided by the caller. vxReleaseImage will NOT free this memory. +>>>>>>> origin/master #[no_mangle] pub extern "C" fn vxCreateImageFromHandle( context: vx_context, @@ -252,17 +296,60 @@ pub extern "C" fn vxCreateImageFromHandle( } unsafe { +<<<<<<< HEAD + let addr = &*addrs; + let width = addr.dim_x; + let height = addr.dim_y; +======= // For planar formats, addrs is an array with one entry per plane // The first plane (usually Y) has the full image dimensions let addr0 = &*addrs; let width = addr0.dim_x; let height = addr0.dim_y; +>>>>>>> origin/master // Validate dimensions if width == 0 || height == 0 { return std::ptr::null_mut(); } +<<<<<<< HEAD + // Calculate size from addressing with overflow protection + // and sanity limits to prevent massive allocations + const MAX_ALLOCATION_SIZE: usize = 1024 * 1024 * 1024; // 1GB limit + const MAX_DIMENSION: u32 = 65536; // Max reasonable dimension + + // Validate dimensions are reasonable + if width > MAX_DIMENSION || height > MAX_DIMENSION { + return std::ptr::null_mut(); + } + + // CRITICAL FIX: Check stride_y is positive BEFORE casting to usize + // A negative stride_y cast to usize would become a huge number + if addr.stride_y <= 0 { + return std::ptr::null_mut(); + } + + let stride = addr.stride_y as usize; + + // Validate stride is reasonable + let expected_stride = width as usize * VxCImage::bytes_per_pixel(color); + if stride > expected_stride * 100 { + return std::ptr::null_mut(); // Unreasonable stride + } + + // Also check stride isn't unreasonably large on its own + if stride > MAX_ALLOCATION_SIZE / height as usize { + return std::ptr::null_mut(); + } + + // Calculate total size with checked multiplication + let total_size = stride + .checked_mul(height as usize) + .unwrap_or(0) + .min(MAX_ALLOCATION_SIZE); + +======= const MAX_DIMENSION: u32 = 65536; if width > MAX_DIMENSION || height > MAX_DIMENSION { return std::ptr::null_mut(); @@ -294,10 +381,26 @@ pub extern "C" fn vxCreateImageFromHandle( // Calculate total size for the image let total_size = VxCImage::calculate_size(width, height, color); +>>>>>>> origin/master if total_size == 0 { return std::ptr::null_mut(); } +<<<<<<< HEAD + // Allocate data buffer and copy from user handles + let mut data = vec![0u8; total_size]; + + // Copy from first plane pointer (user handles) + let user_ptr = *ptrs; + if !user_ptr.is_null() { + std::ptr::copy_nonoverlapping( + user_ptr as *const u8, + data.as_mut_ptr(), + total_size + ); + } + +======= // Validate all plane pointers let mut external_ptrs: Vec<*mut u8> = Vec::with_capacity(num_planes as usize); for plane_idx in 0..num_planes as usize { @@ -312,6 +415,7 @@ pub extern "C" fn vxCreateImageFromHandle( // The Vec will have capacity 0 and won't allocate let data = Vec::with_capacity(0); +>>>>>>> origin/master let image = Box::new(VxCImage { width, height, @@ -321,14 +425,23 @@ pub extern "C" fn vxCreateImageFromHandle( data: Arc::new(RwLock::new(data)), mapped_patches: Arc::new(RwLock::new(Vec::new())), parent: None, +<<<<<<< HEAD +======= is_external_memory: true, external_ptrs, +>>>>>>> origin/master }); let image_ptr = Box::into_raw(image) as vx_image; // Register image address in unified registry for type queries (vxQueryReference) +<<<<<<< HEAD + unsafe { + register_image(image_ptr as usize); + } +======= register_image(image_ptr as usize); +>>>>>>> origin/master // Register as valid image for double-free protection register_valid_image(image_ptr as usize); @@ -469,8 +582,11 @@ pub extern "C" fn vxCreateUniformImage( data: Arc::new(RwLock::new(data)), mapped_patches: Arc::new(RwLock::new(Vec::new())), parent: None, +<<<<<<< HEAD +======= is_external_memory: false, external_ptrs: Vec::new(), +>>>>>>> origin/master }); // Convert to raw pointer @@ -580,8 +696,11 @@ pub extern "C" fn vxCreateImageFromChannel( data: Arc::clone(&source_img.data), mapped_patches: Arc::new(RwLock::new(Vec::new())), parent: Some(parent_ptr), +<<<<<<< HEAD +======= is_external_memory: false, external_ptrs: Vec::new(), +>>>>>>> origin/master }); let image_ptr = Box::into_raw(channel_image) as vx_image; @@ -598,25 +717,42 @@ pub extern "C" fn vxCreateImageFromChannel( } } +<<<<<<< HEAD +/// Registry to track valid (non-freed) images +use std::sync::Mutex; +use std::collections::HashSet; + +static VALID_IMAGES: std::sync::LazyLock>> = std::sync::LazyLock::new(|| { + Mutex::new(HashSet::new()) +======= use std::collections::HashSet; /// Registry to track valid (non-freed) images static VALID_IMAGES: std::sync::LazyLock>> = std::sync::LazyLock::new(|| { std::sync::Mutex::new(HashSet::new()) +>>>>>>> origin/master }); /// Register an image as valid fn register_valid_image(addr: usize) { if let Ok(mut images) = VALID_IMAGES.lock() { +<<<<<<< HEAD + let _: bool = images.insert(addr); +======= images.insert(addr); +>>>>>>> origin/master } } /// Unregister an image (mark as freed) fn unregister_valid_image(addr: usize) -> bool { if let Ok(mut images) = VALID_IMAGES.lock() { +<<<<<<< HEAD + let _: bool = images.remove(&addr); +======= images.remove(&addr); +>>>>>>> origin/master true } else { false @@ -635,6 +771,28 @@ pub extern "C" fn vxReleaseImage(image: *mut vx_image) -> vx_status { if !img.is_null() { let addr = img as usize; +<<<<<<< HEAD + // Check if this image was already freed + if !unregister_valid_image(addr) { + // Image was already freed or never existed + return VX_ERROR_INVALID_REFERENCE; + } + + // Unregister from unified registry + unregister_image(addr); + + // Remove from reference counts and types + if let Ok(mut counts) = REFERENCE_COUNTS.lock() { + counts.remove(&addr); + } + if let Ok(mut types) = REFERENCE_TYPES.lock() { + types.remove(&addr); + } + + // Free the image + let _ = Box::from_raw(img as *mut VxCImage); + *image = std::ptr::null_mut(); +======= // Check reference count before freeing let should_free = if let Ok(counts) = REFERENCE_COUNTS.lock() { if let Some(cnt) = counts.get(&addr) { @@ -689,6 +847,7 @@ pub extern "C" fn vxReleaseImage(image: *mut vx_image) -> vx_status { *image = std::ptr::null_mut(); } else { +>>>>>>> origin/master } } @@ -778,6 +937,8 @@ pub extern "C" fn vxQueryImage( VX_ERROR_INVALID_PARAMETERS } } +<<<<<<< HEAD +======= VX_IMAGE_IS_VIRTUAL => { if size != std::mem::size_of::() { return VX_ERROR_INVALID_PARAMETERS; @@ -787,6 +948,7 @@ pub extern "C" fn vxQueryImage( *(ptr as *mut vx_enum) = is_virt; VX_SUCCESS } +>>>>>>> origin/master _ => VX_ERROR_NOT_IMPLEMENTED, } } @@ -843,7 +1005,24 @@ pub extern "C" fn vxMapImagePatch( unsafe { let rect_ref = &*rect; +<<<<<<< HEAD + // Calculate the mapped region + let start_x = rect_ref.start_x as usize; + let start_y = rect_ref.start_y as usize; + let end_x = rect_ref.end_x as usize; + let end_y = rect_ref.end_y as usize; + + let width = end_x.saturating_sub(start_x); + let height = end_y.saturating_sub(start_y); + + if width == 0 || height == 0 { + return VX_ERROR_INVALID_PARAMETERS; + } + + // Get image data +======= // Get image data first +>>>>>>> origin/master let data_guard = match img.data.read() { Ok(guard) => guard, Err(_) => return VX_ERROR_INVALID_REFERENCE, @@ -863,6 +1042,8 @@ pub extern "C" fn vxMapImagePatch( return VX_ERROR_INVALID_PARAMETERS; } +<<<<<<< HEAD +======= // Calculate the mapped region, clamped to plane bounds let start_x = (rect_ref.start_x as usize).min(plane_width); let start_y = (rect_ref.start_y as usize).min(plane_height); @@ -877,6 +1058,7 @@ pub extern "C" fn vxMapImagePatch( return VX_ERROR_INVALID_PARAMETERS; } +>>>>>>> origin/master // Calculate stride and offset based on format and plane let bpp = if is_planar { 1usize // For planar formats, each plane is 1 byte per pixel (luma/chroma) @@ -894,15 +1076,23 @@ pub extern "C" fn vxMapImagePatch( let offset = plane_offset + start_y * stride_y + start_x * bpp; // Create a copy of the data for the mapped patch +<<<<<<< HEAD + let patch_size = height * width * bpp; +======= // Use the mapped region width for stride, not the full plane width let mapped_stride_y = width * bpp; let patch_size = height * mapped_stride_y; +>>>>>>> origin/master let mut patch_data = vec![0u8; patch_size]; // Copy data row by row for y in 0..height { let src_start = offset + y * stride_y; +<<<<<<< HEAD + let dst_start = y * width * bpp; +======= let dst_start = y * mapped_stride_y; +>>>>>>> origin/master if src_start + width * bpp <= data_guard.len() { patch_data[dst_start..dst_start + width * bpp] .copy_from_slice(&data_guard[src_start..src_start + width * bpp]); @@ -910,11 +1100,18 @@ pub extern "C" fn vxMapImagePatch( } // Store the patch FIRST, then get pointer to the stored data +<<<<<<< HEAD + let map_id_val = if let Ok(mut patches) = img.mapped_patches.write() { + let id = patches.len() + 1; + // Store patch with plane_index explicitly tracked (6-tuple now) + patches.push((id, patch_data, usage, offset, stride_y, plane_index)); +======= // Store: (id, patch_data, usage, offset, stride_y, plane_index, mapped_width) let map_id_val = if let Ok(mut patches) = img.mapped_patches.write() { let id = patches.len() + 1; // Store patch with mapped_width to correctly unmap later patches.push((id, patch_data, usage, offset, stride_y, plane_index, width as u32)); +>>>>>>> origin/master id } else { return VX_ERROR_INVALID_REFERENCE; @@ -925,8 +1122,12 @@ pub extern "C" fn vxMapImagePatch( (*addr).dim_x = width as vx_uint32; (*addr).dim_y = height as vx_uint32; (*addr).stride_x = bpp as vx_int32; +<<<<<<< HEAD + (*addr).stride_y = stride_y as vx_int32; +======= // The stride returned should be for the mapped region (contiguous), not full plane (*addr).stride_y = mapped_stride_y as vx_int32; +>>>>>>> origin/master (*addr).step_x = 1; (*addr).step_y = 1; (*addr).scale_x = 1024; // VX_SCALE_UNITY @@ -936,7 +1137,11 @@ pub extern "C" fn vxMapImagePatch( // Return pointer to the STORED patch data (not the local variable) if let Ok(patches) = img.mapped_patches.read() { +<<<<<<< HEAD + if let Some(patch) = patches.iter().find(|(id, _, _, _, _, _)| *id == map_id_val) { +======= if let Some(patch) = patches.iter().find(|(id, _, _, _, _, _, _)| *id == map_id_val) { +>>>>>>> origin/master *ptr = patch.1.as_ptr() as *mut c_void; } } @@ -961,6 +1166,10 @@ pub extern "C" fn vxUnmapImagePatch( let img = unsafe { &mut *(image as *mut VxCImage) }; if let Ok(mut patches) = img.mapped_patches.write() { +<<<<<<< HEAD + if let Some(pos) = patches.iter().position(|(id, _, _, _, _, _)| *id == map_id) { + let (_, patch_data, usage, offset, stride_y, plane_index) = patches.remove(pos); +======= // Find the patch with matching id - handle both old 6-tuple and new 7-tuple formats if let Some(pos) = patches.iter().position(|p| { // Check based on tuple length - first element is always id @@ -973,6 +1182,7 @@ pub extern "C" fn vxUnmapImagePatch( // Unpack the tuple - storage is 7-tuple: (id, patch_data, usage, offset, stride_y, plane_index, mapped_width) // Use proper destructuring instead of transmute to avoid memory corruption let (_, patch_data, usage, offset, stride_y, plane_index, mapped_width) = patch_tuple; +>>>>>>> origin/master // If write access, copy data back if usage == VX_WRITE_ONLY || usage == VX_READ_AND_WRITE { @@ -985,19 +1195,34 @@ pub extern "C" fn vxUnmapImagePatch( VxCImage::bytes_per_pixel(img.format) }; +<<<<<<< HEAD + // Calculate width based on stride_y and bpp + let width = if stride_y > 0 { + stride_y / bpp + } else { + 0 + }; + let height = if stride_y > 0 && width > 0 { + patch_data.len() / stride_y +======= // Use stored mapped_width for correct dimensions let width = mapped_width as usize; // Calculate height from stored patch data size and mapped region width let mapped_stride = width * bpp; let height = if mapped_stride > 0 { patch_data.len() / mapped_stride +>>>>>>> origin/master } else { 0 }; // Copy data back row by row for y in 0..height { +<<<<<<< HEAD + let src_start = y * width * bpp; +======= let src_start = y * mapped_stride; +>>>>>>> origin/master let dst_start = offset + y * stride_y; if dst_start + width * bpp <= data.len() && src_start + width * bpp <= patch_data.len() { data[dst_start..dst_start + width * bpp] @@ -1354,8 +1579,11 @@ pub extern "C" fn vxCreateImageFromROI( data: Arc::new(RwLock::new(roi_data)), mapped_patches: Arc::new(RwLock::new(Vec::new())), parent: Some(img as usize), // Store parent reference +<<<<<<< HEAD +======= is_external_memory: false, external_ptrs: Vec::new(), +>>>>>>> origin/master }); let image_ptr = Box::into_raw(roi_image) as vx_image; @@ -1449,6 +1677,24 @@ pub extern "C" fn vxCreateUniformImageFromHandle( /// This function creates a new image with the same dimensions and format as the source, /// then copies all pixel data from the source to the new image. /// +<<<<<<< HEAD +/// # Arguments +/// * `context` - The OpenVX context +/// * `source` - The source image to clone +/// +/// # Returns +/// A new vx_image handle that is a deep copy of the source, or null on error +#[no_mangle] +pub extern "C" fn vxCloneImage( + context: vx_context, + source: vx_image, +) -> vx_image { + // Validate parameters + if context.is_null() { + return std::ptr::null_mut(); + } + if source.is_null() { +======= /// If a rectangle is specified, only that region is cloned. If rect is NULL, /// the entire image is cloned. /// @@ -1465,10 +1711,29 @@ pub extern "C" fn vxCloneImage( ) -> vx_image { // Validate image parameter if image.is_null() { +>>>>>>> origin/master return std::ptr::null_mut(); } unsafe { +<<<<<<< HEAD + let source_img = &*(source as *const VxCImage); + + // Get source image properties + let width = source_img.width; + let height = source_img.height; + let format = source_img.format; + + // Handle virtual images - they don't have allocated data + // Per OpenVX spec, cloning a virtual image creates a regular image + if source_img.is_virtual && source_img.data.read().unwrap().is_empty() { + // Virtual image without data - just create regular image with same dimensions + return vxCreateImage(context, width, height, format); + } + + // Create the destination image + let mut dest_image = vxCreateImage(context, width, height, format); +======= let source_img = &*(image as *const VxCImage); // Get context from the source image @@ -1517,6 +1782,7 @@ pub extern "C" fn vxCloneImage( // Create the destination image let mut dest_image = vxCreateImage(context, clone_width, clone_height, format); +>>>>>>> origin/master if dest_image.is_null() { return std::ptr::null_mut(); } @@ -1524,6 +1790,15 @@ pub extern "C" fn vxCloneImage( // Get the destination image data structure let dest_img = &mut *(dest_image as *mut VxCImage); +<<<<<<< HEAD + // Copy all data from source to destination + if let Ok(source_data) = source_img.data.read() { + if let Ok(mut dest_data) = dest_img.data.write() { + // Ensure destination has enough space + if dest_data.len() >= source_data.len() { + // Perform deep copy of pixel data + dest_data.copy_from_slice(&source_data[..source_data.len()]); +======= // Calculate bytes per pixel for the format let bpp = VxCImage::bytes_per_pixel(format); let src_stride = src_width as usize * bpp; @@ -1546,6 +1821,7 @@ pub extern "C" fn vxCloneImage( .copy_from_slice(&source_data[src_offset..src_offset + row_bytes]); } } +>>>>>>> origin/master } else { // Shouldn't happen if vxCreateImage worked correctly, but handle it vxReleaseImage(&mut dest_image); @@ -1560,6 +1836,17 @@ pub extern "C" fn vxCloneImage( return std::ptr::null_mut(); } +<<<<<<< HEAD + // Also copy mapped patches metadata if any exist + if let Ok(source_patches) = source_img.mapped_patches.read() { + if let Ok(mut dest_patches) = dest_img.mapped_patches.write() { + // Copy the patch metadata (not the actual data which is owned by the patches) + *dest_patches = source_patches.clone(); + } + } + +======= +>>>>>>> origin/master dest_image } } @@ -1606,6 +1893,13 @@ pub extern "C" fn vxCloneImageWithGraph( // Create a virtual image with same dimensions vxCreateVirtualImage(graph, width, height, format) } else { +<<<<<<< HEAD + // Create a regular image with data copy + vxCloneImage(context, source) + } + } +} +======= // Create a regular image with data copy (clone entire image) vxCloneImage(source, std::ptr::null()) } @@ -1889,3 +2183,4 @@ pub extern "C" fn vxCreateVirtualPyramid( // Virtual pyramids are created like regular ones vxCreatePyramid(context, num_levels, scale, width, height, format) } +>>>>>>> origin/master diff --git a/openvx-image/src/lib.rs b/openvx-image/src/lib.rs index 090898f..5729b2d 100644 --- a/openvx-image/src/lib.rs +++ b/openvx-image/src/lib.rs @@ -245,6 +245,8 @@ pub fn clone_image(source: &Image) -> Image { data: RwLock::new(cloned_data), } } +<<<<<<< HEAD +======= /// Pyramid structure /// A pyramid is a multi-level image representation where each level @@ -272,3 +274,4 @@ impl Pyramid { self.levels.get(index) } } +>>>>>>> origin/master diff --git a/openvx-vision/src/filter.rs b/openvx-vision/src/filter.rs index 9936bb5..adddf1c 100644 --- a/openvx-vision/src/filter.rs +++ b/openvx-vision/src/filter.rs @@ -193,9 +193,14 @@ pub fn convolve_generic(src: &Image, dst: &Image, kernel: &[[i32; 3]; 3], border Ok(()) } +<<<<<<< HEAD +/// Gaussian 3x3: [1,2,1; 2,4,2; 1,2,1] / 16 +/// Uses REPLICATE border mode for edge pixels +======= /// Gaussian 3x3: Separable [1,2,1] horizontal then vertical /// Uses REPLICATE border mode for edge pixels /// Total normalization: 4 * 4 = 16 +>>>>>>> origin/master pub fn gaussian3x3(src: &Image, dst: &Image) -> VxResult<()> { let width = src.width(); let height = src.height(); @@ -203,6 +208,29 @@ pub fn gaussian3x3(src: &Image, dst: &Image) -> VxResult<()> { let mut dst_data = dst.data_mut(); let border = BorderMode::Replicate; +<<<<<<< HEAD + for y in 0..height { + for x in 0..width { + // Full 3x3 Gaussian kernel: [1,2,1; 2,4,2; 1,2,1] / 16 + let mut sum: i32 = 0; + + // Row y-1 + sum += get_pixel_bordered(src, x as isize - 1, y as isize - 1, border) as i32 * 1; + sum += get_pixel_bordered(src, x as isize, y as isize - 1, border) as i32 * 2; + sum += get_pixel_bordered(src, x as isize + 1, y as isize - 1, border) as i32 * 1; + + // Row y + sum += get_pixel_bordered(src, x as isize - 1, y as isize, border) as i32 * 2; + sum += get_pixel_bordered(src, x as isize, y as isize, border) as i32 * 4; + sum += get_pixel_bordered(src, x as isize + 1, y as isize, border) as i32 * 2; + + // Row y+1 + sum += get_pixel_bordered(src, x as isize - 1, y as isize + 1, border) as i32 * 1; + sum += get_pixel_bordered(src, x as isize, y as isize + 1, border) as i32 * 2; + sum += get_pixel_bordered(src, x as isize + 1, y as isize + 1, border) as i32 * 1; + + dst_data[y * width + x] = (sum >> 4) as u8; // Divide by 16 +======= // Separable kernel: [1, 2, 1] // Horizontal pass: temp[y][x] = sum of src[y][x-1]*1 + src[y][x]*2 + src[y][x+1]*1 // Vertical pass: dst[y][x] = sum of temp[y-1][x]*1 + temp[y][x]*2 + temp[y+1][x]*1 @@ -231,6 +259,7 @@ pub fn gaussian3x3(src: &Image, dst: &Image) -> VxResult<()> { let sum = (p_top + p_center * 2 + p_bottom) >> 4; // Divide by 16 dst_data[y * width + x] = sum as u8; +>>>>>>> origin/master } } @@ -284,14 +313,39 @@ pub fn gaussian5x5(src: &Image, dst: &Image) -> VxResult<()> { Ok(()) } +<<<<<<< HEAD +/// Box filter 3x3 using moving average optimization +======= /// Box filter 3x3: Average of 3x3 neighborhood /// Uses REPLICATE border mode for edge pixels /// Normalization: divide by 9 +>>>>>>> origin/master pub fn box3x3(src: &Image, dst: &Image) -> VxResult<()> { let width = src.width(); let height = src.height(); let mut dst_data = dst.data_mut(); +<<<<<<< HEAD + + // Moving average optimization + for y in 0..height { + for x in 0..width { + let mut sum: u32 = 0; + let mut count: u32 = 0; + + for dy in -1..=1 { + for dx in -1..=1 { + let py = y as isize + dy; + let px = x as isize + dx; + if py >= 0 && py < height as isize && px >= 0 && px < width as isize { + sum += src.get_pixel(px as usize, py as usize) as u32; + count += 1; + } + } + } + + dst_data[y * width + x] = (sum / count.max(1)) as u8; +======= let border = BorderMode::Replicate; for y in 0..height { @@ -309,6 +363,7 @@ pub fn box3x3(src: &Image, dst: &Image) -> VxResult<()> { // Normalize by dividing by 9 and clamp to valid range dst_data[y * width + x] = clamp_u8(sum / 9); +>>>>>>> origin/master } } diff --git a/openvx-vision/src/gradient.rs b/openvx-vision/src/gradient.rs index ae08c4e..0f01b2c 100644 --- a/openvx-vision/src/gradient.rs +++ b/openvx-vision/src/gradient.rs @@ -2,7 +2,11 @@ use openvx_core::{Context, Referenceable, VxResult, VxKernel, KernelTrait}; use openvx_image::{Image, ImageFormat}; +<<<<<<< HEAD +use crate::utils::{get_pixel_bordered, BorderMode}; +======= use crate::utils::{get_pixel_bordered, BorderMode, clamp_u8}; +>>>>>>> origin/master use std::f32; /// Sobel3x3 kernel @@ -107,20 +111,34 @@ impl KernelTrait for PhaseKernel { } } +<<<<<<< HEAD +/// Sobel X kernel coefficients +======= /// Sobel X kernel coefficients (horizontal gradient) +>>>>>>> origin/master const SOBEL_X: [[i32; 3]; 3] = [ [-1, 0, 1], [-2, 0, 2], [-1, 0, 1], ]; +<<<<<<< HEAD +/// Sobel Y kernel coefficients (rotated) +======= /// Sobel Y kernel coefficients (vertical gradient) +>>>>>>> origin/master const SOBEL_Y: [[i32; 3]; 3] = [ [-1, -2, -1], [ 0, 0, 0], [ 1, 2, 1], ]; +<<<<<<< HEAD +/// Compute Sobel gradients (outputs to S16 format) +pub fn sobel3x3(src: &Image, grad_x: &Image, grad_y: &Image) -> VxResult<()> { + let width = src.width(); + let height = src.height(); +======= /// Compute Sobel gradients with proper border handling (REPLICATE mode) /// Horizontal: [-1, 0, 1; -2, 0, 2; -1, 0, 1] /// Vertical: [-1, -2, -1; 0, 0, 0; 1, 2, 1] @@ -128,22 +146,34 @@ pub fn sobel3x3(src: &Image, grad_x: &Image, grad_y: &Image) -> VxResult<()> { let width = src.width(); let height = src.height(); let border = BorderMode::Replicate; +>>>>>>> origin/master // Check if output is S16 format let is_s16 = grad_x.format() == ImageFormat::S16; if is_s16 { // Output raw i16 values for S16 format +<<<<<<< HEAD + for y in 1..height - 1 { + for x in 1..width - 1 { +======= for y in 0..height { for x in 0..width { +>>>>>>> origin/master let mut sum_x: i32 = 0; let mut sum_y: i32 = 0; for ky in 0..3 { for kx in 0..3 { +<<<<<<< HEAD + let px = x + kx - 1; + let py = y + ky - 1; + let pixel = src.get_pixel(px, py) as i32; +======= let px = x as isize + kx as isize - 1; let py = y as isize + ky as isize - 1; let pixel = get_pixel_bordered(src, px, py, border) as i32; +>>>>>>> origin/master sum_x += pixel * SOBEL_X[ky][kx]; sum_y += pixel * SOBEL_Y[ky][kx]; } @@ -159,22 +189,37 @@ pub fn sobel3x3(src: &Image, grad_x: &Image, grad_y: &Image) -> VxResult<()> { let mut gx_data = grad_x.data_mut(); let mut gy_data = grad_y.data_mut(); +<<<<<<< HEAD + for y in 1..height - 1 { + for x in 1..width - 1 { +======= for y in 0..height { for x in 0..width { +>>>>>>> origin/master let mut sum_x: i32 = 0; let mut sum_y: i32 = 0; for ky in 0..3 { for kx in 0..3 { +<<<<<<< HEAD + let px = x + kx - 1; + let py = y + ky - 1; + let pixel = src.get_pixel(px, py) as i32; +======= let px = x as isize + kx as isize - 1; let py = y as isize + ky as isize - 1; let pixel = get_pixel_bordered(src, px, py, border) as i32; +>>>>>>> origin/master sum_x += pixel * SOBEL_X[ky][kx]; sum_y += pixel * SOBEL_Y[ky][kx]; } } +<<<<<<< HEAD + // Scale to fit in u8 (divide by 4) +======= // Scale to fit in u8 (divide by 4) and offset by 128 for signed representation +>>>>>>> origin/master gx_data[y * width + x] = ((sum_x / 4).max(-128).min(127) + 128) as u8; gy_data[y * width + x] = ((sum_y / 4).max(-128).min(127) + 128) as u8; } diff --git a/openvx-vision/src/lib.rs b/openvx-vision/src/lib.rs index befa19e..aeaa588 100644 --- a/openvx-vision/src/lib.rs +++ b/openvx-vision/src/lib.rs @@ -25,10 +25,13 @@ pub mod statistics; pub mod object_detection; pub mod utils; +<<<<<<< HEAD +======= // Kernel enum constants and registration pub mod kernel_enums; pub mod register; +>>>>>>> origin/master // SIMD optimized modules (conditionally compiled) pub mod simd_utils; @@ -58,10 +61,13 @@ pub trait Kernel: Send + Sync { /// Register all vision kernels with the context pub fn register_all_kernels(context: &Context) -> VxResult<()> { +<<<<<<< HEAD +======= // First, register vision kernels in the global KERNELS registry // This ensures they are accessible via vxGetKernelByName/vxQueryKernel register::register_vision_kernels_in_global_registry(); +>>>>>>> origin/master // Color conversions context.register_kernel(Box::new(color::ColorConvertKernel))?; context.register_kernel(Box::new(color::ChannelExtractKernel))?; @@ -117,7 +123,11 @@ pub fn register_all_kernels(context: &Context) -> VxResult<()> { // Object detection context.register_kernel(Box::new(object_detection::CannyEdgeDetectorKernel))?; context.register_kernel(Box::new(object_detection::HoughLinesPKernel))?; +<<<<<<< HEAD + context.register_kernel(Box::new(object_detection::ThresholdKernel))?; +======= context.register_kernel(Box::new(object_detection::ThresholdKernel::new()))?; +>>>>>>> origin/master Ok(()) } @@ -131,7 +141,11 @@ pub use statistics::{MinMaxLocKernel, MeanStdDevKernel, HistogramKernel, Equaliz pub use geometric::{ScaleImageKernel, WarpAffineKernel, WarpPerspectiveKernel}; pub use optical_flow::OpticalFlowPyrLKKernel; pub use features::{HarrisCornersKernel, FASTCornersKernel}; +<<<<<<< HEAD +pub use object_detection::{CannyEdgeDetectorKernel, HoughLinesPKernel, ThresholdKernel}; +======= pub use object_detection::{CannyEdgeDetectorKernel, HoughLinesPKernel, ThresholdKernel, ThresholdType, threshold_binary, threshold_range}; +>>>>>>> origin/master // Export utility functions pub use utils::*; diff --git a/openvx-vision/src/object_detection.rs b/openvx-vision/src/object_detection.rs index 4e40836..7a9c2b5 100644 --- a/openvx-vision/src/object_detection.rs +++ b/openvx-vision/src/object_detection.rs @@ -76,6 +76,12 @@ impl KernelTrait for HoughLinesPKernel { } /// Threshold kernel - apply threshold to image +<<<<<<< HEAD +pub struct ThresholdKernel; + +impl ThresholdKernel { + pub fn new() -> Self { ThresholdKernel } +======= /// Supports BINARY: dst = (src > thresh) ? maxval : 0 /// Supports RANGE: dst = (src >= lower && src <= upper) ? maxval : 0 pub struct ThresholdKernel { @@ -112,6 +118,7 @@ impl ThresholdKernel { maxval, } } +>>>>>>> origin/master } impl KernelTrait for ThresholdKernel { @@ -132,6 +139,14 @@ impl KernelTrait for ThresholdKernel { let dst = params.get(2) .and_then(|p| p.as_any().downcast_ref::()) .ok_or(openvx_core::VxStatus::ErrorInvalidParameters)?; +<<<<<<< HEAD + + // Default threshold value + let thresh = 128u8; + let maxval = 255u8; + + threshold(src, dst, thresh, maxval)?; +======= match self.thresh_type { ThresholdType::Binary => { @@ -141,6 +156,7 @@ impl KernelTrait for ThresholdKernel { threshold_range(src, dst, self.lower, self.upper, self.maxval)?; } } +>>>>>>> origin/master Ok(()) } } @@ -469,6 +485,14 @@ pub fn hough_lines_p( Ok(lines) } +<<<<<<< HEAD +/// Apply threshold to image +pub fn threshold(src: &Image, dst: &Image, thresh: u8, maxval: u8) -> VxResult<()> { + let width = src.width(); + let height = src.height(); + let mut dst_data = dst.data_mut(); + +======= /// Threshold types #[derive(Debug, Clone, Copy, PartialEq, Eq)] pub enum ThresholdType { @@ -489,12 +513,16 @@ pub fn threshold_binary(src: &Image, dst: &Image, thresh: u8, maxval: u8) -> VxR let height = src.height(); let mut dst_data = dst.data_mut(); +>>>>>>> origin/master for y in 0..height { for x in 0..width { let val = src.get_pixel(x, y); dst_data[y * width + x] = if val > thresh { maxval } else { 0 }; } } +<<<<<<< HEAD + +======= Ok(()) } @@ -512,6 +540,7 @@ pub fn threshold_range(src: &Image, dst: &Image, lower: u8, upper: u8, maxval: u } } +>>>>>>> origin/master Ok(()) } diff --git a/openvx-vision/src/optical_flow.rs b/openvx-vision/src/optical_flow.rs index 88b0459..9109e33 100644 --- a/openvx-vision/src/optical_flow.rs +++ b/openvx-vision/src/optical_flow.rs @@ -1,3 +1,9 @@ +<<<<<<< HEAD +//! Optical Flow implementation + +use openvx_core::{Context, Referenceable, VxResult, VxKernel, KernelTrait}; +use openvx_image::{Image, ImageFormat}; +======= //! Optical Flow implementation - Lucas-Kanade Pyramidal Optical Flow //! //! Implements the pyramidal Lucas-Kanade optical flow algorithm as specified @@ -7,6 +13,7 @@ use openvx_core::{Context, Referenceable, VxResult, VxKernel, KernelTrait, VxStatus}; use openvx_image::Image; use crate::utils::{get_pixel_bordered, BorderMode, clamp_u8}; +>>>>>>> origin/master /// OpticalFlowPyrLK kernel - Lucas-Kanade pyramidal optical flow pub struct OpticalFlowPyrLKKernel; @@ -20,6 +27,10 @@ impl KernelTrait for OpticalFlowPyrLKKernel { fn get_enum(&self) -> VxKernel { VxKernel::OpticalFlowPyrLK } fn validate(&self, params: &[&dyn Referenceable]) -> VxResult<()> { +<<<<<<< HEAD + if params.len() < 5 { + return Err(openvx_core::VxStatus::ErrorInvalidParameters); +======= // optical_flow_pyr_lk expects 7 parameters: // 0: old_pyramid (pyramid) // 1: new_pyramid (pyramid) @@ -33,17 +44,70 @@ impl KernelTrait for OpticalFlowPyrLKKernel { // 9: use_initial_estimate (optional scalar) if params.len() < 5 { return Err(VxStatus::ErrorInvalidParameters); +>>>>>>> origin/master } Ok(()) } fn execute(&self, _params: &[&dyn Referenceable], _context: &Context) -> VxResult<()> { +<<<<<<< HEAD + // Simplified: just run successfully +======= // The actual execution is handled by the VXU implementation // which works with C API types directly +>>>>>>> origin/master Ok(()) } } +<<<<<<< HEAD +/// Build a Gaussian pyramid (5 levels with 5x5 kernel) +pub fn build_gaussian_pyramid(image: &Image, levels: usize) -> VxResult> { + let mut pyramid = Vec::with_capacity(levels); + pyramid.push(Image::new(image.width(), image.height(), ImageFormat::Gray)); + + // Copy first level + let src_data = image.data(); + { + let mut dst_data = pyramid[0].data_mut(); + dst_data.copy_from_slice(src_data.as_ref()); + } + + // Build subsequent levels + let mut prev_width = image.width(); + let mut prev_height = image.height(); + + for i in 1..levels { + let width = (prev_width + 1) / 2; + let height = (prev_height + 1) / 2; + pyramid.push(Image::new(width, height, ImageFormat::Gray)); + + // Apply Gaussian blur then downsample + let temp = Image::new(prev_width, prev_height, ImageFormat::Gray); + crate::filter::gaussian5x5(&pyramid[i - 1], &temp)?; + downsample(&temp, &pyramid[i])?; + + prev_width = width; + prev_height = height; + } + + Ok(pyramid) +} + +/// Downsample by 2x using averaging +fn downsample(src: &Image, dst: &Image) -> VxResult<()> { + let src_width = src.width(); + let src_height = src.height(); + let dst_width = dst.width(); + let dst_height = dst.height(); + + let mut dst_data = dst.data_mut(); + + for y in 0..dst_height { + for x in 0..dst_width { + let src_x = x * 2; + let src_y = y * 2; +======= /// Gaussian pyramid level structure #[derive(Debug, Clone)] pub struct PyramidLevel { @@ -135,6 +199,7 @@ fn downsample_by_2(data: &[u8], width: usize, height: usize) -> Vec { for x in 0..new_width { let src_y = y * 2; let src_x = x * 2; +>>>>>>> origin/master // Average 2x2 block let mut sum = 0u32; @@ -142,15 +207,51 @@ fn downsample_by_2(data: &[u8], width: usize, height: usize) -> Vec { for dy in 0..2 { for dx in 0..2 { +<<<<<<< HEAD + let sx = src_x + dx; + let sy = src_y + dy; + if sx < src_width && sy < src_height { + sum += src.get_pixel(sx, sy) as u32; +======= let sy = src_y + dy; let sx = src_x + dx; if sx < width && sy < height { sum += data[sy * width + sx] as u32; +>>>>>>> origin/master count += 1; } } } +<<<<<<< HEAD + dst_data[y * dst_width + x] = (sum / count.max(1)) as u8; + } + } + + Ok(()) +} + +/// Lucas-Kanade optical flow at a single pyramid level +pub fn lucas_kanade( + prev: &Image, + next: &Image, + points: &[(f32, f32)], + window_size: usize, + max_iter: usize, +) -> VxResult> { + let width = prev.width(); + let height = prev.height(); + let half_window = (window_size / 2) as isize; + + let mut flow = Vec::with_capacity(points.len()); + + for &(px, py) in points { + let mut u: f32 = 0.0; + let mut v: f32 = 0.0; + + // Iterative refinement + for _ in 0..max_iter { +======= result[y * new_width + x] = (sum / count.max(1)) as u8; } } @@ -190,14 +291,20 @@ pub fn lucas_kanade_single_level( // Iterative refinement for _iter in 0..max_iter { +>>>>>>> origin/master let mut sum_ix2: f32 = 0.0; let mut sum_iy2: f32 = 0.0; let mut sum_ixiy: f32 = 0.0; let mut sum_ixit: f32 = 0.0; let mut sum_iyit: f32 = 0.0; +<<<<<<< HEAD + + // Compute structure tensor and temporal derivatives +======= let mut valid_pixels = 0; // Compute spatial gradients and temporal gradient +>>>>>>> origin/master for wy in -half_window..=half_window { for wx in -half_window..=half_window { let x = px as isize + wx; @@ -207,6 +314,16 @@ pub fn lucas_kanade_single_level( continue; } +<<<<<<< HEAD + // Spatial gradients (using simple finite differences) + let ix = compute_grad_x(prev, x as usize, y as usize); + let iy = compute_grad_y(prev, x as usize, y as usize); + + // Temporal gradient (frame difference) + let curr_x = (x as f32 + u).max(0.0).min(width as f32 - 1.0) as usize; + let curr_y = (y as f32 + v).max(0.0).min(height as f32 - 1.0) as usize; + let it = next.get_pixel(curr_x, curr_y) as f32 - prev.get_pixel(x as usize, y as usize) as f32; +======= let x = x as usize; let y = y as usize; valid_pixels += 1; @@ -222,6 +339,7 @@ pub fn lucas_kanade_single_level( let prev_val = prev_level.data[y * width + x] as f32; let next_val = next_level.data[curr_y * width + curr_x] as f32; let it = next_val - prev_val; +>>>>>>> origin/master sum_ix2 += ix * ix; sum_iy2 += iy * iy; @@ -231,6 +349,12 @@ pub fn lucas_kanade_single_level( } } +<<<<<<< HEAD + // Solve 2x2 system using Cramer's rule + let det = sum_ix2 * sum_iy2 - sum_ixiy * sum_ixiy; + if det.abs() < 1e-6 { + break; // Singular matrix +======= // Check if we have enough valid pixels in the window if valid_pixels < window_size * window_size / 2 { valid = false; @@ -245,11 +369,19 @@ pub fn lucas_kanade_single_level( if det.abs() < 1e-6 { valid = false; break; +>>>>>>> origin/master } let du = (sum_iy2 * sum_ixit - sum_ixiy * sum_iyit) / det; let dv = (sum_ix2 * sum_iyit - sum_ixiy * sum_ixit) / det; +<<<<<<< HEAD + u -= du; + v -= dv; + + if du.abs() < 0.01 && dv.abs() < 0.01 { + break; // Converged +======= // Update flow u -= du; v -= dv; @@ -258,10 +390,83 @@ pub fn lucas_kanade_single_level( if du * du + dv * dv < epsilon * epsilon { converged = true; break; +>>>>>>> origin/master } } flow.push((u, v)); +<<<<<<< HEAD + } + + Ok(flow) +} + +/// Pyramidal Lucas-Kanade optical flow +pub fn optical_flow_pyr_lk( + prev_pyramid: &[Image], + next_pyramid: &[Image], + prev_points: &[(f32, f32)], + window_size: usize, + max_iter: usize, +) -> VxResult> { + let levels = prev_pyramid.len(); + let mut flow: Vec<(f32, f32)> = vec![(0.0, 0.0); prev_points.len()]; + + // Coarse-to-fine refinement + for level in (0..levels).rev() { + // Scale points for this level + let scale = 1u32 << level; + let level_points: Vec<(f32, f32)> = prev_points + .iter() + .map(|(x, y)| (x / scale as f32, y / scale as f32)) + .collect(); + + // Add previous level's flow + let level_points_with_flow: Vec<(f32, f32)> = level_points + .iter() + .enumerate() + .map(|(i, (x, y))| (x + flow[i].0 / scale as f32, y + flow[i].1 / scale as f32)) + .collect(); + + // Compute optical flow at this level + let level_flow = lucas_kanade( + &prev_pyramid[level], + &next_pyramid[level], + &level_points_with_flow, + window_size, + max_iter, + )?; + + // Accumulate flow + if level < levels - 1 { + for i in 0..flow.len() { + flow[i].0 += level_flow[i].0 * scale as f32; + flow[i].1 += level_flow[i].1 * scale as f32; + } + } else { + flow = level_flow; + } + } + + Ok(flow) +} + +/// Compute x gradient using central differences +fn compute_grad_x(img: &Image, x: usize, y: usize) -> f32 { + let width = img.width(); + let left = if x > 0 { img.get_pixel(x - 1, y) } else { img.get_pixel(x, y) }; + let right = if x + 1 < width { img.get_pixel(x + 1, y) } else { img.get_pixel(x, y) }; + (right as f32 - left as f32) / 2.0 +} + +/// Compute y gradient using central differences +fn compute_grad_y(img: &Image, x: usize, y: usize) -> f32 { + let height = img.height(); + let top = if y > 0 { img.get_pixel(x, y - 1) } else { img.get_pixel(x, y) }; + let bottom = if y + 1 < height { img.get_pixel(x, y + 1) } else { img.get_pixel(x, y) }; + (bottom as f32 - top as f32) / 2.0 +} +======= status.push(valid); } @@ -475,3 +680,4 @@ mod tests { assert!(blurred.iter().all(|&v| v == 128)); } } +>>>>>>> origin/master diff --git a/target/.rustc_info.json b/target/.rustc_info.json index d3edc06..aafc2c7 100644 --- a/target/.rustc_info.json +++ b/target/.rustc_info.json @@ -1 +1,5 @@ -{"rustc_fingerprint":16252605033801681326,"outputs":{"17747080675513052775":{"success":true,"status":"","code":0,"stdout":"rustc 1.94.0 (4a4ef493e 2026-03-02)\nbinary: rustc\ncommit-hash: 4a4ef493e3a1488c6e321570238084b38948f6db\ncommit-date: 2026-03-02\nhost: x86_64-unknown-linux-gnu\nrelease: 1.94.0\nLLVM version: 21.1.8\n","stderr":""},"7971740275564407648":{"success":true,"status":"","code":0,"stdout":"___\nlib___.rlib\nlib___.so\nlib___.so\nlib___.a\nlib___.so\n/home/simon/.rustup/toolchains/stable-x86_64-unknown-linux-gnu\noff\npacked\nunpacked\n___\ndebug_assertions\npanic=\"unwind\"\nproc_macro\ntarget_abi=\"\"\ntarget_arch=\"x86_64\"\ntarget_endian=\"little\"\ntarget_env=\"gnu\"\ntarget_family=\"unix\"\ntarget_feature=\"fxsr\"\ntarget_feature=\"sse\"\ntarget_feature=\"sse2\"\ntarget_has_atomic=\"16\"\ntarget_has_atomic=\"32\"\ntarget_has_atomic=\"64\"\ntarget_has_atomic=\"8\"\ntarget_has_atomic=\"ptr\"\ntarget_os=\"linux\"\ntarget_pointer_width=\"64\"\ntarget_vendor=\"unknown\"\nunix\n","stderr":""}},"successes":{}} \ No newline at end of file +<<<<<<< HEAD +{"rustc_fingerprint":16252605033801681326,"outputs":{"7971740275564407648":{"success":true,"status":"","code":0,"stdout":"___\nlib___.rlib\nlib___.so\nlib___.so\nlib___.a\nlib___.so\n/home/simon/.rustup/toolchains/stable-x86_64-unknown-linux-gnu\noff\npacked\nunpacked\n___\ndebug_assertions\npanic=\"unwind\"\nproc_macro\ntarget_abi=\"\"\ntarget_arch=\"x86_64\"\ntarget_endian=\"little\"\ntarget_env=\"gnu\"\ntarget_family=\"unix\"\ntarget_feature=\"fxsr\"\ntarget_feature=\"sse\"\ntarget_feature=\"sse2\"\ntarget_has_atomic=\"16\"\ntarget_has_atomic=\"32\"\ntarget_has_atomic=\"64\"\ntarget_has_atomic=\"8\"\ntarget_has_atomic=\"ptr\"\ntarget_os=\"linux\"\ntarget_pointer_width=\"64\"\ntarget_vendor=\"unknown\"\nunix\n","stderr":""},"17747080675513052775":{"success":true,"status":"","code":0,"stdout":"rustc 1.94.0 (4a4ef493e 2026-03-02)\nbinary: rustc\ncommit-hash: 4a4ef493e3a1488c6e321570238084b38948f6db\ncommit-date: 2026-03-02\nhost: x86_64-unknown-linux-gnu\nrelease: 1.94.0\nLLVM version: 21.1.8\n","stderr":""}},"successes":{}} +======= +{"rustc_fingerprint":16252605033801681326,"outputs":{"17747080675513052775":{"success":true,"status":"","code":0,"stdout":"rustc 1.94.0 (4a4ef493e 2026-03-02)\nbinary: rustc\ncommit-hash: 4a4ef493e3a1488c6e321570238084b38948f6db\ncommit-date: 2026-03-02\nhost: x86_64-unknown-linux-gnu\nrelease: 1.94.0\nLLVM version: 21.1.8\n","stderr":""},"7971740275564407648":{"success":true,"status":"","code":0,"stdout":"___\nlib___.rlib\nlib___.so\nlib___.so\nlib___.a\nlib___.so\n/home/simon/.rustup/toolchains/stable-x86_64-unknown-linux-gnu\noff\npacked\nunpacked\n___\ndebug_assertions\npanic=\"unwind\"\nproc_macro\ntarget_abi=\"\"\ntarget_arch=\"x86_64\"\ntarget_endian=\"little\"\ntarget_env=\"gnu\"\ntarget_family=\"unix\"\ntarget_feature=\"fxsr\"\ntarget_feature=\"sse\"\ntarget_feature=\"sse2\"\ntarget_has_atomic=\"16\"\ntarget_has_atomic=\"32\"\ntarget_has_atomic=\"64\"\ntarget_has_atomic=\"8\"\ntarget_has_atomic=\"ptr\"\ntarget_os=\"linux\"\ntarget_pointer_width=\"64\"\ntarget_vendor=\"unknown\"\nunix\n","stderr":""}},"successes":{}} +>>>>>>> origin/master diff --git a/target/debug/.fingerprint/indexmap-5e45f313593e9b16/dep-lib-indexmap b/target/debug/.fingerprint/indexmap-5e45f313593e9b16/dep-lib-indexmap new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/target/debug/.fingerprint/indexmap-5e45f313593e9b16/dep-lib-indexmap differ diff --git a/target/debug/.fingerprint/indexmap-5e45f313593e9b16/invoked.timestamp b/target/debug/.fingerprint/indexmap-5e45f313593e9b16/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/debug/.fingerprint/indexmap-5e45f313593e9b16/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/debug/.fingerprint/indexmap-5e45f313593e9b16/lib-indexmap b/target/debug/.fingerprint/indexmap-5e45f313593e9b16/lib-indexmap new file mode 100644 index 0000000..acc48fe --- /dev/null +++ b/target/debug/.fingerprint/indexmap-5e45f313593e9b16/lib-indexmap @@ -0,0 +1 @@ +87db35d8e17ebdd2 \ No newline at end of file diff --git a/target/debug/.fingerprint/indexmap-5e45f313593e9b16/lib-indexmap.json b/target/debug/.fingerprint/indexmap-5e45f313593e9b16/lib-indexmap.json new file mode 100644 index 0000000..6222af1 --- /dev/null +++ b/target/debug/.fingerprint/indexmap-5e45f313593e9b16/lib-indexmap.json @@ -0,0 +1 @@ +{"rustc":18276270781310494267,"features":"[\"default\", \"std\"]","declared_features":"[\"arbitrary\", \"borsh\", \"default\", \"quickcheck\", \"rayon\", \"serde\", \"std\", \"sval\", \"test_debug\"]","target":10391229881554802429,"profile":10949383280008172279,"path":16989631437549223344,"deps":[[5230392855116717286,"equivalent",false,7573951787572691809],[17037126617600641945,"hashbrown",false,10735054059116559806]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/indexmap-5e45f313593e9b16/dep-lib-indexmap","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/target/debug/.fingerprint/openvx-buffer-af9d7813295718d6/dep-lib-openvx_buffer b/target/debug/.fingerprint/openvx-buffer-af9d7813295718d6/dep-lib-openvx_buffer new file mode 100644 index 0000000..477a64f Binary files /dev/null and b/target/debug/.fingerprint/openvx-buffer-af9d7813295718d6/dep-lib-openvx_buffer differ diff --git a/target/debug/.fingerprint/openvx-buffer-af9d7813295718d6/invoked.timestamp b/target/debug/.fingerprint/openvx-buffer-af9d7813295718d6/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/debug/.fingerprint/openvx-buffer-af9d7813295718d6/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/debug/.fingerprint/openvx-buffer-af9d7813295718d6/lib-openvx_buffer b/target/debug/.fingerprint/openvx-buffer-af9d7813295718d6/lib-openvx_buffer new file mode 100644 index 0000000..0b6f007 --- /dev/null +++ b/target/debug/.fingerprint/openvx-buffer-af9d7813295718d6/lib-openvx_buffer @@ -0,0 +1 @@ +7b0ac69bb27c5441 \ No newline at end of file diff --git a/target/debug/.fingerprint/openvx-buffer-af9d7813295718d6/lib-openvx_buffer.json b/target/debug/.fingerprint/openvx-buffer-af9d7813295718d6/lib-openvx_buffer.json new file mode 100644 index 0000000..aeb39aa --- /dev/null +++ b/target/debug/.fingerprint/openvx-buffer-af9d7813295718d6/lib-openvx_buffer.json @@ -0,0 +1 @@ +{"rustc":18276270781310494267,"features":"[]","declared_features":"[]","target":6591159341453408700,"profile":8731458305071235362,"path":15201106698982548229,"deps":[[4809150008149002099,"openvx_core",false,7053352861161987420]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/openvx-buffer-af9d7813295718d6/dep-lib-openvx_buffer","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/target/debug/.fingerprint/openvx-buffer-af9d7813295718d6/output-lib-openvx_buffer b/target/debug/.fingerprint/openvx-buffer-af9d7813295718d6/output-lib-openvx_buffer new file mode 100644 index 0000000..408e285 --- /dev/null +++ b/target/debug/.fingerprint/openvx-buffer-af9d7813295718d6/output-lib-openvx_buffer @@ -0,0 +1,6 @@ +{"$message_type":"diagnostic","message":"unused imports: `VX_READ_AND_WRITE`, `VX_READ_ONLY`, and `VX_WRITE_ONLY`","code":{"code":"unused_imports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-buffer/src/c_api.rs","byte_start":558,"byte_end":570,"line_start":13,"line_end":13,"column_start":5,"column_end":17,"is_primary":true,"text":[{"text":" VX_READ_ONLY, VX_WRITE_ONLY, VX_READ_AND_WRITE, VX_MEMORY_TYPE_HOST, VX_MEMORY_TYPE_NONE,","highlight_start":5,"highlight_end":17}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-buffer/src/c_api.rs","byte_start":572,"byte_end":585,"line_start":13,"line_end":13,"column_start":19,"column_end":32,"is_primary":true,"text":[{"text":" VX_READ_ONLY, VX_WRITE_ONLY, VX_READ_AND_WRITE, VX_MEMORY_TYPE_HOST, VX_MEMORY_TYPE_NONE,","highlight_start":19,"highlight_end":32}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-buffer/src/c_api.rs","byte_start":587,"byte_end":604,"line_start":13,"line_end":13,"column_start":34,"column_end":51,"is_primary":true,"text":[{"text":" VX_READ_ONLY, VX_WRITE_ONLY, VX_READ_AND_WRITE, VX_MEMORY_TYPE_HOST, VX_MEMORY_TYPE_NONE,","highlight_start":34,"highlight_end":51}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(unused_imports)]` (part of `#[warn(unused)]`) on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"remove the unused imports","code":null,"level":"help","spans":[{"file_name":"openvx-buffer/src/c_api.rs","byte_start":552,"byte_end":604,"line_start":12,"line_end":13,"column_start":79,"column_end":51,"is_primary":true,"text":[{"text":" VX_ARRAY_CAPACITY, VX_ARRAY_ITEMTYPE, VX_ARRAY_NUMITEMS, VX_ARRAY_ITEMSIZE,","highlight_start":79,"highlight_end":80},{"text":" VX_READ_ONLY, VX_WRITE_ONLY, VX_READ_AND_WRITE, VX_MEMORY_TYPE_HOST, VX_MEMORY_TYPE_NONE,","highlight_start":1,"highlight_end":51}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused imports: `VX_READ_AND_WRITE`, `VX_READ_ONLY`, and `VX_WRITE_ONLY`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-buffer/src/c_api.rs:13:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m13\u001b[0m \u001b[1m\u001b[94m|\u001b[0m VX_READ_ONLY, VX_WRITE_ONLY, VX_READ_AND_WRITE, VX_MEMORY_TYPE_HOST, VX_MEMORY_TYPE_NONE,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m= \u001b[0m\u001b[1mnote\u001b[0m: `#[warn(unused_imports)]` (part of `#[warn(unused)]`) on by default\n\n"} +{"$message_type":"diagnostic","message":"unused import: `std::sync::Mutex`","code":{"code":"unused_imports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-buffer/src/c_api.rs","byte_start":1942,"byte_end":1958,"line_start":55,"line_end":55,"column_start":5,"column_end":21,"is_primary":true,"text":[{"text":"use std::sync::Mutex;","highlight_start":5,"highlight_end":21}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"remove the whole `use` item","code":null,"level":"help","spans":[{"file_name":"openvx-buffer/src/c_api.rs","byte_start":1938,"byte_end":1960,"line_start":55,"line_end":56,"column_start":1,"column_end":1,"is_primary":true,"text":[{"text":"use std::sync::Mutex;","highlight_start":1,"highlight_end":22},{"text":"static ARRAY_ID_COUNTER: AtomicUsize = AtomicUsize::new(1);","highlight_start":1,"highlight_end":1}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused import: `std::sync::Mutex`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-buffer/src/c_api.rs:55:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m55\u001b[0m \u001b[1m\u001b[94m|\u001b[0m use std::sync::Mutex;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unnecessary `unsafe` block","code":{"code":"unused_unsafe","explanation":null},"level":"warning","spans":[{"file_name":"openvx-buffer/src/c_api.rs","byte_start":2934,"byte_end":2940,"line_start":94,"line_end":94,"column_start":5,"column_end":11,"is_primary":true,"text":[{"text":" unsafe {","highlight_start":5,"highlight_end":11}],"label":"unnecessary `unsafe` block","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(unused_unsafe)]` (part of `#[warn(unused)]`) on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unnecessary `unsafe` block\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-buffer/src/c_api.rs:94:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m94\u001b[0m \u001b[1m\u001b[94m|\u001b[0m unsafe {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m \u001b[1m\u001b[33munnecessary `unsafe` block\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m= \u001b[0m\u001b[1mnote\u001b[0m: `#[warn(unused_unsafe)]` (part of `#[warn(unused)]`) on by default\n\n"} +{"$message_type":"diagnostic","message":"unnecessary `unsafe` block","code":{"code":"unused_unsafe","explanation":null},"level":"warning","spans":[{"file_name":"openvx-buffer/src/c_api.rs","byte_start":3148,"byte_end":3154,"line_start":101,"line_end":101,"column_start":5,"column_end":11,"is_primary":true,"text":[{"text":" unsafe {","highlight_start":5,"highlight_end":11}],"label":"unnecessary `unsafe` block","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unnecessary `unsafe` block\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-buffer/src/c_api.rs:101:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m101\u001b[0m \u001b[1m\u001b[94m|\u001b[0m unsafe {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m \u001b[1m\u001b[33munnecessary `unsafe` block\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"field `context` is never read","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-buffer/src/c_api.rs","byte_start":861,"byte_end":869,"line_start":19,"line_end":19,"column_start":12,"column_end":20,"is_primary":false,"text":[{"text":"pub struct VxCArray {","highlight_start":12,"highlight_end":20}],"label":"field in this struct","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-buffer/src/c_api.rs","byte_start":1006,"byte_end":1013,"line_start":25,"line_end":25,"column_start":5,"column_end":12,"is_primary":true,"text":[{"text":" context: vx_context,","highlight_start":5,"highlight_end":12}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(dead_code)]` (part of `#[warn(unused)]`) on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: field `context` is never read\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-buffer/src/c_api.rs:25:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m19\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub struct VxCArray {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m--------\u001b[0m \u001b[1m\u001b[94mfield in this struct\u001b[0m\n\u001b[1m\u001b[94m...\u001b[0m\n\u001b[1m\u001b[94m25\u001b[0m \u001b[1m\u001b[94m|\u001b[0m context: vx_context,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m= \u001b[0m\u001b[1mnote\u001b[0m: `#[warn(dead_code)]` (part of `#[warn(unused)]`) on by default\n\n"} +{"$message_type":"diagnostic","message":"5 warnings emitted","code":null,"level":"warning","spans":[],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: 5 warnings emitted\u001b[0m\n\n"} diff --git a/target/debug/.fingerprint/openvx-core-2aca26941ac0a37f/dep-lib-openvx_core b/target/debug/.fingerprint/openvx-core-2aca26941ac0a37f/dep-lib-openvx_core new file mode 100644 index 0000000..b392043 Binary files /dev/null and b/target/debug/.fingerprint/openvx-core-2aca26941ac0a37f/dep-lib-openvx_core differ diff --git a/target/debug/.fingerprint/openvx-core-2aca26941ac0a37f/lib-openvx_core b/target/debug/.fingerprint/openvx-core-2aca26941ac0a37f/lib-openvx_core new file mode 100644 index 0000000..6951197 --- /dev/null +++ b/target/debug/.fingerprint/openvx-core-2aca26941ac0a37f/lib-openvx_core @@ -0,0 +1 @@ +5c9d0b950e8be261 \ No newline at end of file diff --git a/target/debug/.fingerprint/openvx-core-2aca26941ac0a37f/lib-openvx_core.json b/target/debug/.fingerprint/openvx-core-2aca26941ac0a37f/lib-openvx_core.json new file mode 100644 index 0000000..d0b5173 --- /dev/null +++ b/target/debug/.fingerprint/openvx-core-2aca26941ac0a37f/lib-openvx_core.json @@ -0,0 +1 @@ +{"rustc":18276270781310494267,"features":"[\"default\"]","declared_features":"[\"c-api\", \"default\"]","target":1909464329141176262,"profile":8731458305071235362,"path":17993126686957639070,"deps":[[5855319743879205494,"once_cell",false,537583747655785242],[8008191657135824715,"thiserror",false,3959828225944927243],[10630857666389190470,"log",false,12377462125728664517],[12459942763388630573,"parking_lot",false,15637487299784215481],[16532555906320553198,"petgraph",false,4553440737847282043]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/openvx-core-2aca26941ac0a37f/dep-lib-openvx_core","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/target/debug/.fingerprint/openvx-core-2aca26941ac0a37f/output-lib-openvx_core b/target/debug/.fingerprint/openvx-core-2aca26941ac0a37f/output-lib-openvx_core index d217da0..2410f72 100644 --- a/target/debug/.fingerprint/openvx-core-2aca26941ac0a37f/output-lib-openvx_core +++ b/target/debug/.fingerprint/openvx-core-2aca26941ac0a37f/output-lib-openvx_core @@ -1,4 +1,45 @@ {"$message_type":"diagnostic","message":"unused import: `VxCGraphData`","code":{"code":"unused_imports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":334,"byte_end":346,"line_start":11,"line_end":11,"column_start":41,"column_end":53,"is_primary":true,"text":[{"text":"use crate::unified_c_api::{GRAPHS_DATA, VxCGraphData};","highlight_start":41,"highlight_end":53}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(unused_imports)]` (part of `#[warn(unused)]`) on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"remove the unused import","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":332,"byte_end":346,"line_start":11,"line_end":11,"column_start":39,"column_end":53,"is_primary":true,"text":[{"text":"use crate::unified_c_api::{GRAPHS_DATA, VxCGraphData};","highlight_start":39,"highlight_end":53}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null},{"file_name":"openvx-core/src/c_api.rs","byte_start":320,"byte_end":321,"line_start":11,"line_end":11,"column_start":27,"column_end":28,"is_primary":true,"text":[{"text":"use crate::unified_c_api::{GRAPHS_DATA, VxCGraphData};","highlight_start":27,"highlight_end":28}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null},{"file_name":"openvx-core/src/c_api.rs","byte_start":346,"byte_end":347,"line_start":11,"line_end":11,"column_start":53,"column_end":54,"is_primary":true,"text":[{"text":"use crate::unified_c_api::{GRAPHS_DATA, VxCGraphData};","highlight_start":53,"highlight_end":54}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused import: `VxCGraphData`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api.rs:11:41\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m11\u001b[0m \u001b[1m\u001b[94m|\u001b[0m use crate::unified_c_api::{GRAPHS_DATA, VxCGraphData};\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m= \u001b[0m\u001b[1mnote\u001b[0m: `#[warn(unused_imports)]` (part of `#[warn(unused)]`) on by default\n\n"} +<<<<<<< HEAD +{"$message_type":"diagnostic","message":"type `vx_status` should have an upper camel case name","code":{"code":"non_camel_case_types","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":678,"byte_end":687,"line_start":20,"line_end":20,"column_start":10,"column_end":19,"is_primary":true,"text":[{"text":"pub type vx_status = i32;","highlight_start":10,"highlight_end":19}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(non_camel_case_types)]` (part of `#[warn(nonstandard_style)]`) on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"convert the identifier to upper camel case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":678,"byte_end":687,"line_start":20,"line_end":20,"column_start":10,"column_end":19,"is_primary":true,"text":[{"text":"pub type vx_status = i32;","highlight_start":10,"highlight_end":19}],"label":null,"suggested_replacement":"VxStatus","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: type `vx_status` should have an upper camel case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api.rs:20:10\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m20\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub type vx_status = i32;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper camel case: `VxStatus`\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m= \u001b[0m\u001b[1mnote\u001b[0m: `#[warn(non_camel_case_types)]` (part of `#[warn(nonstandard_style)]`) on by default\n\n"} +{"$message_type":"diagnostic","message":"type `vx_enum` should have an upper camel case name","code":{"code":"non_camel_case_types","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":704,"byte_end":711,"line_start":21,"line_end":21,"column_start":10,"column_end":17,"is_primary":true,"text":[{"text":"pub type vx_enum = i32;","highlight_start":10,"highlight_end":17}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to upper camel case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":704,"byte_end":711,"line_start":21,"line_end":21,"column_start":10,"column_end":17,"is_primary":true,"text":[{"text":"pub type vx_enum = i32;","highlight_start":10,"highlight_end":17}],"label":null,"suggested_replacement":"VxEnum","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: type `vx_enum` should have an upper camel case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api.rs:21:10\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m21\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub type vx_enum = i32;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper camel case: `VxEnum`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"type `vx_uint32` should have an upper camel case name","code":{"code":"non_camel_case_types","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":728,"byte_end":737,"line_start":22,"line_end":22,"column_start":10,"column_end":19,"is_primary":true,"text":[{"text":"pub type vx_uint32 = u32;","highlight_start":10,"highlight_end":19}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to upper camel case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":728,"byte_end":737,"line_start":22,"line_end":22,"column_start":10,"column_end":19,"is_primary":true,"text":[{"text":"pub type vx_uint32 = u32;","highlight_start":10,"highlight_end":19}],"label":null,"suggested_replacement":"VxUint32","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: type `vx_uint32` should have an upper camel case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api.rs:22:10\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m22\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub type vx_uint32 = u32;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper camel case: `VxUint32`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"type `vx_size` should have an upper camel case name","code":{"code":"non_camel_case_types","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":754,"byte_end":761,"line_start":23,"line_end":23,"column_start":10,"column_end":17,"is_primary":true,"text":[{"text":"pub type vx_size = usize;","highlight_start":10,"highlight_end":17}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to upper camel case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":754,"byte_end":761,"line_start":23,"line_end":23,"column_start":10,"column_end":17,"is_primary":true,"text":[{"text":"pub type vx_size = usize;","highlight_start":10,"highlight_end":17}],"label":null,"suggested_replacement":"VxSize","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: type `vx_size` should have an upper camel case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api.rs:23:10\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m23\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub type vx_size = usize;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper camel case: `VxSize`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"type `vx_char` should have an upper camel case name","code":{"code":"non_camel_case_types","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":780,"byte_end":787,"line_start":24,"line_end":24,"column_start":10,"column_end":17,"is_primary":true,"text":[{"text":"pub type vx_char = i8;","highlight_start":10,"highlight_end":17}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to upper camel case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":780,"byte_end":787,"line_start":24,"line_end":24,"column_start":10,"column_end":17,"is_primary":true,"text":[{"text":"pub type vx_char = i8;","highlight_start":10,"highlight_end":17}],"label":null,"suggested_replacement":"VxChar","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: type `vx_char` should have an upper camel case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api.rs:24:10\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m24\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub type vx_char = i8;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper camel case: `VxChar`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"type `vx_bool` should have an upper camel case name","code":{"code":"non_camel_case_types","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":803,"byte_end":810,"line_start":25,"line_end":25,"column_start":10,"column_end":17,"is_primary":true,"text":[{"text":"pub type vx_bool = i32;","highlight_start":10,"highlight_end":17}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to upper camel case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":803,"byte_end":810,"line_start":25,"line_end":25,"column_start":10,"column_end":17,"is_primary":true,"text":[{"text":"pub type vx_bool = i32;","highlight_start":10,"highlight_end":17}],"label":null,"suggested_replacement":"VxBool","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: type `vx_bool` should have an upper camel case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api.rs:25:10\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m25\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub type vx_bool = i32;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper camel case: `VxBool`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"type `vx_df_image` should have an upper camel case name","code":{"code":"non_camel_case_types","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":827,"byte_end":838,"line_start":26,"line_end":26,"column_start":10,"column_end":21,"is_primary":true,"text":[{"text":"pub type vx_df_image = u32;","highlight_start":10,"highlight_end":21}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to upper camel case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":827,"byte_end":838,"line_start":26,"line_end":26,"column_start":10,"column_end":21,"is_primary":true,"text":[{"text":"pub type vx_df_image = u32;","highlight_start":10,"highlight_end":21}],"label":null,"suggested_replacement":"VxDfImage","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: type `vx_df_image` should have an upper camel case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api.rs:26:10\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m26\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub type vx_df_image = u32;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper camel case: `VxDfImage`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"type `vx_uint64` should have an upper camel case name","code":{"code":"non_camel_case_types","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":855,"byte_end":864,"line_start":27,"line_end":27,"column_start":10,"column_end":19,"is_primary":true,"text":[{"text":"pub type vx_uint64 = u64;","highlight_start":10,"highlight_end":19}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to upper camel case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":855,"byte_end":864,"line_start":27,"line_end":27,"column_start":10,"column_end":19,"is_primary":true,"text":[{"text":"pub type vx_uint64 = u64;","highlight_start":10,"highlight_end":19}],"label":null,"suggested_replacement":"VxUint64","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: type `vx_uint64` should have an upper camel case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api.rs:27:10\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m27\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub type vx_uint64 = u64;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper camel case: `VxUint64`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"type `vx_int32` should have an upper camel case name","code":{"code":"non_camel_case_types","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":881,"byte_end":889,"line_start":28,"line_end":28,"column_start":10,"column_end":18,"is_primary":true,"text":[{"text":"pub type vx_int32 = i32;","highlight_start":10,"highlight_end":18}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to upper camel case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":881,"byte_end":889,"line_start":28,"line_end":28,"column_start":10,"column_end":18,"is_primary":true,"text":[{"text":"pub type vx_int32 = i32;","highlight_start":10,"highlight_end":18}],"label":null,"suggested_replacement":"VxInt32","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: type `vx_int32` should have an upper camel case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api.rs:28:10\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m28\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub type vx_int32 = i32;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper camel case: `VxInt32`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"type `vx_int8` should have an upper camel case name","code":{"code":"non_camel_case_types","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":906,"byte_end":913,"line_start":29,"line_end":29,"column_start":10,"column_end":17,"is_primary":true,"text":[{"text":"pub type vx_int8 = i8;","highlight_start":10,"highlight_end":17}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to upper camel case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":906,"byte_end":913,"line_start":29,"line_end":29,"column_start":10,"column_end":17,"is_primary":true,"text":[{"text":"pub type vx_int8 = i8;","highlight_start":10,"highlight_end":17}],"label":null,"suggested_replacement":"VxInt8","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: type `vx_int8` should have an upper camel case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api.rs:29:10\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m29\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub type vx_int8 = i8;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper camel case: `VxInt8`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"type `vx_float32` should have an upper camel case name","code":{"code":"non_camel_case_types","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":929,"byte_end":939,"line_start":30,"line_end":30,"column_start":10,"column_end":20,"is_primary":true,"text":[{"text":"pub type vx_float32 = f32;","highlight_start":10,"highlight_end":20}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to upper camel case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":929,"byte_end":939,"line_start":30,"line_end":30,"column_start":10,"column_end":20,"is_primary":true,"text":[{"text":"pub type vx_float32 = f32;","highlight_start":10,"highlight_end":20}],"label":null,"suggested_replacement":"VxFloat32","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: type `vx_float32` should have an upper camel case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api.rs:30:10\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m30\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub type vx_float32 = f32;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper camel case: `VxFloat32`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"type `vx_map_id` should have an upper camel case name","code":{"code":"non_camel_case_types","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":956,"byte_end":965,"line_start":31,"line_end":31,"column_start":10,"column_end":19,"is_primary":true,"text":[{"text":"pub type vx_map_id = usize;","highlight_start":10,"highlight_end":19}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to upper camel case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":956,"byte_end":965,"line_start":31,"line_end":31,"column_start":10,"column_end":19,"is_primary":true,"text":[{"text":"pub type vx_map_id = usize;","highlight_start":10,"highlight_end":19}],"label":null,"suggested_replacement":"VxMapId","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: type `vx_map_id` should have an upper camel case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api.rs:31:10\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m31\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub type vx_map_id = usize;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper camel case: `VxMapId`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"type `vx_context` should have an upper camel case name","code":{"code":"non_camel_case_types","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":1243,"byte_end":1253,"line_start":39,"line_end":39,"column_start":10,"column_end":20,"is_primary":true,"text":[{"text":"pub type vx_context = *mut VxContext;","highlight_start":10,"highlight_end":20}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to upper camel case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":1243,"byte_end":1253,"line_start":39,"line_end":39,"column_start":10,"column_end":20,"is_primary":true,"text":[{"text":"pub type vx_context = *mut VxContext;","highlight_start":10,"highlight_end":20}],"label":null,"suggested_replacement":"VxContext","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: type `vx_context` should have an upper camel case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api.rs:39:10\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m39\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub type vx_context = *mut VxContext;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper camel case: `VxContext`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"type `vx_graph` should have an upper camel case name","code":{"code":"non_camel_case_types","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":1334,"byte_end":1342,"line_start":43,"line_end":43,"column_start":10,"column_end":18,"is_primary":true,"text":[{"text":"pub type vx_graph = *mut VxGraph;","highlight_start":10,"highlight_end":18}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to upper camel case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":1334,"byte_end":1342,"line_start":43,"line_end":43,"column_start":10,"column_end":18,"is_primary":true,"text":[{"text":"pub type vx_graph = *mut VxGraph;","highlight_start":10,"highlight_end":18}],"label":null,"suggested_replacement":"VxGraph","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: type `vx_graph` should have an upper camel case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api.rs:43:10\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m43\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub type vx_graph = *mut VxGraph;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper camel case: `VxGraph`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"type `vx_node` should have an upper camel case name","code":{"code":"non_camel_case_types","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":1419,"byte_end":1426,"line_start":47,"line_end":47,"column_start":10,"column_end":17,"is_primary":true,"text":[{"text":"pub type vx_node = *mut VxNode;","highlight_start":10,"highlight_end":17}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to upper camel case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":1419,"byte_end":1426,"line_start":47,"line_end":47,"column_start":10,"column_end":17,"is_primary":true,"text":[{"text":"pub type vx_node = *mut VxNode;","highlight_start":10,"highlight_end":17}],"label":null,"suggested_replacement":"VxNode","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: type `vx_node` should have an upper camel case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api.rs:47:10\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m47\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub type vx_node = *mut VxNode;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper camel case: `VxNode`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"type `vx_kernel` should have an upper camel case name","code":{"code":"non_camel_case_types","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":1506,"byte_end":1515,"line_start":51,"line_end":51,"column_start":10,"column_end":19,"is_primary":true,"text":[{"text":"pub type vx_kernel = *mut VxKernel;","highlight_start":10,"highlight_end":19}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to upper camel case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":1506,"byte_end":1515,"line_start":51,"line_end":51,"column_start":10,"column_end":19,"is_primary":true,"text":[{"text":"pub type vx_kernel = *mut VxKernel;","highlight_start":10,"highlight_end":19}],"label":null,"suggested_replacement":"VxKernel","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: type `vx_kernel` should have an upper camel case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api.rs:51:10\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m51\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub type vx_kernel = *mut VxKernel;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper camel case: `VxKernel`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"type `vx_parameter` should have an upper camel case name","code":{"code":"non_camel_case_types","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":1603,"byte_end":1615,"line_start":55,"line_end":55,"column_start":10,"column_end":22,"is_primary":true,"text":[{"text":"pub type vx_parameter = *mut VxParameter;","highlight_start":10,"highlight_end":22}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to upper camel case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":1603,"byte_end":1615,"line_start":55,"line_end":55,"column_start":10,"column_end":22,"is_primary":true,"text":[{"text":"pub type vx_parameter = *mut VxParameter;","highlight_start":10,"highlight_end":22}],"label":null,"suggested_replacement":"VxParameter","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: type `vx_parameter` should have an upper camel case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api.rs:55:10\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m55\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub type vx_parameter = *mut VxParameter;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper camel case: `VxParameter`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"type `vx_scalar` should have an upper camel case name","code":{"code":"non_camel_case_types","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":1700,"byte_end":1709,"line_start":59,"line_end":59,"column_start":10,"column_end":19,"is_primary":true,"text":[{"text":"pub type vx_scalar = *mut VxScalar;","highlight_start":10,"highlight_end":19}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to upper camel case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":1700,"byte_end":1709,"line_start":59,"line_end":59,"column_start":10,"column_end":19,"is_primary":true,"text":[{"text":"pub type vx_scalar = *mut VxScalar;","highlight_start":10,"highlight_end":19}],"label":null,"suggested_replacement":"VxScalar","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: type `vx_scalar` should have an upper camel case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api.rs:59:10\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m59\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub type vx_scalar = *mut VxScalar;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper camel case: `VxScalar`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"type `vx_convolution` should have an upper camel case name","code":{"code":"non_camel_case_types","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":1801,"byte_end":1815,"line_start":63,"line_end":63,"column_start":10,"column_end":24,"is_primary":true,"text":[{"text":"pub type vx_convolution = *mut VxConvolution;","highlight_start":10,"highlight_end":24}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to upper camel case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":1801,"byte_end":1815,"line_start":63,"line_end":63,"column_start":10,"column_end":24,"is_primary":true,"text":[{"text":"pub type vx_convolution = *mut VxConvolution;","highlight_start":10,"highlight_end":24}],"label":null,"suggested_replacement":"VxConvolution","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: type `vx_convolution` should have an upper camel case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api.rs:63:10\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m63\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub type vx_convolution = *mut VxConvolution;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper camel case: `VxConvolution`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"type `vx_matrix` should have an upper camel case name","code":{"code":"non_camel_case_types","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":1902,"byte_end":1911,"line_start":67,"line_end":67,"column_start":10,"column_end":19,"is_primary":true,"text":[{"text":"pub type vx_matrix = *mut VxMatrix;","highlight_start":10,"highlight_end":19}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to upper camel case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":1902,"byte_end":1911,"line_start":67,"line_end":67,"column_start":10,"column_end":19,"is_primary":true,"text":[{"text":"pub type vx_matrix = *mut VxMatrix;","highlight_start":10,"highlight_end":19}],"label":null,"suggested_replacement":"VxMatrix","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: type `vx_matrix` should have an upper camel case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api.rs:67:10\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m67\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub type vx_matrix = *mut VxMatrix;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper camel case: `VxMatrix`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"type `vx_lut` should have an upper camel case name","code":{"code":"non_camel_case_types","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":1987,"byte_end":1993,"line_start":71,"line_end":71,"column_start":10,"column_end":16,"is_primary":true,"text":[{"text":"pub type vx_lut = *mut VxLUT;","highlight_start":10,"highlight_end":16}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to upper camel case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":1987,"byte_end":1993,"line_start":71,"line_end":71,"column_start":10,"column_end":16,"is_primary":true,"text":[{"text":"pub type vx_lut = *mut VxLUT;","highlight_start":10,"highlight_end":16}],"label":null,"suggested_replacement":"VxLut","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: type `vx_lut` should have an upper camel case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api.rs:71:10\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m71\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub type vx_lut = *mut VxLUT;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper camel case: `VxLut`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"type `vx_threshold` should have an upper camel case name","code":{"code":"non_camel_case_types","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":2078,"byte_end":2090,"line_start":75,"line_end":75,"column_start":10,"column_end":22,"is_primary":true,"text":[{"text":"pub type vx_threshold = *mut VxThreshold;","highlight_start":10,"highlight_end":22}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to upper camel case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":2078,"byte_end":2090,"line_start":75,"line_end":75,"column_start":10,"column_end":22,"is_primary":true,"text":[{"text":"pub type vx_threshold = *mut VxThreshold;","highlight_start":10,"highlight_end":22}],"label":null,"suggested_replacement":"VxThreshold","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: type `vx_threshold` should have an upper camel case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api.rs:75:10\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m75\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub type vx_threshold = *mut VxThreshold;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper camel case: `VxThreshold`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"type `vx_pyramid` should have an upper camel case name","code":{"code":"non_camel_case_types","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":2177,"byte_end":2187,"line_start":79,"line_end":79,"column_start":10,"column_end":20,"is_primary":true,"text":[{"text":"pub type vx_pyramid = *mut VxPyramid;","highlight_start":10,"highlight_end":20}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to upper camel case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":2177,"byte_end":2187,"line_start":79,"line_end":79,"column_start":10,"column_end":20,"is_primary":true,"text":[{"text":"pub type vx_pyramid = *mut VxPyramid;","highlight_start":10,"highlight_end":20}],"label":null,"suggested_replacement":"VxPyramid","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: type `vx_pyramid` should have an upper camel case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api.rs:79:10\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m79\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub type vx_pyramid = *mut VxPyramid;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper camel case: `VxPyramid`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"type `vx_image` should have an upper camel case name","code":{"code":"non_camel_case_types","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":2269,"byte_end":2277,"line_start":83,"line_end":83,"column_start":10,"column_end":18,"is_primary":true,"text":[{"text":"pub type vx_image = *mut VxImage;","highlight_start":10,"highlight_end":18}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to upper camel case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":2269,"byte_end":2277,"line_start":83,"line_end":83,"column_start":10,"column_end":18,"is_primary":true,"text":[{"text":"pub type vx_image = *mut VxImage;","highlight_start":10,"highlight_end":18}],"label":null,"suggested_replacement":"VxImage","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: type `vx_image` should have an upper camel case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api.rs:83:10\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m83\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub type vx_image = *mut VxImage;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper camel case: `VxImage`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"type `vx_reference` should have an upper camel case name","code":{"code":"non_camel_case_types","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":2371,"byte_end":2383,"line_start":87,"line_end":87,"column_start":10,"column_end":22,"is_primary":true,"text":[{"text":"pub type vx_reference = *mut VxReference;","highlight_start":10,"highlight_end":22}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to upper camel case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":2371,"byte_end":2383,"line_start":87,"line_end":87,"column_start":10,"column_end":22,"is_primary":true,"text":[{"text":"pub type vx_reference = *mut VxReference;","highlight_start":10,"highlight_end":22}],"label":null,"suggested_replacement":"VxReference","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: type `vx_reference` should have an upper camel case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api.rs:87:10\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m87\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub type vx_reference = *mut VxReference;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper camel case: `VxReference`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"type `vx_distribution` should have an upper camel case name","code":{"code":"non_camel_case_types","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":2480,"byte_end":2495,"line_start":91,"line_end":91,"column_start":10,"column_end":25,"is_primary":true,"text":[{"text":"pub type vx_distribution = *mut VxDistribution;","highlight_start":10,"highlight_end":25}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to upper camel case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":2480,"byte_end":2495,"line_start":91,"line_end":91,"column_start":10,"column_end":25,"is_primary":true,"text":[{"text":"pub type vx_distribution = *mut VxDistribution;","highlight_start":10,"highlight_end":25}],"label":null,"suggested_replacement":"VxDistribution","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: type `vx_distribution` should have an upper camel case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api.rs:91:10\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m91\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub type vx_distribution = *mut VxDistribution;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper camel case: `VxDistribution`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"type `vx_delay` should have an upper camel case name","code":{"code":"non_camel_case_types","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":2581,"byte_end":2589,"line_start":95,"line_end":95,"column_start":10,"column_end":18,"is_primary":true,"text":[{"text":"pub type vx_delay = *mut VxDelay;","highlight_start":10,"highlight_end":18}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to upper camel case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":2581,"byte_end":2589,"line_start":95,"line_end":95,"column_start":10,"column_end":18,"is_primary":true,"text":[{"text":"pub type vx_delay = *mut VxDelay;","highlight_start":10,"highlight_end":18}],"label":null,"suggested_replacement":"VxDelay","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: type `vx_delay` should have an upper camel case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api.rs:95:10\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m95\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub type vx_delay = *mut VxDelay;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper camel case: `VxDelay`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"type `vx_remap` should have an upper camel case name","code":{"code":"non_camel_case_types","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":2668,"byte_end":2676,"line_start":99,"line_end":99,"column_start":10,"column_end":18,"is_primary":true,"text":[{"text":"pub type vx_remap = *mut VxRemap;","highlight_start":10,"highlight_end":18}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to upper camel case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":2668,"byte_end":2676,"line_start":99,"line_end":99,"column_start":10,"column_end":18,"is_primary":true,"text":[{"text":"pub type vx_remap = *mut VxRemap;","highlight_start":10,"highlight_end":18}],"label":null,"suggested_replacement":"VxRemap","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: type `vx_remap` should have an upper camel case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api.rs:99:10\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m99\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub type vx_remap = *mut VxRemap;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper camel case: `VxRemap`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"type `vx_tensor` should have an upper camel case name","code":{"code":"non_camel_case_types","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":2757,"byte_end":2766,"line_start":103,"line_end":103,"column_start":10,"column_end":19,"is_primary":true,"text":[{"text":"pub type vx_tensor = *mut VxTensor;","highlight_start":10,"highlight_end":19}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to upper camel case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":2757,"byte_end":2766,"line_start":103,"line_end":103,"column_start":10,"column_end":19,"is_primary":true,"text":[{"text":"pub type vx_tensor = *mut VxTensor;","highlight_start":10,"highlight_end":19}],"label":null,"suggested_replacement":"VxTensor","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: type `vx_tensor` should have an upper camel case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api.rs:103:10\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m103\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub type vx_tensor = *mut VxTensor;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper camel case: `VxTensor`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"type `vx_meta_format` should have an upper camel case name","code":{"code":"non_camel_case_types","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":2857,"byte_end":2871,"line_start":107,"line_end":107,"column_start":10,"column_end":24,"is_primary":true,"text":[{"text":"pub type vx_meta_format = *mut VxMetaFormat;","highlight_start":10,"highlight_end":24}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to upper camel case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":2857,"byte_end":2871,"line_start":107,"line_end":107,"column_start":10,"column_end":24,"is_primary":true,"text":[{"text":"pub type vx_meta_format = *mut VxMetaFormat;","highlight_start":10,"highlight_end":24}],"label":null,"suggested_replacement":"VxMetaFormat","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: type `vx_meta_format` should have an upper camel case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api.rs:107:10\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m107\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub type vx_meta_format = *mut VxMetaFormat;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper camel case: `VxMetaFormat`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"type `vx_graph_parameter` should have an upper camel case name","code":{"code":"non_camel_case_types","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":2974,"byte_end":2992,"line_start":111,"line_end":111,"column_start":10,"column_end":28,"is_primary":true,"text":[{"text":"pub type vx_graph_parameter = *mut VxGraphParameter;","highlight_start":10,"highlight_end":28}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to upper camel case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":2974,"byte_end":2992,"line_start":111,"line_end":111,"column_start":10,"column_end":28,"is_primary":true,"text":[{"text":"pub type vx_graph_parameter = *mut VxGraphParameter;","highlight_start":10,"highlight_end":28}],"label":null,"suggested_replacement":"VxGraphParameter","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: type `vx_graph_parameter` should have an upper camel case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api.rs:111:10\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m111\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub type vx_graph_parameter = *mut VxGraphParameter;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper camel case: `VxGraphParameter`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"type `vx_import` should have an upper camel case name","code":{"code":"non_camel_case_types","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":3083,"byte_end":3092,"line_start":115,"line_end":115,"column_start":10,"column_end":19,"is_primary":true,"text":[{"text":"pub type vx_import = *mut VxImport;","highlight_start":10,"highlight_end":19}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to upper camel case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":3083,"byte_end":3092,"line_start":115,"line_end":115,"column_start":10,"column_end":19,"is_primary":true,"text":[{"text":"pub type vx_import = *mut VxImport;","highlight_start":10,"highlight_end":19}],"label":null,"suggested_replacement":"VxImport","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: type `vx_import` should have an upper camel case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api.rs:115:10\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m115\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub type vx_import = *mut VxImport;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper camel case: `VxImport`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"type `vx_target` should have an upper camel case name","code":{"code":"non_camel_case_types","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":3174,"byte_end":3183,"line_start":119,"line_end":119,"column_start":10,"column_end":19,"is_primary":true,"text":[{"text":"pub type vx_target = *mut VxTarget;","highlight_start":10,"highlight_end":19}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to upper camel case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":3174,"byte_end":3183,"line_start":119,"line_end":119,"column_start":10,"column_end":19,"is_primary":true,"text":[{"text":"pub type vx_target = *mut VxTarget;","highlight_start":10,"highlight_end":19}],"label":null,"suggested_replacement":"VxTarget","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: type `vx_target` should have an upper camel case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api.rs:119:10\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m119\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub type vx_target = *mut VxTarget;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper camel case: `VxTarget`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"type `vx_nodecomplete_f` should have an upper camel case name","code":{"code":"non_camel_case_types","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":3245,"byte_end":3262,"line_start":122,"line_end":122,"column_start":10,"column_end":27,"is_primary":true,"text":[{"text":"pub type vx_nodecomplete_f = Option vx_action>;","highlight_start":10,"highlight_end":27}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to upper camel case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":3245,"byte_end":3262,"line_start":122,"line_end":122,"column_start":10,"column_end":27,"is_primary":true,"text":[{"text":"pub type vx_nodecomplete_f = Option vx_action>;","highlight_start":10,"highlight_end":27}],"label":null,"suggested_replacement":"VxNodecompleteF","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: type `vx_nodecomplete_f` should have an upper camel case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api.rs:122:10\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m122\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub type vx_nodecomplete_f = Option vx_action>;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper camel case: `VxNodecompleteF`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"variant `VX_ACTION_CONTINUE` should have an upper camel case name","code":{"code":"non_camel_case_types","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":3417,"byte_end":3435,"line_start":128,"line_end":128,"column_start":5,"column_end":23,"is_primary":true,"text":[{"text":" VX_ACTION_CONTINUE = 0,","highlight_start":5,"highlight_end":23}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to upper camel case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":3417,"byte_end":3435,"line_start":128,"line_end":128,"column_start":5,"column_end":23,"is_primary":true,"text":[{"text":" VX_ACTION_CONTINUE = 0,","highlight_start":5,"highlight_end":23}],"label":null,"suggested_replacement":"VxActionContinue","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: variant `VX_ACTION_CONTINUE` should have an upper camel case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api.rs:128:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m128\u001b[0m \u001b[1m\u001b[94m|\u001b[0m VX_ACTION_CONTINUE = 0,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper camel case: `VxActionContinue`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"variant `VX_ACTION_ABANDON` should have an upper camel case name","code":{"code":"non_camel_case_types","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":3445,"byte_end":3462,"line_start":129,"line_end":129,"column_start":5,"column_end":22,"is_primary":true,"text":[{"text":" VX_ACTION_ABANDON = 1,","highlight_start":5,"highlight_end":22}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to upper camel case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":3445,"byte_end":3462,"line_start":129,"line_end":129,"column_start":5,"column_end":22,"is_primary":true,"text":[{"text":" VX_ACTION_ABANDON = 1,","highlight_start":5,"highlight_end":22}],"label":null,"suggested_replacement":"VxActionAbandon","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: variant `VX_ACTION_ABANDON` should have an upper camel case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api.rs:129:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m129\u001b[0m \u001b[1m\u001b[94m|\u001b[0m VX_ACTION_ABANDON = 1,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper camel case: `VxActionAbandon`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused import: `std::sync::atomic::Ordering`","code":{"code":"unused_imports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":7573,"byte_end":7600,"line_start":252,"line_end":252,"column_start":9,"column_end":36,"is_primary":true,"text":[{"text":" use std::sync::atomic::Ordering;","highlight_start":9,"highlight_end":36}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"remove the whole `use` item","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":7569,"byte_end":7601,"line_start":252,"line_end":252,"column_start":5,"column_end":37,"is_primary":true,"text":[{"text":" use std::sync::atomic::Ordering;","highlight_start":5,"highlight_end":37}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused import: `std::sync::atomic::Ordering`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api.rs:252:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m252\u001b[0m \u001b[1m\u001b[94m|\u001b[0m use std::sync::atomic::Ordering;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"type `vx_array` should have an upper camel case name","code":{"code":"non_camel_case_types","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":60809,"byte_end":60817,"line_start":1699,"line_end":1699,"column_start":10,"column_end":18,"is_primary":true,"text":[{"text":"pub type vx_array = *mut VxArray;","highlight_start":10,"highlight_end":18}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to upper camel case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":60809,"byte_end":60817,"line_start":1699,"line_end":1699,"column_start":10,"column_end":18,"is_primary":true,"text":[{"text":"pub type vx_array = *mut VxArray;","highlight_start":10,"highlight_end":18}],"label":null,"suggested_replacement":"VxArray","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: type `vx_array` should have an upper camel case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api.rs:1699:10\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m1699\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub type vx_array = *mut VxArray;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper camel case: `VxArray`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused import: `VX_TYPE_DISTRIBUTION`","code":{"code":"unused_imports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api_data.rs","byte_start":346,"byte_end":366,"line_start":9,"line_end":9,"column_start":41,"column_end":61,"is_primary":true,"text":[{"text":" VX_TYPE_THRESHOLD, VX_TYPE_PYRAMID, VX_TYPE_DISTRIBUTION","highlight_start":41,"highlight_end":61}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"remove the unused import","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/c_api_data.rs","byte_start":344,"byte_end":366,"line_start":9,"line_end":9,"column_start":39,"column_end":61,"is_primary":true,"text":[{"text":" VX_TYPE_THRESHOLD, VX_TYPE_PYRAMID, VX_TYPE_DISTRIBUTION","highlight_start":39,"highlight_end":61}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused import: `VX_TYPE_DISTRIBUTION`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api_data.rs:9:41\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m9\u001b[0m \u001b[1m\u001b[94m|\u001b[0m VX_TYPE_THRESHOLD, VX_TYPE_PYRAMID, VX_TYPE_DISTRIBUTION\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^\u001b[0m\n\n"} +======= {"$message_type":"diagnostic","message":"type `vx_status` should have an upper camel case name","code":{"code":"non_camel_case_types","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":695,"byte_end":704,"line_start":20,"line_end":20,"column_start":10,"column_end":19,"is_primary":true,"text":[{"text":"pub type vx_status = i32;","highlight_start":10,"highlight_end":19}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(non_camel_case_types)]` (part of `#[warn(nonstandard_style)]`) on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"convert the identifier to upper camel case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":695,"byte_end":704,"line_start":20,"line_end":20,"column_start":10,"column_end":19,"is_primary":true,"text":[{"text":"pub type vx_status = i32;","highlight_start":10,"highlight_end":19}],"label":null,"suggested_replacement":"VxStatus","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: type `vx_status` should have an upper camel case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api.rs:20:10\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m20\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub type vx_status = i32;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper camel case: `VxStatus`\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m= \u001b[0m\u001b[1mnote\u001b[0m: `#[warn(non_camel_case_types)]` (part of `#[warn(nonstandard_style)]`) on by default\n\n"} {"$message_type":"diagnostic","message":"type `vx_enum` should have an upper camel case name","code":{"code":"non_camel_case_types","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":721,"byte_end":728,"line_start":21,"line_end":21,"column_start":10,"column_end":17,"is_primary":true,"text":[{"text":"pub type vx_enum = i32;","highlight_start":10,"highlight_end":17}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to upper camel case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":721,"byte_end":728,"line_start":21,"line_end":21,"column_start":10,"column_end":17,"is_primary":true,"text":[{"text":"pub type vx_enum = i32;","highlight_start":10,"highlight_end":17}],"label":null,"suggested_replacement":"VxEnum","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: type `vx_enum` should have an upper camel case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api.rs:21:10\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m21\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub type vx_enum = i32;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper camel case: `VxEnum`\u001b[0m\n\n"} {"$message_type":"diagnostic","message":"type `vx_uint32` should have an upper camel case name","code":{"code":"non_camel_case_types","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":745,"byte_end":754,"line_start":22,"line_end":22,"column_start":10,"column_end":19,"is_primary":true,"text":[{"text":"pub type vx_uint32 = u32;","highlight_start":10,"highlight_end":19}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to upper camel case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":745,"byte_end":754,"line_start":22,"line_end":22,"column_start":10,"column_end":19,"is_primary":true,"text":[{"text":"pub type vx_uint32 = u32;","highlight_start":10,"highlight_end":19}],"label":null,"suggested_replacement":"VxUint32","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: type `vx_uint32` should have an upper camel case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api.rs:22:10\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m22\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub type vx_uint32 = u32;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper camel case: `VxUint32`\u001b[0m\n\n"} @@ -39,12 +80,270 @@ {"$message_type":"diagnostic","message":"unused import: `std::sync::atomic::Ordering`","code":{"code":"unused_imports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":8031,"byte_end":8058,"line_start":260,"line_end":260,"column_start":9,"column_end":36,"is_primary":true,"text":[{"text":" use std::sync::atomic::Ordering;","highlight_start":9,"highlight_end":36}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"remove the whole `use` item","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":8027,"byte_end":8059,"line_start":260,"line_end":260,"column_start":5,"column_end":37,"is_primary":true,"text":[{"text":" use std::sync::atomic::Ordering;","highlight_start":5,"highlight_end":37}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused import: `std::sync::atomic::Ordering`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api.rs:260:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m260\u001b[0m \u001b[1m\u001b[94m|\u001b[0m use std::sync::atomic::Ordering;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^^^^^^^\u001b[0m\n\n"} {"$message_type":"diagnostic","message":"type `vx_array` should have an upper camel case name","code":{"code":"non_camel_case_types","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":75392,"byte_end":75400,"line_start":2019,"line_end":2019,"column_start":10,"column_end":18,"is_primary":true,"text":[{"text":"pub type vx_array = *mut VxArray;","highlight_start":10,"highlight_end":18}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to upper camel case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":75392,"byte_end":75400,"line_start":2019,"line_end":2019,"column_start":10,"column_end":18,"is_primary":true,"text":[{"text":"pub type vx_array = *mut VxArray;","highlight_start":10,"highlight_end":18}],"label":null,"suggested_replacement":"VxArray","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: type `vx_array` should have an upper camel case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api.rs:2019:10\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m2019\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub type vx_array = *mut VxArray;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper camel case: `VxArray`\u001b[0m\n\n"} {"$message_type":"diagnostic","message":"unused imports: `VX_TYPE_DISTRIBUTION` and `VX_TYPE_PYRAMID`","code":{"code":"unused_imports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api_data.rs","byte_start":329,"byte_end":344,"line_start":9,"line_end":9,"column_start":24,"column_end":39,"is_primary":true,"text":[{"text":" VX_TYPE_THRESHOLD, VX_TYPE_PYRAMID, VX_TYPE_DISTRIBUTION","highlight_start":24,"highlight_end":39}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/c_api_data.rs","byte_start":346,"byte_end":366,"line_start":9,"line_end":9,"column_start":41,"column_end":61,"is_primary":true,"text":[{"text":" VX_TYPE_THRESHOLD, VX_TYPE_PYRAMID, VX_TYPE_DISTRIBUTION","highlight_start":41,"highlight_end":61}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"remove the unused imports","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/c_api_data.rs","byte_start":327,"byte_end":366,"line_start":9,"line_end":9,"column_start":22,"column_end":61,"is_primary":true,"text":[{"text":" VX_TYPE_THRESHOLD, VX_TYPE_PYRAMID, VX_TYPE_DISTRIBUTION","highlight_start":22,"highlight_end":61}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused imports: `VX_TYPE_DISTRIBUTION` and `VX_TYPE_PYRAMID`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api_data.rs:9:24\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m9\u001b[0m \u001b[1m\u001b[94m|\u001b[0m VX_TYPE_THRESHOLD, VX_TYPE_PYRAMID, VX_TYPE_DISTRIBUTION\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^\u001b[0m\n\n"} +>>>>>>> origin/master {"$message_type":"diagnostic","message":"private item shadows public glob re-export","code":{"code":"hidden_glob_reexports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api_data.rs","byte_start":255,"byte_end":274,"line_start":8,"line_end":8,"column_start":5,"column_end":24,"is_primary":true,"text":[{"text":" VX_TYPE_CONVOLUTION, VX_TYPE_MATRIX, VX_TYPE_LUT, ","highlight_start":5,"highlight_end":24}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"the name `VX_TYPE_CONVOLUTION` in the value namespace is supposed to be publicly re-exported here","code":null,"level":"note","spans":[{"file_name":"openvx-core/src/c_api_data.rs","byte_start":143,"byte_end":158,"line_start":5,"line_end":5,"column_start":9,"column_end":24,"is_primary":true,"text":[{"text":"pub use crate::c_api::*;","highlight_start":9,"highlight_end":24}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":null},{"message":"but the private item here shadows it","code":null,"level":"note","spans":[{"file_name":"openvx-core/src/c_api_data.rs","byte_start":255,"byte_end":274,"line_start":8,"line_end":8,"column_start":5,"column_end":24,"is_primary":true,"text":[{"text":" VX_TYPE_CONVOLUTION, VX_TYPE_MATRIX, VX_TYPE_LUT, ","highlight_start":5,"highlight_end":24}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":null},{"message":"`#[warn(hidden_glob_reexports)]` on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: private item shadows public glob re-export\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api_data.rs:8:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m8\u001b[0m \u001b[1m\u001b[94m|\u001b[0m VX_TYPE_CONVOLUTION, VX_TYPE_MATRIX, VX_TYPE_LUT, \n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[92mnote\u001b[0m: the name `VX_TYPE_CONVOLUTION` in the value namespace is supposed to be publicly re-exported here\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api_data.rs:5:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m5\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use crate::c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[92m^^^^^^^^^^^^^^^\u001b[0m\n\u001b[1m\u001b[92mnote\u001b[0m: but the private item here shadows it\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api_data.rs:8:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m8\u001b[0m \u001b[1m\u001b[94m|\u001b[0m VX_TYPE_CONVOLUTION, VX_TYPE_MATRIX, VX_TYPE_LUT, \n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[92m^^^^^^^^^^^^^^^^^^^\u001b[0m\n \u001b[1m\u001b[94m= \u001b[0m\u001b[1mnote\u001b[0m: `#[warn(hidden_glob_reexports)]` on by default\n\n"} {"$message_type":"diagnostic","message":"private item shadows public glob re-export","code":{"code":"hidden_glob_reexports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api_data.rs","byte_start":276,"byte_end":290,"line_start":8,"line_end":8,"column_start":26,"column_end":40,"is_primary":true,"text":[{"text":" VX_TYPE_CONVOLUTION, VX_TYPE_MATRIX, VX_TYPE_LUT, ","highlight_start":26,"highlight_end":40}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"the name `VX_TYPE_MATRIX` in the value namespace is supposed to be publicly re-exported here","code":null,"level":"note","spans":[{"file_name":"openvx-core/src/c_api_data.rs","byte_start":143,"byte_end":158,"line_start":5,"line_end":5,"column_start":9,"column_end":24,"is_primary":true,"text":[{"text":"pub use crate::c_api::*;","highlight_start":9,"highlight_end":24}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":null},{"message":"but the private item here shadows it","code":null,"level":"note","spans":[{"file_name":"openvx-core/src/c_api_data.rs","byte_start":276,"byte_end":290,"line_start":8,"line_end":8,"column_start":26,"column_end":40,"is_primary":true,"text":[{"text":" VX_TYPE_CONVOLUTION, VX_TYPE_MATRIX, VX_TYPE_LUT, ","highlight_start":26,"highlight_end":40}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: private item shadows public glob re-export\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api_data.rs:8:26\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m8\u001b[0m \u001b[1m\u001b[94m|\u001b[0m VX_TYPE_CONVOLUTION, VX_TYPE_MATRIX, VX_TYPE_LUT, \n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[92mnote\u001b[0m: the name `VX_TYPE_MATRIX` in the value namespace is supposed to be publicly re-exported here\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api_data.rs:5:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m5\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use crate::c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[92m^^^^^^^^^^^^^^^\u001b[0m\n\u001b[1m\u001b[92mnote\u001b[0m: but the private item here shadows it\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api_data.rs:8:26\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m8\u001b[0m \u001b[1m\u001b[94m|\u001b[0m VX_TYPE_CONVOLUTION, VX_TYPE_MATRIX, VX_TYPE_LUT, \n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[92m^^^^^^^^^^^^^^\u001b[0m\n\n"} {"$message_type":"diagnostic","message":"private item shadows public glob re-export","code":{"code":"hidden_glob_reexports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api_data.rs","byte_start":292,"byte_end":303,"line_start":8,"line_end":8,"column_start":42,"column_end":53,"is_primary":true,"text":[{"text":" VX_TYPE_CONVOLUTION, VX_TYPE_MATRIX, VX_TYPE_LUT, ","highlight_start":42,"highlight_end":53}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"the name `VX_TYPE_LUT` in the value namespace is supposed to be publicly re-exported here","code":null,"level":"note","spans":[{"file_name":"openvx-core/src/c_api_data.rs","byte_start":143,"byte_end":158,"line_start":5,"line_end":5,"column_start":9,"column_end":24,"is_primary":true,"text":[{"text":"pub use crate::c_api::*;","highlight_start":9,"highlight_end":24}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":null},{"message":"but the private item here shadows it","code":null,"level":"note","spans":[{"file_name":"openvx-core/src/c_api_data.rs","byte_start":292,"byte_end":303,"line_start":8,"line_end":8,"column_start":42,"column_end":53,"is_primary":true,"text":[{"text":" VX_TYPE_CONVOLUTION, VX_TYPE_MATRIX, VX_TYPE_LUT, ","highlight_start":42,"highlight_end":53}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: private item shadows public glob re-export\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api_data.rs:8:42\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m8\u001b[0m \u001b[1m\u001b[94m|\u001b[0m VX_TYPE_CONVOLUTION, VX_TYPE_MATRIX, VX_TYPE_LUT, \n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[92mnote\u001b[0m: the name `VX_TYPE_LUT` in the value namespace is supposed to be publicly re-exported here\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api_data.rs:5:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m5\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use crate::c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[92m^^^^^^^^^^^^^^^\u001b[0m\n\u001b[1m\u001b[92mnote\u001b[0m: but the private item here shadows it\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api_data.rs:8:42\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m8\u001b[0m \u001b[1m\u001b[94m|\u001b[0m VX_TYPE_CONVOLUTION, VX_TYPE_MATRIX, VX_TYPE_LUT, \n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[92m^^^^^^^^^^^\u001b[0m\n\n"} {"$message_type":"diagnostic","message":"private item shadows public glob re-export","code":{"code":"hidden_glob_reexports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api_data.rs","byte_start":310,"byte_end":327,"line_start":9,"line_end":9,"column_start":5,"column_end":22,"is_primary":true,"text":[{"text":" VX_TYPE_THRESHOLD, VX_TYPE_PYRAMID, VX_TYPE_DISTRIBUTION","highlight_start":5,"highlight_end":22}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"the name `VX_TYPE_THRESHOLD` in the value namespace is supposed to be publicly re-exported here","code":null,"level":"note","spans":[{"file_name":"openvx-core/src/c_api_data.rs","byte_start":143,"byte_end":158,"line_start":5,"line_end":5,"column_start":9,"column_end":24,"is_primary":true,"text":[{"text":"pub use crate::c_api::*;","highlight_start":9,"highlight_end":24}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":null},{"message":"but the private item here shadows it","code":null,"level":"note","spans":[{"file_name":"openvx-core/src/c_api_data.rs","byte_start":310,"byte_end":327,"line_start":9,"line_end":9,"column_start":5,"column_end":22,"is_primary":true,"text":[{"text":" VX_TYPE_THRESHOLD, VX_TYPE_PYRAMID, VX_TYPE_DISTRIBUTION","highlight_start":5,"highlight_end":22}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: private item shadows public glob re-export\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api_data.rs:9:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m9\u001b[0m \u001b[1m\u001b[94m|\u001b[0m VX_TYPE_THRESHOLD, VX_TYPE_PYRAMID, VX_TYPE_DISTRIBUTION\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[92mnote\u001b[0m: the name `VX_TYPE_THRESHOLD` in the value namespace is supposed to be publicly re-exported here\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api_data.rs:5:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m5\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use crate::c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[92m^^^^^^^^^^^^^^^\u001b[0m\n\u001b[1m\u001b[92mnote\u001b[0m: but the private item here shadows it\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api_data.rs:9:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m9\u001b[0m \u001b[1m\u001b[94m|\u001b[0m VX_TYPE_THRESHOLD, VX_TYPE_PYRAMID, VX_TYPE_DISTRIBUTION\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[92m^^^^^^^^^^^^^^^^^\u001b[0m\n\n"} {"$message_type":"diagnostic","message":"private item shadows public glob re-export","code":{"code":"hidden_glob_reexports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api_data.rs","byte_start":329,"byte_end":344,"line_start":9,"line_end":9,"column_start":24,"column_end":39,"is_primary":true,"text":[{"text":" VX_TYPE_THRESHOLD, VX_TYPE_PYRAMID, VX_TYPE_DISTRIBUTION","highlight_start":24,"highlight_end":39}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"the name `VX_TYPE_PYRAMID` in the value namespace is supposed to be publicly re-exported here","code":null,"level":"note","spans":[{"file_name":"openvx-core/src/c_api_data.rs","byte_start":143,"byte_end":158,"line_start":5,"line_end":5,"column_start":9,"column_end":24,"is_primary":true,"text":[{"text":"pub use crate::c_api::*;","highlight_start":9,"highlight_end":24}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":null},{"message":"but the private item here shadows it","code":null,"level":"note","spans":[{"file_name":"openvx-core/src/c_api_data.rs","byte_start":329,"byte_end":344,"line_start":9,"line_end":9,"column_start":24,"column_end":39,"is_primary":true,"text":[{"text":" VX_TYPE_THRESHOLD, VX_TYPE_PYRAMID, VX_TYPE_DISTRIBUTION","highlight_start":24,"highlight_end":39}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: private item shadows public glob re-export\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api_data.rs:9:24\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m9\u001b[0m \u001b[1m\u001b[94m|\u001b[0m VX_TYPE_THRESHOLD, VX_TYPE_PYRAMID, VX_TYPE_DISTRIBUTION\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[92mnote\u001b[0m: the name `VX_TYPE_PYRAMID` in the value namespace is supposed to be publicly re-exported here\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api_data.rs:5:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m5\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use crate::c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[92m^^^^^^^^^^^^^^^\u001b[0m\n\u001b[1m\u001b[92mnote\u001b[0m: but the private item here shadows it\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api_data.rs:9:24\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m9\u001b[0m \u001b[1m\u001b[94m|\u001b[0m VX_TYPE_THRESHOLD, VX_TYPE_PYRAMID, VX_TYPE_DISTRIBUTION\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[92m^^^^^^^^^^^^^^^\u001b[0m\n\n"} {"$message_type":"diagnostic","message":"private item shadows public glob re-export","code":{"code":"hidden_glob_reexports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":314,"byte_end":349,"line_start":11,"line_end":11,"column_start":5,"column_end":40,"is_primary":true,"text":[{"text":"use crate::c_api_data::vx_pixel_value_t;","highlight_start":5,"highlight_end":40}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"the name `vx_pixel_value_t` in the type namespace is supposed to be publicly re-exported here","code":null,"level":"note","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":236,"byte_end":256,"line_start":8,"line_end":8,"column_start":9,"column_end":29,"is_primary":true,"text":[{"text":"pub use crate::c_api_data::*;","highlight_start":9,"highlight_end":29}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":null},{"message":"but the private item here shadows it","code":null,"level":"note","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":314,"byte_end":349,"line_start":11,"line_end":11,"column_start":5,"column_end":40,"is_primary":true,"text":[{"text":"use crate::c_api_data::vx_pixel_value_t;","highlight_start":5,"highlight_end":40}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: private item shadows public glob re-export\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:11:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m11\u001b[0m \u001b[1m\u001b[94m|\u001b[0m use crate::c_api_data::vx_pixel_value_t;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[92mnote\u001b[0m: the name `vx_pixel_value_t` in the type namespace is supposed to be publicly re-exported here\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:8:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m 8\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use crate::c_api_data::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[92m^^^^^^^^^^^^^^^^^^^^\u001b[0m\n\u001b[1m\u001b[92mnote\u001b[0m: but the private item here shadows it\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:11:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m11\u001b[0m \u001b[1m\u001b[94m|\u001b[0m use crate::c_api_data::vx_pixel_value_t;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[92m^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\u001b[0m\n\n"} +<<<<<<< HEAD +{"$message_type":"diagnostic","message":"private item shadows public glob re-export","code":{"code":"hidden_glob_reexports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":12292,"byte_end":12397,"line_start":411,"line_end":413,"column_start":1,"column_end":4,"is_primary":true,"text":[{"text":"static NODES: Lazy>>> = Lazy::new(|| {","highlight_start":1,"highlight_end":71},{"text":" Mutex::new(HashMap::new())","highlight_start":1,"highlight_end":31},{"text":"});","highlight_start":1,"highlight_end":4}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"the name `NODES` in the value namespace is supposed to be publicly re-exported here","code":null,"level":"note","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":211,"byte_end":226,"line_start":7,"line_end":7,"column_start":9,"column_end":24,"is_primary":true,"text":[{"text":"pub use crate::c_api::*;","highlight_start":9,"highlight_end":24}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":null},{"message":"but the private item here shadows it","code":null,"level":"note","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":12292,"byte_end":12397,"line_start":411,"line_end":413,"column_start":1,"column_end":4,"is_primary":true,"text":[{"text":"static NODES: Lazy>>> = Lazy::new(|| {","highlight_start":1,"highlight_end":71},{"text":" Mutex::new(HashMap::new())","highlight_start":1,"highlight_end":31},{"text":"});","highlight_start":1,"highlight_end":4}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: private item shadows public glob re-export\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:411:1\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m411\u001b[0m \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m/\u001b[0m static NODES: Lazy>>> = Lazy::new(|| {\n\u001b[1m\u001b[94m412\u001b[0m \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m|\u001b[0m Mutex::new(HashMap::new())\n\u001b[1m\u001b[94m413\u001b[0m \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m|\u001b[0m });\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m|___^\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[92mnote\u001b[0m: the name `NODES` in the value namespace is supposed to be publicly re-exported here\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:7:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m 7\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use crate::c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[92m^^^^^^^^^^^^^^^\u001b[0m\n\u001b[1m\u001b[92mnote\u001b[0m: but the private item here shadows it\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:411:1\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m411\u001b[0m \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[92m/\u001b[0m static NODES: Lazy>>> = Lazy::new(|| {\n\u001b[1m\u001b[94m412\u001b[0m \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[92m|\u001b[0m Mutex::new(HashMap::new())\n\u001b[1m\u001b[94m413\u001b[0m \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[92m|\u001b[0m });\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[92m|___^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"private item shadows public glob re-export","code":{"code":"hidden_glob_reexports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":12421,"byte_end":12536,"line_start":416,"line_end":418,"column_start":1,"column_end":4,"is_primary":true,"text":[{"text":"static PARAMETERS: Lazy>>> = Lazy::new(|| {","highlight_start":1,"highlight_end":81},{"text":" Mutex::new(HashMap::new())","highlight_start":1,"highlight_end":31},{"text":"});","highlight_start":1,"highlight_end":4}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"the name `PARAMETERS` in the value namespace is supposed to be publicly re-exported here","code":null,"level":"note","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":211,"byte_end":226,"line_start":7,"line_end":7,"column_start":9,"column_end":24,"is_primary":true,"text":[{"text":"pub use crate::c_api::*;","highlight_start":9,"highlight_end":24}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":null},{"message":"but the private item here shadows it","code":null,"level":"note","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":12421,"byte_end":12536,"line_start":416,"line_end":418,"column_start":1,"column_end":4,"is_primary":true,"text":[{"text":"static PARAMETERS: Lazy>>> = Lazy::new(|| {","highlight_start":1,"highlight_end":81},{"text":" Mutex::new(HashMap::new())","highlight_start":1,"highlight_end":31},{"text":"});","highlight_start":1,"highlight_end":4}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: private item shadows public glob re-export\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:416:1\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m416\u001b[0m \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m/\u001b[0m static PARAMETERS: Lazy>>> = Lazy::new(|| {\n\u001b[1m\u001b[94m417\u001b[0m \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m|\u001b[0m Mutex::new(HashMap::new())\n\u001b[1m\u001b[94m418\u001b[0m \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m|\u001b[0m });\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m|___^\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[92mnote\u001b[0m: the name `PARAMETERS` in the value namespace is supposed to be publicly re-exported here\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:7:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m 7\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use crate::c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[92m^^^^^^^^^^^^^^^\u001b[0m\n\u001b[1m\u001b[92mnote\u001b[0m: but the private item here shadows it\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:416:1\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m416\u001b[0m \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[92m/\u001b[0m static PARAMETERS: Lazy>>> = Lazy::new(|| {\n\u001b[1m\u001b[94m417\u001b[0m \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[92m|\u001b[0m Mutex::new(HashMap::new())\n\u001b[1m\u001b[94m418\u001b[0m \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[92m|\u001b[0m });\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[92m|___^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"type `vx_distribution` should have an upper camel case name","code":{"code":"non_camel_case_types","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":79743,"byte_end":79758,"line_start":2369,"line_end":2369,"column_start":10,"column_end":25,"is_primary":true,"text":[{"text":"pub type vx_distribution = *mut VxDistribution;","highlight_start":10,"highlight_end":25}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to upper camel case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":79743,"byte_end":79758,"line_start":2369,"line_end":2369,"column_start":10,"column_end":25,"is_primary":true,"text":[{"text":"pub type vx_distribution = *mut VxDistribution;","highlight_start":10,"highlight_end":25}],"label":null,"suggested_replacement":"VxDistribution","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: type `vx_distribution` should have an upper camel case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:2369:10\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m2369\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub type vx_distribution = *mut VxDistribution;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper camel case: `VxDistribution`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"type `vx_remap` should have an upper camel case name","code":{"code":"non_camel_case_types","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":79834,"byte_end":79842,"line_start":2373,"line_end":2373,"column_start":10,"column_end":18,"is_primary":true,"text":[{"text":"pub type vx_remap = *mut VxRemap;","highlight_start":10,"highlight_end":18}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to upper camel case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":79834,"byte_end":79842,"line_start":2373,"line_end":2373,"column_start":10,"column_end":18,"is_primary":true,"text":[{"text":"pub type vx_remap = *mut VxRemap;","highlight_start":10,"highlight_end":18}],"label":null,"suggested_replacement":"VxRemap","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: type `vx_remap` should have an upper camel case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:2373:10\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m2373\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub type vx_remap = *mut VxRemap;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper camel case: `VxRemap`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"type `vx_delay` should have an upper camel case name","code":{"code":"non_camel_case_types","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":79911,"byte_end":79919,"line_start":2377,"line_end":2377,"column_start":10,"column_end":18,"is_primary":true,"text":[{"text":"pub type vx_delay = *mut VxDelay;","highlight_start":10,"highlight_end":18}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to upper camel case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":79911,"byte_end":79919,"line_start":2377,"line_end":2377,"column_start":10,"column_end":18,"is_primary":true,"text":[{"text":"pub type vx_delay = *mut VxDelay;","highlight_start":10,"highlight_end":18}],"label":null,"suggested_replacement":"VxDelay","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: type `vx_delay` should have an upper camel case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:2377:10\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m2377\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub type vx_delay = *mut VxDelay;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper camel case: `VxDelay`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"type `vx_object_array` should have an upper camel case name","code":{"code":"non_camel_case_types","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":80001,"byte_end":80016,"line_start":2381,"line_end":2381,"column_start":10,"column_end":25,"is_primary":true,"text":[{"text":"pub type vx_object_array = *mut VxObjectArray;","highlight_start":10,"highlight_end":25}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to upper camel case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":80001,"byte_end":80016,"line_start":2381,"line_end":2381,"column_start":10,"column_end":25,"is_primary":true,"text":[{"text":"pub type vx_object_array = *mut VxObjectArray;","highlight_start":10,"highlight_end":25}],"label":null,"suggested_replacement":"VxObjectArray","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: type `vx_object_array` should have an upper camel case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:2381:10\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m2381\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub type vx_object_array = *mut VxObjectArray;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper camel case: `VxObjectArray`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"type `vx_tensor` should have an upper camel case name","code":{"code":"non_camel_case_types","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":80108,"byte_end":80117,"line_start":2385,"line_end":2385,"column_start":10,"column_end":19,"is_primary":true,"text":[{"text":"pub type vx_tensor = *mut VxTensor;","highlight_start":10,"highlight_end":19}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to upper camel case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":80108,"byte_end":80117,"line_start":2385,"line_end":2385,"column_start":10,"column_end":19,"is_primary":true,"text":[{"text":"pub type vx_tensor = *mut VxTensor;","highlight_start":10,"highlight_end":19}],"label":null,"suggested_replacement":"VxTensor","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: type `vx_tensor` should have an upper camel case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:2385:10\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m2385\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub type vx_tensor = *mut VxTensor;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper camel case: `VxTensor`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"type `vx_import` should have an upper camel case name","code":{"code":"non_camel_case_types","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":80189,"byte_end":80198,"line_start":2389,"line_end":2389,"column_start":10,"column_end":19,"is_primary":true,"text":[{"text":"pub type vx_import = *mut VxImport;","highlight_start":10,"highlight_end":19}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to upper camel case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":80189,"byte_end":80198,"line_start":2389,"line_end":2389,"column_start":10,"column_end":19,"is_primary":true,"text":[{"text":"pub type vx_import = *mut VxImport;","highlight_start":10,"highlight_end":19}],"label":null,"suggested_replacement":"VxImport","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: type `vx_import` should have an upper camel case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:2389:10\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m2389\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub type vx_import = *mut VxImport;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper camel case: `VxImport`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"type `vx_meta_format` should have an upper camel case name","code":{"code":"non_camel_case_types","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":80279,"byte_end":80293,"line_start":2393,"line_end":2393,"column_start":10,"column_end":24,"is_primary":true,"text":[{"text":"pub type vx_meta_format = *mut VxMetaFormat;","highlight_start":10,"highlight_end":24}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to upper camel case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":80279,"byte_end":80293,"line_start":2393,"line_end":2393,"column_start":10,"column_end":24,"is_primary":true,"text":[{"text":"pub type vx_meta_format = *mut VxMetaFormat;","highlight_start":10,"highlight_end":24}],"label":null,"suggested_replacement":"VxMetaFormat","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: type `vx_meta_format` should have an upper camel case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:2393:10\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m2393\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub type vx_meta_format = *mut VxMetaFormat;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper camel case: `VxMetaFormat`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"type `vx_target` should have an upper camel case name","code":{"code":"non_camel_case_types","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":80369,"byte_end":80378,"line_start":2397,"line_end":2397,"column_start":10,"column_end":19,"is_primary":true,"text":[{"text":"pub type vx_target = *mut VxTarget;","highlight_start":10,"highlight_end":19}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to upper camel case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":80369,"byte_end":80378,"line_start":2397,"line_end":2397,"column_start":10,"column_end":19,"is_primary":true,"text":[{"text":"pub type vx_target = *mut VxTarget;","highlight_start":10,"highlight_end":19}],"label":null,"suggested_replacement":"VxTarget","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: type `vx_target` should have an upper camel case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:2397:10\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m2397\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub type vx_target = *mut VxTarget;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper camel case: `VxTarget`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"type `vx_graph_parameter` should have an upper camel case name","code":{"code":"non_camel_case_types","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":80467,"byte_end":80485,"line_start":2401,"line_end":2401,"column_start":10,"column_end":28,"is_primary":true,"text":[{"text":"pub type vx_graph_parameter = *mut VxGraphParameter;","highlight_start":10,"highlight_end":28}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to upper camel case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":80467,"byte_end":80485,"line_start":2401,"line_end":2401,"column_start":10,"column_end":28,"is_primary":true,"text":[{"text":"pub type vx_graph_parameter = *mut VxGraphParameter;","highlight_start":10,"highlight_end":28}],"label":null,"suggested_replacement":"VxGraphParameter","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: type `vx_graph_parameter` should have an upper camel case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:2401:10\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m2401\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub type vx_graph_parameter = *mut VxGraphParameter;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper camel case: `VxGraphParameter`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused import: `std::ffi::c_void`","code":{"code":"unused_imports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/vxu_impl.rs","byte_start":200,"byte_end":216,"line_start":6,"line_end":6,"column_start":5,"column_end":21,"is_primary":true,"text":[{"text":"use std::ffi::c_void;","highlight_start":5,"highlight_end":21}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"remove the whole `use` item","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/vxu_impl.rs","byte_start":196,"byte_end":218,"line_start":6,"line_end":7,"column_start":1,"column_end":1,"is_primary":true,"text":[{"text":"use std::ffi::c_void;","highlight_start":1,"highlight_end":22},{"text":"use crate::c_api::{","highlight_start":1,"highlight_end":1}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused import: `std::ffi::c_void`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/vxu_impl.rs:6:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m6\u001b[0m \u001b[1m\u001b[94m|\u001b[0m use std::ffi::c_void;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused imports: `vx_char` and `vx_uint32`","code":{"code":"unused_imports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/vxu_impl.rs","byte_start":388,"byte_end":397,"line_start":10,"line_end":10,"column_start":27,"column_end":36,"is_primary":true,"text":[{"text":" vx_enum, vx_df_image, vx_uint32, vx_size, vx_char,","highlight_start":27,"highlight_end":36}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/vxu_impl.rs","byte_start":408,"byte_end":415,"line_start":10,"line_end":10,"column_start":47,"column_end":54,"is_primary":true,"text":[{"text":" vx_enum, vx_df_image, vx_uint32, vx_size, vx_char,","highlight_start":47,"highlight_end":54}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"remove the unused imports","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/vxu_impl.rs","byte_start":386,"byte_end":397,"line_start":10,"line_end":10,"column_start":25,"column_end":36,"is_primary":true,"text":[{"text":" vx_enum, vx_df_image, vx_uint32, vx_size, vx_char,","highlight_start":25,"highlight_end":36}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null},{"file_name":"openvx-core/src/vxu_impl.rs","byte_start":406,"byte_end":415,"line_start":10,"line_end":10,"column_start":45,"column_end":54,"is_primary":true,"text":[{"text":" vx_enum, vx_df_image, vx_uint32, vx_size, vx_char,","highlight_start":45,"highlight_end":54}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused imports: `vx_char` and `vx_uint32`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/vxu_impl.rs:10:27\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m10\u001b[0m \u001b[1m\u001b[94m|\u001b[0m vx_enum, vx_df_image, vx_uint32, vx_size, vx_char,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m \u001b[1m\u001b[33m^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused import: `crate::c_api_data::vx_pixel_value_t`","code":{"code":"unused_imports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/vxu_impl.rs","byte_start":87728,"byte_end":87763,"line_start":2382,"line_end":2382,"column_start":5,"column_end":40,"is_primary":true,"text":[{"text":"use crate::c_api_data::vx_pixel_value_t;","highlight_start":5,"highlight_end":40}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"remove the whole `use` item","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/vxu_impl.rs","byte_start":87724,"byte_end":87765,"line_start":2382,"line_end":2383,"column_start":1,"column_end":1,"is_primary":true,"text":[{"text":"use crate::c_api_data::vx_pixel_value_t;","highlight_start":1,"highlight_end":41},{"text":"","highlight_start":1,"highlight_end":1}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused import: `crate::c_api_data::vx_pixel_value_t`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/vxu_impl.rs:2382:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m2382\u001b[0m \u001b[1m\u001b[94m|\u001b[0m use crate::c_api_data::vx_pixel_value_t;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unnecessary `unsafe` block","code":{"code":"unused_unsafe","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":29057,"byte_end":29063,"line_start":889,"line_end":889,"column_start":5,"column_end":11,"is_primary":true,"text":[{"text":" unsafe {","highlight_start":5,"highlight_end":11}],"label":"unnecessary `unsafe` block","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(unused_unsafe)]` (part of `#[warn(unused)]`) on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unnecessary `unsafe` block\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api.rs:889:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m889\u001b[0m \u001b[1m\u001b[94m|\u001b[0m unsafe {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m \u001b[1m\u001b[33munnecessary `unsafe` block\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m= \u001b[0m\u001b[1mnote\u001b[0m: `#[warn(unused_unsafe)]` (part of `#[warn(unused)]`) on by default\n\n"} +{"$message_type":"diagnostic","message":"unnecessary `unsafe` block","code":{"code":"unused_unsafe","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":35787,"byte_end":35793,"line_start":1073,"line_end":1073,"column_start":5,"column_end":11,"is_primary":true,"text":[{"text":" unsafe {","highlight_start":5,"highlight_end":11}],"label":"unnecessary `unsafe` block","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unnecessary `unsafe` block\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api.rs:1073:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m1073\u001b[0m \u001b[1m\u001b[94m|\u001b[0m unsafe {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m \u001b[1m\u001b[33munnecessary `unsafe` block\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unnecessary `unsafe` block","code":{"code":"unused_unsafe","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":39071,"byte_end":39077,"line_start":1173,"line_end":1173,"column_start":5,"column_end":11,"is_primary":true,"text":[{"text":" unsafe {","highlight_start":5,"highlight_end":11}],"label":"unnecessary `unsafe` block","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unnecessary `unsafe` block\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api.rs:1173:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m1173\u001b[0m \u001b[1m\u001b[94m|\u001b[0m unsafe {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m \u001b[1m\u001b[33munnecessary `unsafe` block\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `kernel_data`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":45889,"byte_end":45900,"line_start":1350,"line_end":1350,"column_start":29,"column_end":40,"is_primary":true,"text":[{"text":" if let Some(kernel_data) = kernels.get(&kid) {","highlight_start":29,"highlight_end":40}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(unused_variables)]` (part of `#[warn(unused)]`) on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":45889,"byte_end":45900,"line_start":1350,"line_end":1350,"column_start":29,"column_end":40,"is_primary":true,"text":[{"text":" if let Some(kernel_data) = kernels.get(&kid) {","highlight_start":29,"highlight_end":40}],"label":null,"suggested_replacement":"_kernel_data","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `kernel_data`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api.rs:1350:29\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m1350\u001b[0m \u001b[1m\u001b[94m|\u001b[0m if let Some(kernel_data) = kernels.get(&kid) {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_kernel_data`\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m= \u001b[0m\u001b[1mnote\u001b[0m: `#[warn(unused_variables)]` (part of `#[warn(unused)]`) on by default\n\n"} +{"$message_type":"diagnostic","message":"unnecessary `unsafe` block","code":{"code":"unused_unsafe","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api_data.rs","byte_start":3471,"byte_end":3477,"line_start":110,"line_end":110,"column_start":5,"column_end":11,"is_primary":true,"text":[{"text":" unsafe {","highlight_start":5,"highlight_end":11}],"label":"unnecessary `unsafe` block","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unnecessary `unsafe` block\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api_data.rs:110:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m110\u001b[0m \u001b[1m\u001b[94m|\u001b[0m unsafe {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m \u001b[1m\u001b[33munnecessary `unsafe` block\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unnecessary `unsafe` block","code":{"code":"unused_unsafe","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api_data.rs","byte_start":6879,"byte_end":6885,"line_start":236,"line_end":236,"column_start":5,"column_end":11,"is_primary":true,"text":[{"text":" unsafe {","highlight_start":5,"highlight_end":11}],"label":"unnecessary `unsafe` block","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unnecessary `unsafe` block\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api_data.rs:236:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m236\u001b[0m \u001b[1m\u001b[94m|\u001b[0m unsafe {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m \u001b[1m\u001b[33munnecessary `unsafe` block\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unnecessary `unsafe` block","code":{"code":"unused_unsafe","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api_data.rs","byte_start":11402,"byte_end":11408,"line_start":396,"line_end":396,"column_start":5,"column_end":11,"is_primary":true,"text":[{"text":" unsafe {","highlight_start":5,"highlight_end":11}],"label":"unnecessary `unsafe` block","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unnecessary `unsafe` block\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api_data.rs:396:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m396\u001b[0m \u001b[1m\u001b[94m|\u001b[0m unsafe {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m \u001b[1m\u001b[33munnecessary `unsafe` block\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unnecessary `unsafe` block","code":{"code":"unused_unsafe","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api_data.rs","byte_start":15650,"byte_end":15656,"line_start":554,"line_end":554,"column_start":5,"column_end":11,"is_primary":true,"text":[{"text":" unsafe {","highlight_start":5,"highlight_end":11}],"label":"unnecessary `unsafe` block","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unnecessary `unsafe` block\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api_data.rs:554:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m554\u001b[0m \u001b[1m\u001b[94m|\u001b[0m unsafe {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m \u001b[1m\u001b[33munnecessary `unsafe` block\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unnecessary `unsafe` block","code":{"code":"unused_unsafe","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api_data.rs","byte_start":19614,"byte_end":19620,"line_start":699,"line_end":699,"column_start":5,"column_end":11,"is_primary":true,"text":[{"text":" unsafe {","highlight_start":5,"highlight_end":11}],"label":"unnecessary `unsafe` block","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unnecessary `unsafe` block\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api_data.rs:699:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m699\u001b[0m \u001b[1m\u001b[94m|\u001b[0m unsafe {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m \u001b[1m\u001b[33munnecessary `unsafe` block\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `input_format`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api_data.rs","byte_start":21868,"byte_end":21880,"line_start":772,"line_end":772,"column_start":5,"column_end":17,"is_primary":true,"text":[{"text":" input_format: vx_df_image,","highlight_start":5,"highlight_end":17}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/c_api_data.rs","byte_start":21868,"byte_end":21880,"line_start":772,"line_end":772,"column_start":5,"column_end":17,"is_primary":true,"text":[{"text":" input_format: vx_df_image,","highlight_start":5,"highlight_end":17}],"label":null,"suggested_replacement":"_input_format","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `input_format`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api_data.rs:772:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m772\u001b[0m \u001b[1m\u001b[94m|\u001b[0m input_format: vx_df_image,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_input_format`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unnecessary `unsafe` block","code":{"code":"unused_unsafe","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api_data.rs","byte_start":30455,"byte_end":30461,"line_start":1062,"line_end":1062,"column_start":25,"column_end":31,"is_primary":true,"text":[{"text":" let t = unsafe { &mut *(thresh as *mut VxCThresholdData) };","highlight_start":25,"highlight_end":31}],"label":"unnecessary `unsafe` block","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/c_api_data.rs","byte_start":30122,"byte_end":30128,"line_start":1053,"line_end":1053,"column_start":5,"column_end":11,"is_primary":false,"text":[{"text":" unsafe {","highlight_start":5,"highlight_end":11}],"label":"because it's nested under this `unsafe` block","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unnecessary `unsafe` block\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api_data.rs:1062:25\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m1053\u001b[0m \u001b[1m\u001b[94m|\u001b[0m unsafe {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m------\u001b[0m \u001b[1m\u001b[94mbecause it's nested under this `unsafe` block\u001b[0m\n\u001b[1m\u001b[94m...\u001b[0m\n\u001b[1m\u001b[94m1062\u001b[0m \u001b[1m\u001b[94m|\u001b[0m let t = unsafe { &mut *(thresh as *mut VxCThresholdData) };\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m \u001b[1m\u001b[33munnecessary `unsafe` block\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unreachable pattern","code":{"code":"unreachable_patterns","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api_data.rs","byte_start":31874,"byte_end":31890,"line_start":1118,"line_end":1118,"column_start":28,"column_end":44,"is_primary":true,"text":[{"text":" VX_DF_IMAGE_RGBA | VX_DF_IMAGE_RGBX => 4,","highlight_start":28,"highlight_end":44}],"label":"no value can reach this","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/c_api_data.rs","byte_start":31855,"byte_end":31871,"line_start":1118,"line_end":1118,"column_start":9,"column_end":25,"is_primary":false,"text":[{"text":" VX_DF_IMAGE_RGBA | VX_DF_IMAGE_RGBX => 4,","highlight_start":9,"highlight_end":25}],"label":"matches all the relevant values","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(unreachable_patterns)]` (part of `#[warn(unused)]`) on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unreachable pattern\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api_data.rs:1118:28\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m1118\u001b[0m \u001b[1m\u001b[94m|\u001b[0m VX_DF_IMAGE_RGBA | VX_DF_IMAGE_RGBX => 4,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m----------------\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mno value can reach this\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94mmatches all the relevant values\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m= \u001b[0m\u001b[1mnote\u001b[0m: `#[warn(unreachable_patterns)]` (part of `#[warn(unused)]`) on by default\n\n"} +{"$message_type":"diagnostic","message":"unnecessary `unsafe` block","code":{"code":"unused_unsafe","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api_data.rs","byte_start":32917,"byte_end":32923,"line_start":1157,"line_end":1157,"column_start":5,"column_end":11,"is_primary":true,"text":[{"text":" unsafe {","highlight_start":5,"highlight_end":11}],"label":"unnecessary `unsafe` block","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unnecessary `unsafe` block\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api_data.rs:1157:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m1157\u001b[0m \u001b[1m\u001b[94m|\u001b[0m unsafe {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m \u001b[1m\u001b[33munnecessary `unsafe` block\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unnecessary `unsafe` block","code":{"code":"unused_unsafe","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":20978,"byte_end":20984,"line_start":644,"line_end":644,"column_start":25,"column_end":31,"is_primary":true,"text":[{"text":" unsafe { crate::c_api::vxGetContext(input as vx_reference) },","highlight_start":25,"highlight_end":31}],"label":"unnecessary `unsafe` block","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unnecessary `unsafe` block\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:644:25\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m644\u001b[0m \u001b[1m\u001b[94m|\u001b[0m unsafe { crate::c_api::vxGetContext(input as vx_reference) },\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m \u001b[1m\u001b[33munnecessary `unsafe` block\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unnecessary `unsafe` block","code":{"code":"unused_unsafe","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":21696,"byte_end":21702,"line_start":663,"line_end":663,"column_start":25,"column_end":31,"is_primary":true,"text":[{"text":" unsafe { crate::c_api::vxGetContext(input as vx_reference) },","highlight_start":25,"highlight_end":31}],"label":"unnecessary `unsafe` block","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unnecessary `unsafe` block\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:663:25\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m663\u001b[0m \u001b[1m\u001b[94m|\u001b[0m unsafe { crate::c_api::vxGetContext(input as vx_reference) },\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m \u001b[1m\u001b[33munnecessary `unsafe` block\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unnecessary `unsafe` block","code":{"code":"unused_unsafe","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":22424,"byte_end":22430,"line_start":682,"line_end":682,"column_start":25,"column_end":31,"is_primary":true,"text":[{"text":" unsafe { crate::c_api::vxGetContext(input as vx_reference) },","highlight_start":25,"highlight_end":31}],"label":"unnecessary `unsafe` block","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unnecessary `unsafe` block\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:682:25\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m682\u001b[0m \u001b[1m\u001b[94m|\u001b[0m unsafe { crate::c_api::vxGetContext(input as vx_reference) },\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m \u001b[1m\u001b[33munnecessary `unsafe` block\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unnecessary `unsafe` block","code":{"code":"unused_unsafe","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":23152,"byte_end":23158,"line_start":701,"line_end":701,"column_start":25,"column_end":31,"is_primary":true,"text":[{"text":" unsafe { crate::c_api::vxGetContext(input as vx_reference) },","highlight_start":25,"highlight_end":31}],"label":"unnecessary `unsafe` block","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unnecessary `unsafe` block\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:701:25\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m701\u001b[0m \u001b[1m\u001b[94m|\u001b[0m unsafe { crate::c_api::vxGetContext(input as vx_reference) },\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m \u001b[1m\u001b[33munnecessary `unsafe` block\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unnecessary `unsafe` block","code":{"code":"unused_unsafe","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":23863,"byte_end":23869,"line_start":720,"line_end":720,"column_start":25,"column_end":31,"is_primary":true,"text":[{"text":" unsafe { crate::c_api::vxGetContext(input as vx_reference) },","highlight_start":25,"highlight_end":31}],"label":"unnecessary `unsafe` block","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unnecessary `unsafe` block\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:720:25\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m720\u001b[0m \u001b[1m\u001b[94m|\u001b[0m unsafe { crate::c_api::vxGetContext(input as vx_reference) },\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m \u001b[1m\u001b[33munnecessary `unsafe` block\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unnecessary `unsafe` block","code":{"code":"unused_unsafe","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":24571,"byte_end":24577,"line_start":739,"line_end":739,"column_start":25,"column_end":31,"is_primary":true,"text":[{"text":" unsafe { crate::c_api::vxGetContext(input as vx_reference) },","highlight_start":25,"highlight_end":31}],"label":"unnecessary `unsafe` block","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unnecessary `unsafe` block\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:739:25\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m739\u001b[0m \u001b[1m\u001b[94m|\u001b[0m unsafe { crate::c_api::vxGetContext(input as vx_reference) },\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m \u001b[1m\u001b[33munnecessary `unsafe` block\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unnecessary `unsafe` block","code":{"code":"unused_unsafe","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":25284,"byte_end":25290,"line_start":758,"line_end":758,"column_start":25,"column_end":31,"is_primary":true,"text":[{"text":" unsafe { crate::c_api::vxGetContext(input as vx_reference) },","highlight_start":25,"highlight_end":31}],"label":"unnecessary `unsafe` block","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unnecessary `unsafe` block\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:758:25\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m758\u001b[0m \u001b[1m\u001b[94m|\u001b[0m unsafe { crate::c_api::vxGetContext(input as vx_reference) },\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m \u001b[1m\u001b[33munnecessary `unsafe` block\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unnecessary `unsafe` block","code":{"code":"unused_unsafe","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":26030,"byte_end":26036,"line_start":777,"line_end":777,"column_start":25,"column_end":31,"is_primary":true,"text":[{"text":" unsafe { crate::c_api::vxGetContext(input as vx_reference) },","highlight_start":25,"highlight_end":31}],"label":"unnecessary `unsafe` block","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unnecessary `unsafe` block\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:777:25\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m777\u001b[0m \u001b[1m\u001b[94m|\u001b[0m unsafe { crate::c_api::vxGetContext(input as vx_reference) },\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m \u001b[1m\u001b[33munnecessary `unsafe` block\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unnecessary `unsafe` block","code":{"code":"unused_unsafe","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":31370,"byte_end":31376,"line_start":934,"line_end":934,"column_start":5,"column_end":11,"is_primary":true,"text":[{"text":" unsafe {","highlight_start":5,"highlight_end":11}],"label":"unnecessary `unsafe` block","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unnecessary `unsafe` block\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:934:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m934\u001b[0m \u001b[1m\u001b[94m|\u001b[0m unsafe {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m \u001b[1m\u001b[33munnecessary `unsafe` block\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"value assigned to `count` is never read","code":{"code":"unused_assignments","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":34265,"byte_end":34269,"line_start":1018,"line_end":1018,"column_start":37,"column_end":41,"is_primary":true,"text":[{"text":" let mut count = 0u32;","highlight_start":37,"highlight_end":41}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"maybe it is overwritten before being read?","code":null,"level":"help","spans":[],"children":[],"rendered":null},{"message":"`#[warn(unused_assignments)]` (part of `#[warn(unused)]`) on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: value assigned to `count` is never read\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:1018:37\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m1018\u001b[0m \u001b[1m\u001b[94m|\u001b[0m let mut count = 0u32;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m= \u001b[0m\u001b[1mhelp\u001b[0m: maybe it is overwritten before being read?\n \u001b[1m\u001b[94m= \u001b[0m\u001b[1mnote\u001b[0m: `#[warn(unused_assignments)]` (part of `#[warn(unused)]`) on by default\n\n"} +{"$message_type":"diagnostic","message":"unreachable pattern","code":{"code":"unreachable_patterns","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":39021,"byte_end":39022,"line_start":1133,"line_end":1133,"column_start":9,"column_end":10,"is_primary":true,"text":[{"text":" _ => VX_ERROR_NOT_IMPLEMENTED,","highlight_start":9,"highlight_end":10}],"label":"no value can reach this","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"multiple earlier patterns match some of the same values","code":null,"level":"note","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":38199,"byte_end":38231,"line_start":1113,"line_end":1113,"column_start":9,"column_end":41,"is_primary":false,"text":[{"text":" VX_CONTEXT_ATTRIBUTE_USER_MEMORY => {","highlight_start":9,"highlight_end":41}],"label":"matches some of the same values","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":38321,"byte_end":38358,"line_start":1117,"line_end":1117,"column_start":9,"column_end":46,"is_primary":false,"text":[{"text":" VX_CONTEXT_ATTRIBUTE_IMMEDIATE_BORDER => {","highlight_start":9,"highlight_end":46}],"label":"matches some of the same values","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":39021,"byte_end":39022,"line_start":1133,"line_end":1133,"column_start":9,"column_end":10,"is_primary":true,"text":[{"text":" _ => VX_ERROR_NOT_IMPLEMENTED,","highlight_start":9,"highlight_end":10}],"label":"collectively making this unreachable","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unreachable pattern\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:1133:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m1133\u001b[0m \u001b[1m\u001b[94m|\u001b[0m _ => VX_ERROR_NOT_IMPLEMENTED,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^\u001b[0m \u001b[1m\u001b[33mno value can reach this\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[92mnote\u001b[0m: multiple earlier patterns match some of the same values\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:1133:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m1113\u001b[0m \u001b[1m\u001b[94m|\u001b[0m VX_CONTEXT_ATTRIBUTE_USER_MEMORY => {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m--------------------------------\u001b[0m \u001b[1m\u001b[94mmatches some of the same values\u001b[0m\n\u001b[1m\u001b[94m...\u001b[0m\n\u001b[1m\u001b[94m1117\u001b[0m \u001b[1m\u001b[94m|\u001b[0m VX_CONTEXT_ATTRIBUTE_IMMEDIATE_BORDER => {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m-------------------------------------\u001b[0m \u001b[1m\u001b[94mmatches some of the same values\u001b[0m\n\u001b[1m\u001b[94m...\u001b[0m\n\u001b[1m\u001b[94m1133\u001b[0m \u001b[1m\u001b[94m|\u001b[0m _ => VX_ERROR_NOT_IMPLEMENTED,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[92m^\u001b[0m \u001b[1m\u001b[92mcollectively making this unreachable\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `VX_CONTEXT_ATTRIBUTE_IMMEDIATE_BORDER`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":38321,"byte_end":38358,"line_start":1117,"line_end":1117,"column_start":9,"column_end":46,"is_primary":true,"text":[{"text":" VX_CONTEXT_ATTRIBUTE_IMMEDIATE_BORDER => {","highlight_start":9,"highlight_end":46}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"you might have meant to pattern match on the similarly named constant `VX_CONTEXT_ATTRIBUTE_UNIQUE_KERNELS`","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":38321,"byte_end":38358,"line_start":1117,"line_end":1117,"column_start":9,"column_end":46,"is_primary":true,"text":[{"text":" VX_CONTEXT_ATTRIBUTE_IMMEDIATE_BORDER => {","highlight_start":9,"highlight_end":46}],"label":null,"suggested_replacement":"unified_c_api::VX_CONTEXT_ATTRIBUTE_UNIQUE_KERNELS","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null},{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":38321,"byte_end":38358,"line_start":1117,"line_end":1117,"column_start":9,"column_end":46,"is_primary":true,"text":[{"text":" VX_CONTEXT_ATTRIBUTE_IMMEDIATE_BORDER => {","highlight_start":9,"highlight_end":46}],"label":null,"suggested_replacement":"_VX_CONTEXT_ATTRIBUTE_IMMEDIATE_BORDER","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `VX_CONTEXT_ATTRIBUTE_IMMEDIATE_BORDER`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:1117:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m1117\u001b[0m \u001b[1m\u001b[94m|\u001b[0m VX_CONTEXT_ATTRIBUTE_IMMEDIATE_BORDER => {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[96mhelp\u001b[0m: you might have meant to pattern match on the similarly named constant `VX_CONTEXT_ATTRIBUTE_UNIQUE_KERNELS`\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m1117\u001b[0m \u001b[91m- \u001b[0m \u001b[91mVX_CONTEXT_ATTRIBUTE_IMMEDIATE_BORDER\u001b[0m => {\n\u001b[1m\u001b[94m1117\u001b[0m \u001b[92m+ \u001b[0m \u001b[92munified_c_api::VX_CONTEXT_ATTRIBUTE_UNIQUE_KERNELS\u001b[0m => {\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[96mhelp\u001b[0m: if this is intentional, prefix it with an underscore\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m1117\u001b[0m \u001b[1m\u001b[94m| \u001b[0m \u001b[92m_\u001b[0mVX_CONTEXT_ATTRIBUTE_IMMEDIATE_BORDER => {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[92m+\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"variable does not need to be mutable","code":{"code":"unused_mut","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":43298,"byte_end":43312,"line_start":1249,"line_end":1249,"column_start":23,"column_end":37,"is_primary":true,"text":[{"text":" if let Ok(mut params_mut) = PARAMETERS.lock() {","highlight_start":23,"highlight_end":37}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(unused_mut)]` (part of `#[warn(unused)]`) on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"remove this `mut`","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":43298,"byte_end":43302,"line_start":1249,"line_end":1249,"column_start":23,"column_end":27,"is_primary":true,"text":[{"text":" if let Ok(mut params_mut) = PARAMETERS.lock() {","highlight_start":23,"highlight_end":27}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: variable does not need to be mutable\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:1249:23\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m1249\u001b[0m \u001b[1m\u001b[94m|\u001b[0m if let Ok(mut params_mut) = PARAMETERS.lock() {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m----\u001b[0m\u001b[1m\u001b[33m^^^^^^^^^^\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94mhelp: remove this `mut`\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m= \u001b[0m\u001b[1mnote\u001b[0m: `#[warn(unused_mut)]` (part of `#[warn(unused)]`) on by default\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `context_id`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":43080,"byte_end":43090,"line_start":1242,"line_end":1242,"column_start":5,"column_end":15,"is_primary":true,"text":[{"text":" context_id: u32,","highlight_start":5,"highlight_end":15}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":43080,"byte_end":43090,"line_start":1242,"line_end":1242,"column_start":5,"column_end":15,"is_primary":true,"text":[{"text":" context_id: u32,","highlight_start":5,"highlight_end":15}],"label":null,"suggested_replacement":"_context_id","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `context_id`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:1242:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m1242\u001b[0m \u001b[1m\u001b[94m|\u001b[0m context_id: u32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_context_id`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `kernel_id`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":43101,"byte_end":43110,"line_start":1243,"line_end":1243,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" kernel_id: u64,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":43101,"byte_end":43110,"line_start":1243,"line_end":1243,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" kernel_id: u64,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":"_kernel_id","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `kernel_id`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:1243:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m1243\u001b[0m \u001b[1m\u001b[94m|\u001b[0m kernel_id: u64,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_kernel_id`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unnecessary `unsafe` block","code":{"code":"unused_unsafe","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":59048,"byte_end":59054,"line_start":1683,"line_end":1683,"column_start":25,"column_end":31,"is_primary":true,"text":[{"text":" unsafe {","highlight_start":25,"highlight_end":31}],"label":"unnecessary `unsafe` block","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":48753,"byte_end":48759,"line_start":1432,"line_end":1432,"column_start":5,"column_end":11,"is_primary":false,"text":[{"text":" unsafe {","highlight_start":5,"highlight_end":11}],"label":"because it's nested under this `unsafe` block","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unnecessary `unsafe` block\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:1683:25\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m1432\u001b[0m \u001b[1m\u001b[94m|\u001b[0m unsafe {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m------\u001b[0m \u001b[1m\u001b[94mbecause it's nested under this `unsafe` block\u001b[0m\n\u001b[1m\u001b[94m...\u001b[0m\n\u001b[1m\u001b[94m1683\u001b[0m \u001b[1m\u001b[94m|\u001b[0m unsafe {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m \u001b[1m\u001b[33munnecessary `unsafe` block\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unnecessary `unsafe` block","code":{"code":"unused_unsafe","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":59328,"byte_end":59334,"line_start":1690,"line_end":1690,"column_start":17,"column_end":23,"is_primary":true,"text":[{"text":" unsafe {","highlight_start":17,"highlight_end":23}],"label":"unnecessary `unsafe` block","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":48753,"byte_end":48759,"line_start":1432,"line_end":1432,"column_start":5,"column_end":11,"is_primary":false,"text":[{"text":" unsafe {","highlight_start":5,"highlight_end":11}],"label":"because it's nested under this `unsafe` block","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unnecessary `unsafe` block\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:1690:17\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m1432\u001b[0m \u001b[1m\u001b[94m|\u001b[0m unsafe {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m------\u001b[0m \u001b[1m\u001b[94mbecause it's nested under this `unsafe` block\u001b[0m\n\u001b[1m\u001b[94m...\u001b[0m\n\u001b[1m\u001b[94m1690\u001b[0m \u001b[1m\u001b[94m|\u001b[0m unsafe {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m \u001b[1m\u001b[33munnecessary `unsafe` block\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `msg`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":72708,"byte_end":72711,"line_start":2142,"line_end":2142,"column_start":9,"column_end":12,"is_primary":true,"text":[{"text":" let msg = CStr::from_ptr(message).to_string_lossy();","highlight_start":9,"highlight_end":12}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":72708,"byte_end":72711,"line_start":2142,"line_end":2142,"column_start":9,"column_end":12,"is_primary":true,"text":[{"text":" let msg = CStr::from_ptr(message).to_string_lossy();","highlight_start":9,"highlight_end":12}],"label":null,"suggested_replacement":"_msg","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `msg`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:2142:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m2142\u001b[0m \u001b[1m\u001b[94m|\u001b[0m let msg = CStr::from_ptr(message).to_string_lossy();\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_msg`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `attribute`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":90630,"byte_end":90639,"line_start":2654,"line_end":2654,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" attribute: i32,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":90630,"byte_end":90639,"line_start":2654,"line_end":2654,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" attribute: i32,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":"_attribute","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `attribute`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:2654:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m2654\u001b[0m \u001b[1m\u001b[94m|\u001b[0m attribute: i32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_attribute`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `size`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":90672,"byte_end":90676,"line_start":2656,"line_end":2656,"column_start":5,"column_end":9,"is_primary":true,"text":[{"text":" size: usize,","highlight_start":5,"highlight_end":9}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":90672,"byte_end":90676,"line_start":2656,"line_end":2656,"column_start":5,"column_end":9,"is_primary":true,"text":[{"text":" size: usize,","highlight_start":5,"highlight_end":9}],"label":null,"suggested_replacement":"_size","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `size`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:2656:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m2656\u001b[0m \u001b[1m\u001b[94m|\u001b[0m size: usize,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_size`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `index`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":90997,"byte_end":91002,"line_start":2677,"line_end":2677,"column_start":5,"column_end":10,"is_primary":true,"text":[{"text":" index: u32,","highlight_start":5,"highlight_end":10}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":90997,"byte_end":91002,"line_start":2677,"line_end":2677,"column_start":5,"column_end":10,"is_primary":true,"text":[{"text":" index: u32,","highlight_start":5,"highlight_end":10}],"label":null,"suggested_replacement":"_index","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `index`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:2677:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m2677\u001b[0m \u001b[1m\u001b[94m|\u001b[0m index: u32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_index`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `usage`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":91107,"byte_end":91112,"line_start":2681,"line_end":2681,"column_start":5,"column_end":10,"is_primary":true,"text":[{"text":" usage: i32,","highlight_start":5,"highlight_end":10}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":91107,"byte_end":91112,"line_start":2681,"line_end":2681,"column_start":5,"column_end":10,"is_primary":true,"text":[{"text":" usage: i32,","highlight_start":5,"highlight_end":10}],"label":null,"suggested_replacement":"_usage","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `usage`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:2681:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m2681\u001b[0m \u001b[1m\u001b[94m|\u001b[0m usage: i32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_usage`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `mem_type`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":91123,"byte_end":91131,"line_start":2682,"line_end":2682,"column_start":5,"column_end":13,"is_primary":true,"text":[{"text":" mem_type: i32,","highlight_start":5,"highlight_end":13}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":91123,"byte_end":91131,"line_start":2682,"line_end":2682,"column_start":5,"column_end":13,"is_primary":true,"text":[{"text":" mem_type: i32,","highlight_start":5,"highlight_end":13}],"label":null,"suggested_replacement":"_mem_type","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `mem_type`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:2682:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m2682\u001b[0m \u001b[1m\u001b[94m|\u001b[0m mem_type: i32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_mem_type`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `index`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":91357,"byte_end":91362,"line_start":2694,"line_end":2694,"column_start":5,"column_end":10,"is_primary":true,"text":[{"text":" index: u32,","highlight_start":5,"highlight_end":10}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":91357,"byte_end":91362,"line_start":2694,"line_end":2694,"column_start":5,"column_end":10,"is_primary":true,"text":[{"text":" index: u32,","highlight_start":5,"highlight_end":10}],"label":null,"suggested_replacement":"_index","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `index`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:2694:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m2694\u001b[0m \u001b[1m\u001b[94m|\u001b[0m index: u32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_index`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `map_id`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":91373,"byte_end":91379,"line_start":2695,"line_end":2695,"column_start":5,"column_end":11,"is_primary":true,"text":[{"text":" map_id: usize,","highlight_start":5,"highlight_end":11}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":91373,"byte_end":91379,"line_start":2695,"line_end":2695,"column_start":5,"column_end":11,"is_primary":true,"text":[{"text":" map_id: usize,","highlight_start":5,"highlight_end":11}],"label":null,"suggested_replacement":"_map_id","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `map_id`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:2695:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m2695\u001b[0m \u001b[1m\u001b[94m|\u001b[0m map_id: usize,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_map_id`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `usage`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":91550,"byte_end":91555,"line_start":2707,"line_end":2707,"column_start":5,"column_end":10,"is_primary":true,"text":[{"text":" usage: i32,","highlight_start":5,"highlight_end":10}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":91550,"byte_end":91555,"line_start":2707,"line_end":2707,"column_start":5,"column_end":10,"is_primary":true,"text":[{"text":" usage: i32,","highlight_start":5,"highlight_end":10}],"label":null,"suggested_replacement":"_usage","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `usage`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:2707:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m2707\u001b[0m \u001b[1m\u001b[94m|\u001b[0m usage: i32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_usage`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `user_mem_type`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":91566,"byte_end":91579,"line_start":2708,"line_end":2708,"column_start":5,"column_end":18,"is_primary":true,"text":[{"text":" user_mem_type: i32,","highlight_start":5,"highlight_end":18}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":91566,"byte_end":91579,"line_start":2708,"line_end":2708,"column_start":5,"column_end":18,"is_primary":true,"text":[{"text":" user_mem_type: i32,","highlight_start":5,"highlight_end":18}],"label":null,"suggested_replacement":"_user_mem_type","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `user_mem_type`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:2708:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m2708\u001b[0m \u001b[1m\u001b[94m|\u001b[0m user_mem_type: i32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_user_mem_type`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `start`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":91748,"byte_end":91753,"line_start":2719,"line_end":2719,"column_start":5,"column_end":10,"is_primary":true,"text":[{"text":" start: usize,","highlight_start":5,"highlight_end":10}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":91748,"byte_end":91753,"line_start":2719,"line_end":2719,"column_start":5,"column_end":10,"is_primary":true,"text":[{"text":" start: usize,","highlight_start":5,"highlight_end":10}],"label":null,"suggested_replacement":"_start","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `start`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:2719:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m2719\u001b[0m \u001b[1m\u001b[94m|\u001b[0m start: usize,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_start`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `end`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":91766,"byte_end":91769,"line_start":2720,"line_end":2720,"column_start":5,"column_end":8,"is_primary":true,"text":[{"text":" end: usize,","highlight_start":5,"highlight_end":8}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":91766,"byte_end":91769,"line_start":2720,"line_end":2720,"column_start":5,"column_end":8,"is_primary":true,"text":[{"text":" end: usize,","highlight_start":5,"highlight_end":8}],"label":null,"suggested_replacement":"_end","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `end`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:2720:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m2720\u001b[0m \u001b[1m\u001b[94m|\u001b[0m end: usize,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_end`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `stride`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":91782,"byte_end":91788,"line_start":2721,"line_end":2721,"column_start":5,"column_end":11,"is_primary":true,"text":[{"text":" stride: usize,","highlight_start":5,"highlight_end":11}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":91782,"byte_end":91788,"line_start":2721,"line_end":2721,"column_start":5,"column_end":11,"is_primary":true,"text":[{"text":" stride: usize,","highlight_start":5,"highlight_end":11}],"label":null,"suggested_replacement":"_stride","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `stride`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:2721:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m2721\u001b[0m \u001b[1m\u001b[94m|\u001b[0m stride: usize,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_stride`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `user_mem_type`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":91828,"byte_end":91841,"line_start":2723,"line_end":2723,"column_start":5,"column_end":18,"is_primary":true,"text":[{"text":" user_mem_type: i32,","highlight_start":5,"highlight_end":18}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":91828,"byte_end":91841,"line_start":2723,"line_end":2723,"column_start":5,"column_end":18,"is_primary":true,"text":[{"text":" user_mem_type: i32,","highlight_start":5,"highlight_end":18}],"label":null,"suggested_replacement":"_user_mem_type","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `user_mem_type`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:2723:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m2723\u001b[0m \u001b[1m\u001b[94m|\u001b[0m user_mem_type: i32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_user_mem_type`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `attribute`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":92011,"byte_end":92020,"line_start":2734,"line_end":2734,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" attribute: i32,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":92011,"byte_end":92020,"line_start":2734,"line_end":2734,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" attribute: i32,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":"_attribute","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `attribute`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:2734:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m2734\u001b[0m \u001b[1m\u001b[94m|\u001b[0m attribute: i32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_attribute`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `size`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":92053,"byte_end":92057,"line_start":2736,"line_end":2736,"column_start":5,"column_end":9,"is_primary":true,"text":[{"text":" size: usize,","highlight_start":5,"highlight_end":9}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":92053,"byte_end":92057,"line_start":2736,"line_end":2736,"column_start":5,"column_end":9,"is_primary":true,"text":[{"text":" size: usize,","highlight_start":5,"highlight_end":9}],"label":null,"suggested_replacement":"_size","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `size`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:2736:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m2736\u001b[0m \u001b[1m\u001b[94m|\u001b[0m size: usize,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_size`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `attribute`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":92236,"byte_end":92245,"line_start":2747,"line_end":2747,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" attribute: i32,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":92236,"byte_end":92245,"line_start":2747,"line_end":2747,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" attribute: i32,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":"_attribute","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `attribute`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:2747:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m2747\u001b[0m \u001b[1m\u001b[94m|\u001b[0m attribute: i32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_attribute`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `size`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":92280,"byte_end":92284,"line_start":2749,"line_end":2749,"column_start":5,"column_end":9,"is_primary":true,"text":[{"text":" size: usize,","highlight_start":5,"highlight_end":9}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":92280,"byte_end":92284,"line_start":2749,"line_end":2749,"column_start":5,"column_end":9,"is_primary":true,"text":[{"text":" size: usize,","highlight_start":5,"highlight_end":9}],"label":null,"suggested_replacement":"_size","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `size`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:2749:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m2749\u001b[0m \u001b[1m\u001b[94m|\u001b[0m size: usize,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_size`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `attribute`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":92464,"byte_end":92473,"line_start":2760,"line_end":2760,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" attribute: i32,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":92464,"byte_end":92473,"line_start":2760,"line_end":2760,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" attribute: i32,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":"_attribute","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `attribute`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:2760:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m2760\u001b[0m \u001b[1m\u001b[94m|\u001b[0m attribute: i32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_attribute`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `size`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":92506,"byte_end":92510,"line_start":2762,"line_end":2762,"column_start":5,"column_end":9,"is_primary":true,"text":[{"text":" size: usize,","highlight_start":5,"highlight_end":9}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":92506,"byte_end":92510,"line_start":2762,"line_end":2762,"column_start":5,"column_end":9,"is_primary":true,"text":[{"text":" size: usize,","highlight_start":5,"highlight_end":9}],"label":null,"suggested_replacement":"_size","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `size`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:2762:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m2762\u001b[0m \u001b[1m\u001b[94m|\u001b[0m size: usize,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_size`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `attribute`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":92695,"byte_end":92704,"line_start":2773,"line_end":2773,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" attribute: i32,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":92695,"byte_end":92704,"line_start":2773,"line_end":2773,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" attribute: i32,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":"_attribute","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `attribute`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:2773:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m2773\u001b[0m \u001b[1m\u001b[94m|\u001b[0m attribute: i32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_attribute`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `size`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":92739,"byte_end":92743,"line_start":2775,"line_end":2775,"column_start":5,"column_end":9,"is_primary":true,"text":[{"text":" size: usize,","highlight_start":5,"highlight_end":9}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":92739,"byte_end":92743,"line_start":2775,"line_end":2775,"column_start":5,"column_end":9,"is_primary":true,"text":[{"text":" size: usize,","highlight_start":5,"highlight_end":9}],"label":null,"suggested_replacement":"_size","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `size`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:2775:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m2775\u001b[0m \u001b[1m\u001b[94m|\u001b[0m size: usize,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_size`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `attribute`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":92904,"byte_end":92913,"line_start":2786,"line_end":2786,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" attribute: i32,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":92904,"byte_end":92913,"line_start":2786,"line_end":2786,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" attribute: i32,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":"_attribute","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `attribute`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:2786:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m2786\u001b[0m \u001b[1m\u001b[94m|\u001b[0m attribute: i32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_attribute`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `size`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":92946,"byte_end":92950,"line_start":2788,"line_end":2788,"column_start":5,"column_end":9,"is_primary":true,"text":[{"text":" size: usize,","highlight_start":5,"highlight_end":9}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":92946,"byte_end":92950,"line_start":2788,"line_end":2788,"column_start":5,"column_end":9,"is_primary":true,"text":[{"text":" size: usize,","highlight_start":5,"highlight_end":9}],"label":null,"suggested_replacement":"_size","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `size`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:2788:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m2788\u001b[0m \u001b[1m\u001b[94m|\u001b[0m size: usize,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_size`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unnecessary `unsafe` block","code":{"code":"unused_unsafe","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":93606,"byte_end":93612,"line_start":2818,"line_end":2818,"column_start":5,"column_end":11,"is_primary":true,"text":[{"text":" unsafe {","highlight_start":5,"highlight_end":11}],"label":"unnecessary `unsafe` block","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unnecessary `unsafe` block\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:2818:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m2818\u001b[0m \u001b[1m\u001b[94m|\u001b[0m unsafe {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m \u001b[1m\u001b[33munnecessary `unsafe` block\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `usage`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":95389,"byte_end":95394,"line_start":2882,"line_end":2882,"column_start":5,"column_end":10,"is_primary":true,"text":[{"text":" usage: i32,","highlight_start":5,"highlight_end":10}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":95389,"byte_end":95394,"line_start":2882,"line_end":2882,"column_start":5,"column_end":10,"is_primary":true,"text":[{"text":" usage: i32,","highlight_start":5,"highlight_end":10}],"label":null,"suggested_replacement":"_usage","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `usage`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:2882:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m2882\u001b[0m \u001b[1m\u001b[94m|\u001b[0m usage: i32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_usage`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `user_mem_type`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":95405,"byte_end":95418,"line_start":2883,"line_end":2883,"column_start":5,"column_end":18,"is_primary":true,"text":[{"text":" user_mem_type: i32,","highlight_start":5,"highlight_end":18}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":95405,"byte_end":95418,"line_start":2883,"line_end":2883,"column_start":5,"column_end":18,"is_primary":true,"text":[{"text":" user_mem_type: i32,","highlight_start":5,"highlight_end":18}],"label":null,"suggested_replacement":"_user_mem_type","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `user_mem_type`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:2883:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m2883\u001b[0m \u001b[1m\u001b[94m|\u001b[0m user_mem_type: i32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_user_mem_type`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unnecessary `unsafe` block","code":{"code":"unused_unsafe","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":96671,"byte_end":96677,"line_start":2937,"line_end":2937,"column_start":5,"column_end":11,"is_primary":true,"text":[{"text":" unsafe {","highlight_start":5,"highlight_end":11}],"label":"unnecessary `unsafe` block","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unnecessary `unsafe` block\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:2937:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m2937\u001b[0m \u001b[1m\u001b[94m|\u001b[0m unsafe {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m \u001b[1m\u001b[33munnecessary `unsafe` block\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `attribute`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":97041,"byte_end":97050,"line_start":2952,"line_end":2952,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" attribute: i32,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":97041,"byte_end":97050,"line_start":2952,"line_end":2952,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" attribute: i32,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":"_attribute","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `attribute`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:2952:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m2952\u001b[0m \u001b[1m\u001b[94m|\u001b[0m attribute: i32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_attribute`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `size`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":97083,"byte_end":97087,"line_start":2954,"line_end":2954,"column_start":5,"column_end":9,"is_primary":true,"text":[{"text":" size: usize,","highlight_start":5,"highlight_end":9}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":97083,"byte_end":97087,"line_start":2954,"line_end":2954,"column_start":5,"column_end":9,"is_primary":true,"text":[{"text":" size: usize,","highlight_start":5,"highlight_end":9}],"label":null,"suggested_replacement":"_size","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `size`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:2954:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m2954\u001b[0m \u001b[1m\u001b[94m|\u001b[0m size: usize,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_size`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `usage`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":97281,"byte_end":97286,"line_start":2966,"line_end":2966,"column_start":5,"column_end":10,"is_primary":true,"text":[{"text":" usage: i32,","highlight_start":5,"highlight_end":10}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":97281,"byte_end":97286,"line_start":2966,"line_end":2966,"column_start":5,"column_end":10,"is_primary":true,"text":[{"text":" usage: i32,","highlight_start":5,"highlight_end":10}],"label":null,"suggested_replacement":"_usage","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `usage`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:2966:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m2966\u001b[0m \u001b[1m\u001b[94m|\u001b[0m usage: i32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_usage`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `user_mem_type`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":97297,"byte_end":97310,"line_start":2967,"line_end":2967,"column_start":5,"column_end":18,"is_primary":true,"text":[{"text":" user_mem_type: i32,","highlight_start":5,"highlight_end":18}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":97297,"byte_end":97310,"line_start":2967,"line_end":2967,"column_start":5,"column_end":18,"is_primary":true,"text":[{"text":" user_mem_type: i32,","highlight_start":5,"highlight_end":18}],"label":null,"suggested_replacement":"_user_mem_type","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `user_mem_type`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:2967:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m2967\u001b[0m \u001b[1m\u001b[94m|\u001b[0m user_mem_type: i32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_user_mem_type`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `usage`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":97609,"byte_end":97614,"line_start":2982,"line_end":2982,"column_start":5,"column_end":10,"is_primary":true,"text":[{"text":" usage: i32,","highlight_start":5,"highlight_end":10}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":97609,"byte_end":97614,"line_start":2982,"line_end":2982,"column_start":5,"column_end":10,"is_primary":true,"text":[{"text":" usage: i32,","highlight_start":5,"highlight_end":10}],"label":null,"suggested_replacement":"_usage","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `usage`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:2982:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m2982\u001b[0m \u001b[1m\u001b[94m|\u001b[0m usage: i32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_usage`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `mem_type`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":97625,"byte_end":97633,"line_start":2983,"line_end":2983,"column_start":5,"column_end":13,"is_primary":true,"text":[{"text":" mem_type: i32,","highlight_start":5,"highlight_end":13}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":97625,"byte_end":97633,"line_start":2983,"line_end":2983,"column_start":5,"column_end":13,"is_primary":true,"text":[{"text":" mem_type: i32,","highlight_start":5,"highlight_end":13}],"label":null,"suggested_replacement":"_mem_type","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `mem_type`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:2983:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m2983\u001b[0m \u001b[1m\u001b[94m|\u001b[0m mem_type: i32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_mem_type`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unnecessary `unsafe` block","code":{"code":"unused_unsafe","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":98868,"byte_end":98874,"line_start":3037,"line_end":3037,"column_start":25,"column_end":31,"is_primary":true,"text":[{"text":" let exemplar_type = unsafe {","highlight_start":25,"highlight_end":31}],"label":"unnecessary `unsafe` block","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unnecessary `unsafe` block\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:3037:25\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m3037\u001b[0m \u001b[1m\u001b[94m|\u001b[0m let exemplar_type = unsafe {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m \u001b[1m\u001b[33munnecessary `unsafe` block\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unnecessary `unsafe` block","code":{"code":"unused_unsafe","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":99418,"byte_end":99424,"line_start":3056,"line_end":3056,"column_start":5,"column_end":11,"is_primary":true,"text":[{"text":" unsafe {","highlight_start":5,"highlight_end":11}],"label":"unnecessary `unsafe` block","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unnecessary `unsafe` block\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:3056:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m3056\u001b[0m \u001b[1m\u001b[94m|\u001b[0m unsafe {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m \u001b[1m\u001b[33munnecessary `unsafe` block\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `attribute`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":101375,"byte_end":101384,"line_start":3122,"line_end":3122,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" attribute: i32,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":101375,"byte_end":101384,"line_start":3122,"line_end":3122,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" attribute: i32,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":"_attribute","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `attribute`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:3122:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m3122\u001b[0m \u001b[1m\u001b[94m|\u001b[0m attribute: i32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_attribute`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `size`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":101417,"byte_end":101421,"line_start":3124,"line_end":3124,"column_start":5,"column_end":9,"is_primary":true,"text":[{"text":" size: usize,","highlight_start":5,"highlight_end":9}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":101417,"byte_end":101421,"line_start":3124,"line_end":3124,"column_start":5,"column_end":9,"is_primary":true,"text":[{"text":" size: usize,","highlight_start":5,"highlight_end":9}],"label":null,"suggested_replacement":"_size","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `size`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:3124:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m3124\u001b[0m \u001b[1m\u001b[94m|\u001b[0m size: usize,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_size`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `index`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":101608,"byte_end":101613,"line_start":3135,"line_end":3135,"column_start":5,"column_end":10,"is_primary":true,"text":[{"text":" index: u32,","highlight_start":5,"highlight_end":10}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":101608,"byte_end":101613,"line_start":3135,"line_end":3135,"column_start":5,"column_end":10,"is_primary":true,"text":[{"text":" index: u32,","highlight_start":5,"highlight_end":10}],"label":null,"suggested_replacement":"_index","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `index`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:3135:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m3135\u001b[0m \u001b[1m\u001b[94m|\u001b[0m index: u32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_index`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `index`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":101825,"byte_end":101830,"line_start":3146,"line_end":3146,"column_start":5,"column_end":10,"is_primary":true,"text":[{"text":" index: u32,","highlight_start":5,"highlight_end":10}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":101825,"byte_end":101830,"line_start":3146,"line_end":3146,"column_start":5,"column_end":10,"is_primary":true,"text":[{"text":" index: u32,","highlight_start":5,"highlight_end":10}],"label":null,"suggested_replacement":"_index","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `index`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:3146:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m3146\u001b[0m \u001b[1m\u001b[94m|\u001b[0m index: u32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_index`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `data_type`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":102683,"byte_end":102692,"line_start":3183,"line_end":3183,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" data_type: i32,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":102683,"byte_end":102692,"line_start":3183,"line_end":3183,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" data_type: i32,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":"_data_type","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `data_type`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:3183:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m3183\u001b[0m \u001b[1m\u001b[94m|\u001b[0m data_type: i32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_data_type`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `fixed_point_pos`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":102703,"byte_end":102718,"line_start":3184,"line_end":3184,"column_start":5,"column_end":20,"is_primary":true,"text":[{"text":" fixed_point_pos: i8,","highlight_start":5,"highlight_end":20}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":102703,"byte_end":102718,"line_start":3184,"line_end":3184,"column_start":5,"column_end":20,"is_primary":true,"text":[{"text":" fixed_point_pos: i8,","highlight_start":5,"highlight_end":20}],"label":null,"suggested_replacement":"_fixed_point_pos","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `fixed_point_pos`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:3184:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m3184\u001b[0m \u001b[1m\u001b[94m|\u001b[0m fixed_point_pos: i8,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_fixed_point_pos`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `num_dims`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":102956,"byte_end":102964,"line_start":3195,"line_end":3195,"column_start":5,"column_end":13,"is_primary":true,"text":[{"text":" num_dims: usize,","highlight_start":5,"highlight_end":13}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":102956,"byte_end":102964,"line_start":3195,"line_end":3195,"column_start":5,"column_end":13,"is_primary":true,"text":[{"text":" num_dims: usize,","highlight_start":5,"highlight_end":13}],"label":null,"suggested_replacement":"_num_dims","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `num_dims`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:3195:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m3195\u001b[0m \u001b[1m\u001b[94m|\u001b[0m num_dims: usize,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_num_dims`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `attribute`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":103260,"byte_end":103269,"line_start":3208,"line_end":3208,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" attribute: i32,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":103260,"byte_end":103269,"line_start":3208,"line_end":3208,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" attribute: i32,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":"_attribute","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `attribute`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:3208:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m3208\u001b[0m \u001b[1m\u001b[94m|\u001b[0m attribute: i32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_attribute`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `size`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":103302,"byte_end":103306,"line_start":3210,"line_end":3210,"column_start":5,"column_end":9,"is_primary":true,"text":[{"text":" size: usize,","highlight_start":5,"highlight_end":9}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":103302,"byte_end":103306,"line_start":3210,"line_end":3210,"column_start":5,"column_end":9,"is_primary":true,"text":[{"text":" size: usize,","highlight_start":5,"highlight_end":9}],"label":null,"suggested_replacement":"_size","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `size`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:3210:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m3210\u001b[0m \u001b[1m\u001b[94m|\u001b[0m size: usize,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_size`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `usage`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":103504,"byte_end":103509,"line_start":3222,"line_end":3222,"column_start":5,"column_end":10,"is_primary":true,"text":[{"text":" usage: i32,","highlight_start":5,"highlight_end":10}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":103504,"byte_end":103509,"line_start":3222,"line_end":3222,"column_start":5,"column_end":10,"is_primary":true,"text":[{"text":" usage: i32,","highlight_start":5,"highlight_end":10}],"label":null,"suggested_replacement":"_usage","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `usage`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:3222:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m3222\u001b[0m \u001b[1m\u001b[94m|\u001b[0m usage: i32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_usage`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `user_mem_type`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":103520,"byte_end":103533,"line_start":3223,"line_end":3223,"column_start":5,"column_end":18,"is_primary":true,"text":[{"text":" user_mem_type: i32,","highlight_start":5,"highlight_end":18}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":103520,"byte_end":103533,"line_start":3223,"line_end":3223,"column_start":5,"column_end":18,"is_primary":true,"text":[{"text":" user_mem_type: i32,","highlight_start":5,"highlight_end":18}],"label":null,"suggested_replacement":"_user_mem_type","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `user_mem_type`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:3223:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m3223\u001b[0m \u001b[1m\u001b[94m|\u001b[0m user_mem_type: i32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_user_mem_type`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `num_dims`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":103709,"byte_end":103717,"line_start":3234,"line_end":3234,"column_start":5,"column_end":13,"is_primary":true,"text":[{"text":" num_dims: usize,","highlight_start":5,"highlight_end":13}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":103709,"byte_end":103717,"line_start":3234,"line_end":3234,"column_start":5,"column_end":13,"is_primary":true,"text":[{"text":" num_dims: usize,","highlight_start":5,"highlight_end":13}],"label":null,"suggested_replacement":"_num_dims","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `num_dims`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:3234:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m3234\u001b[0m \u001b[1m\u001b[94m|\u001b[0m num_dims: usize,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_num_dims`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `usage`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":103861,"byte_end":103866,"line_start":3240,"line_end":3240,"column_start":5,"column_end":10,"is_primary":true,"text":[{"text":" usage: i32,","highlight_start":5,"highlight_end":10}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":103861,"byte_end":103866,"line_start":3240,"line_end":3240,"column_start":5,"column_end":10,"is_primary":true,"text":[{"text":" usage: i32,","highlight_start":5,"highlight_end":10}],"label":null,"suggested_replacement":"_usage","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `usage`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:3240:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m3240\u001b[0m \u001b[1m\u001b[94m|\u001b[0m usage: i32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_usage`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `mem_type`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":103877,"byte_end":103885,"line_start":3241,"line_end":3241,"column_start":5,"column_end":13,"is_primary":true,"text":[{"text":" mem_type: i32,","highlight_start":5,"highlight_end":13}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":103877,"byte_end":103885,"line_start":3241,"line_end":3241,"column_start":5,"column_end":13,"is_primary":true,"text":[{"text":" mem_type: i32,","highlight_start":5,"highlight_end":13}],"label":null,"suggested_replacement":"_mem_type","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `mem_type`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:3241:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m3241\u001b[0m \u001b[1m\u001b[94m|\u001b[0m mem_type: i32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_mem_type`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `attribute`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":105545,"byte_end":105554,"line_start":3319,"line_end":3319,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" attribute: i32,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":105545,"byte_end":105554,"line_start":3319,"line_end":3319,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" attribute: i32,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":"_attribute","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `attribute`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:3319:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m3319\u001b[0m \u001b[1m\u001b[94m|\u001b[0m attribute: i32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_attribute`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `size`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":105587,"byte_end":105591,"line_start":3321,"line_end":3321,"column_start":5,"column_end":9,"is_primary":true,"text":[{"text":" size: usize,","highlight_start":5,"highlight_end":9}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":105587,"byte_end":105591,"line_start":3321,"line_end":3321,"column_start":5,"column_end":9,"is_primary":true,"text":[{"text":" size: usize,","highlight_start":5,"highlight_end":9}],"label":null,"suggested_replacement":"_size","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `size`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:3321:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m3321\u001b[0m \u001b[1m\u001b[94m|\u001b[0m size: usize,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_size`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unnecessary `unsafe` block","code":{"code":"unused_unsafe","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":106330,"byte_end":106336,"line_start":3348,"line_end":3348,"column_start":20,"column_end":26,"is_primary":true,"text":[{"text":" let ref_type = unsafe {","highlight_start":20,"highlight_end":26}],"label":"unnecessary `unsafe` block","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unnecessary `unsafe` block\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:3348:20\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m3348\u001b[0m \u001b[1m\u001b[94m|\u001b[0m let ref_type = unsafe {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m \u001b[1m\u001b[33munnecessary `unsafe` block\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `num_refs`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":114196,"byte_end":114204,"line_start":3614,"line_end":3614,"column_start":5,"column_end":13,"is_primary":true,"text":[{"text":" num_refs: usize,","highlight_start":5,"highlight_end":13}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":114196,"byte_end":114204,"line_start":3614,"line_end":3614,"column_start":5,"column_end":13,"is_primary":true,"text":[{"text":" num_refs: usize,","highlight_start":5,"highlight_end":13}],"label":null,"suggested_replacement":"_num_refs","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `num_refs`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:3614:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m3614\u001b[0m \u001b[1m\u001b[94m|\u001b[0m num_refs: usize,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_num_refs`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `uses`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":114248,"byte_end":114252,"line_start":3616,"line_end":3616,"column_start":5,"column_end":9,"is_primary":true,"text":[{"text":" uses: *const usize,","highlight_start":5,"highlight_end":9}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":114248,"byte_end":114252,"line_start":3616,"line_end":3616,"column_start":5,"column_end":9,"is_primary":true,"text":[{"text":" uses: *const usize,","highlight_start":5,"highlight_end":9}],"label":null,"suggested_replacement":"_uses","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `uses`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:3616:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m3616\u001b[0m \u001b[1m\u001b[94m|\u001b[0m uses: *const usize,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_uses`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `attribute`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":115007,"byte_end":115016,"line_start":3654,"line_end":3654,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" attribute: i32,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":115007,"byte_end":115016,"line_start":3654,"line_end":3654,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" attribute: i32,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":"_attribute","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `attribute`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:3654:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m3654\u001b[0m \u001b[1m\u001b[94m|\u001b[0m attribute: i32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_attribute`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `size`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":115049,"byte_end":115053,"line_start":3656,"line_end":3656,"column_start":5,"column_end":9,"is_primary":true,"text":[{"text":" size: usize,","highlight_start":5,"highlight_end":9}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":115049,"byte_end":115053,"line_start":3656,"line_end":3656,"column_start":5,"column_end":9,"is_primary":true,"text":[{"text":" size: usize,","highlight_start":5,"highlight_end":9}],"label":null,"suggested_replacement":"_size","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `size`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:3656:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m3656\u001b[0m \u001b[1m\u001b[94m|\u001b[0m size: usize,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_size`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `attribute`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":115430,"byte_end":115439,"line_start":3675,"line_end":3675,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" attribute: i32,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":115430,"byte_end":115439,"line_start":3675,"line_end":3675,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" attribute: i32,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":"_attribute","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `attribute`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:3675:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m3675\u001b[0m \u001b[1m\u001b[94m|\u001b[0m attribute: i32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_attribute`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `size`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":115472,"byte_end":115476,"line_start":3677,"line_end":3677,"column_start":5,"column_end":9,"is_primary":true,"text":[{"text":" size: usize,","highlight_start":5,"highlight_end":9}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":115472,"byte_end":115476,"line_start":3677,"line_end":3677,"column_start":5,"column_end":9,"is_primary":true,"text":[{"text":" size: usize,","highlight_start":5,"highlight_end":9}],"label":null,"suggested_replacement":"_size","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `size`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:3677:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m3677\u001b[0m \u001b[1m\u001b[94m|\u001b[0m size: usize,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_size`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `attribute`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":115660,"byte_end":115669,"line_start":3688,"line_end":3688,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" attribute: i32,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":115660,"byte_end":115669,"line_start":3688,"line_end":3688,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" attribute: i32,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":"_attribute","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `attribute`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:3688:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m3688\u001b[0m \u001b[1m\u001b[94m|\u001b[0m attribute: i32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_attribute`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `size`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":115704,"byte_end":115708,"line_start":3690,"line_end":3690,"column_start":5,"column_end":9,"is_primary":true,"text":[{"text":" size: usize,","highlight_start":5,"highlight_end":9}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":115704,"byte_end":115708,"line_start":3690,"line_end":3690,"column_start":5,"column_end":9,"is_primary":true,"text":[{"text":" size: usize,","highlight_start":5,"highlight_end":9}],"label":null,"suggested_replacement":"_size","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `size`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:3690:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m3690\u001b[0m \u001b[1m\u001b[94m|\u001b[0m size: usize,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_size`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `index`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":116023,"byte_end":116028,"line_start":3709,"line_end":3709,"column_start":5,"column_end":10,"is_primary":true,"text":[{"text":" index: u32,","highlight_start":5,"highlight_end":10}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":116023,"byte_end":116028,"line_start":3709,"line_end":3709,"column_start":5,"column_end":10,"is_primary":true,"text":[{"text":" index: u32,","highlight_start":5,"highlight_end":10}],"label":null,"suggested_replacement":"_index","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `index`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:3709:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m3709\u001b[0m \u001b[1m\u001b[94m|\u001b[0m index: u32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_index`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `direction`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":116039,"byte_end":116048,"line_start":3710,"line_end":3710,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" direction: i32,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":116039,"byte_end":116048,"line_start":3710,"line_end":3710,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" direction: i32,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":"_direction","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `direction`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:3710:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m3710\u001b[0m \u001b[1m\u001b[94m|\u001b[0m direction: i32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_direction`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `data_type`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":116059,"byte_end":116068,"line_start":3711,"line_end":3711,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" data_type: i32,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":116059,"byte_end":116068,"line_start":3711,"line_end":3711,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" data_type: i32,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":"_data_type","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `data_type`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:3711:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m3711\u001b[0m \u001b[1m\u001b[94m|\u001b[0m data_type: i32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_data_type`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `state`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":116079,"byte_end":116084,"line_start":3712,"line_end":3712,"column_start":5,"column_end":10,"is_primary":true,"text":[{"text":" state: i32,","highlight_start":5,"highlight_end":10}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":116079,"byte_end":116084,"line_start":3712,"line_end":3712,"column_start":5,"column_end":10,"is_primary":true,"text":[{"text":" state: i32,","highlight_start":5,"highlight_end":10}],"label":null,"suggested_replacement":"_state","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `state`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:3712:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m3712\u001b[0m \u001b[1m\u001b[94m|\u001b[0m state: i32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_state`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `pattern`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":117006,"byte_end":117013,"line_start":3768,"line_end":3768,"column_start":5,"column_end":12,"is_primary":true,"text":[{"text":" pattern: i32,","highlight_start":5,"highlight_end":12}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":117006,"byte_end":117013,"line_start":3768,"line_end":3768,"column_start":5,"column_end":12,"is_primary":true,"text":[{"text":" pattern: i32,","highlight_start":5,"highlight_end":12}],"label":null,"suggested_replacement":"_pattern","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `pattern`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:3768:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m3768\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pattern: i32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_pattern`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `pattern`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":117293,"byte_end":117300,"line_start":3781,"line_end":3781,"column_start":5,"column_end":12,"is_primary":true,"text":[{"text":" pattern: i32,","highlight_start":5,"highlight_end":12}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":117293,"byte_end":117300,"line_start":3781,"line_end":3781,"column_start":5,"column_end":12,"is_primary":true,"text":[{"text":" pattern: i32,","highlight_start":5,"highlight_end":12}],"label":null,"suggested_replacement":"_pattern","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `pattern`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:3781:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m3781\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pattern: i32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_pattern`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unnecessary `unsafe` block","code":{"code":"unused_unsafe","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":117616,"byte_end":117622,"line_start":3793,"line_end":3793,"column_start":5,"column_end":11,"is_primary":true,"text":[{"text":" unsafe {","highlight_start":5,"highlight_end":11}],"label":"unnecessary `unsafe` block","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unnecessary `unsafe` block\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:3793:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m3793\u001b[0m \u001b[1m\u001b[94m|\u001b[0m unsafe {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m \u001b[1m\u001b[33munnecessary `unsafe` block\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `usage`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":163275,"byte_end":163280,"line_start":5423,"line_end":5423,"column_start":5,"column_end":10,"is_primary":true,"text":[{"text":" usage: vx_enum,","highlight_start":5,"highlight_end":10}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":163275,"byte_end":163280,"line_start":5423,"line_end":5423,"column_start":5,"column_end":10,"is_primary":true,"text":[{"text":" usage: vx_enum,","highlight_start":5,"highlight_end":10}],"label":null,"suggested_replacement":"_usage","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `usage`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:5423:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m5423\u001b[0m \u001b[1m\u001b[94m|\u001b[0m usage: vx_enum,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_usage`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `range_start`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":166272,"byte_end":166283,"line_start":5539,"line_end":5539,"column_start":5,"column_end":16,"is_primary":true,"text":[{"text":" range_start: vx_size,","highlight_start":5,"highlight_end":16}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":166272,"byte_end":166283,"line_start":5539,"line_end":5539,"column_start":5,"column_end":16,"is_primary":true,"text":[{"text":" range_start: vx_size,","highlight_start":5,"highlight_end":16}],"label":null,"suggested_replacement":"_range_start","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `range_start`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:5539:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m5539\u001b[0m \u001b[1m\u001b[94m|\u001b[0m range_start: vx_size,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_range_start`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `range_end`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":166298,"byte_end":166307,"line_start":5540,"line_end":5540,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" range_end: vx_size,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":166298,"byte_end":166307,"line_start":5540,"line_end":5540,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" range_end: vx_size,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":"_range_end","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `range_end`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:5540:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m5540\u001b[0m \u001b[1m\u001b[94m|\u001b[0m range_end: vx_size,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_range_end`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `user_stride`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":166322,"byte_end":166333,"line_start":5541,"line_end":5541,"column_start":5,"column_end":16,"is_primary":true,"text":[{"text":" user_stride: vx_size,","highlight_start":5,"highlight_end":16}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":166322,"byte_end":166333,"line_start":5541,"line_end":5541,"column_start":5,"column_end":16,"is_primary":true,"text":[{"text":" user_stride: vx_size,","highlight_start":5,"highlight_end":16}],"label":null,"suggested_replacement":"_user_stride","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `user_stride`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:5541:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m5541\u001b[0m \u001b[1m\u001b[94m|\u001b[0m user_stride: vx_size,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_user_stride`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `usage`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":166375,"byte_end":166380,"line_start":5543,"line_end":5543,"column_start":5,"column_end":10,"is_primary":true,"text":[{"text":" usage: vx_enum,","highlight_start":5,"highlight_end":10}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":166375,"byte_end":166380,"line_start":5543,"line_end":5543,"column_start":5,"column_end":10,"is_primary":true,"text":[{"text":" usage: vx_enum,","highlight_start":5,"highlight_end":10}],"label":null,"suggested_replacement":"_usage","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `usage`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:5543:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m5543\u001b[0m \u001b[1m\u001b[94m|\u001b[0m usage: vx_enum,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_usage`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `function`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":171594,"byte_end":171602,"line_start":5735,"line_end":5735,"column_start":5,"column_end":13,"is_primary":true,"text":[{"text":" function: vx_enum,","highlight_start":5,"highlight_end":13}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":171594,"byte_end":171602,"line_start":5735,"line_end":5735,"column_start":5,"column_end":13,"is_primary":true,"text":[{"text":" function: vx_enum,","highlight_start":5,"highlight_end":13}],"label":null,"suggested_replacement":"_function","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `function`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:5735:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m5735\u001b[0m \u001b[1m\u001b[94m|\u001b[0m function: vx_enum,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_function`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `mask_size`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":171638,"byte_end":171647,"line_start":5737,"line_end":5737,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" mask_size: vx_size,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":171638,"byte_end":171647,"line_start":5737,"line_end":5737,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" mask_size: vx_size,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":"_mask_size","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `mask_size`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:5737:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m5737\u001b[0m \u001b[1m\u001b[94m|\u001b[0m mask_size: vx_size,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_mask_size`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `target_enum`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":174087,"byte_end":174098,"line_start":5823,"line_end":5823,"column_start":65,"column_end":76,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxSetImmediateModeTarget(context: vx_context, target_enum: vx_enum, target_string: *const vx_char) -> vx_status {","highlight_start":65,"highlight_end":76}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":174087,"byte_end":174098,"line_start":5823,"line_end":5823,"column_start":65,"column_end":76,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxSetImmediateModeTarget(context: vx_context, target_enum: vx_enum, target_string: *const vx_char) -> vx_status {","highlight_start":65,"highlight_end":76}],"label":null,"suggested_replacement":"_target_enum","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `target_enum`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:5823:65\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m5823\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub extern \"C\" fn vxSetImmediateModeTarget(context: vx_context, target_enum: vx_enum, target_string: *const vx_char) -> vx_status {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_target_enum`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `target_string`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":174109,"byte_end":174122,"line_start":5823,"line_end":5823,"column_start":87,"column_end":100,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxSetImmediateModeTarget(context: vx_context, target_enum: vx_enum, target_string: *const vx_char) -> vx_status {","highlight_start":87,"highlight_end":100}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":174109,"byte_end":174122,"line_start":5823,"line_end":5823,"column_start":87,"column_end":100,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxSetImmediateModeTarget(context: vx_context, target_enum: vx_enum, target_string: *const vx_char) -> vx_status {","highlight_start":87,"highlight_end":100}],"label":null,"suggested_replacement":"_target_string","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `target_string`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:5823:87\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m5823\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub extern \"C\" fn vxSetImmediateModeTarget(context: vx_context, target_enum: vx_enum, target_string: *const vx_char) -> vx_status {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_target_string`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `data_type`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":174352,"byte_end":174361,"line_start":5832,"line_end":5832,"column_start":63,"column_end":72,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxCreateScalarWithSize(context: vx_context, data_type: vx_enum, ptr: *const c_void, size: vx_size) -> vx_scalar {","highlight_start":63,"highlight_end":72}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":174352,"byte_end":174361,"line_start":5832,"line_end":5832,"column_start":63,"column_end":72,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxCreateScalarWithSize(context: vx_context, data_type: vx_enum, ptr: *const c_void, size: vx_size) -> vx_scalar {","highlight_start":63,"highlight_end":72}],"label":null,"suggested_replacement":"_data_type","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `data_type`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:5832:63\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m5832\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub extern \"C\" fn vxCreateScalarWithSize(context: vx_context, data_type: vx_enum, ptr: *const c_void, size: vx_size) -> vx_scalar {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_data_type`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `data_type`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":175196,"byte_end":175205,"line_start":5856,"line_end":5856,"column_start":59,"column_end":68,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxCopyScalarWithSize(scalar: vx_scalar, data_type: vx_enum, ptr: *mut c_void, size: vx_size, usage: vx_enum) -> vx_status {","highlight_start":59,"highlight_end":68}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":175196,"byte_end":175205,"line_start":5856,"line_end":5856,"column_start":59,"column_end":68,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxCopyScalarWithSize(scalar: vx_scalar, data_type: vx_enum, ptr: *mut c_void, size: vx_size, usage: vx_enum) -> vx_status {","highlight_start":59,"highlight_end":68}],"label":null,"suggested_replacement":"_data_type","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `data_type`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:5856:59\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m5856\u001b[0m \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m...\u001b[0mze(scalar: vx_scalar, data_type: vx_enum, ptr: *mut c_void, size: vx_size, usage: vx_enum) -> vx_status {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_data_type`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `size`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":175234,"byte_end":175238,"line_start":5856,"line_end":5856,"column_start":97,"column_end":101,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxCopyScalarWithSize(scalar: vx_scalar, data_type: vx_enum, ptr: *mut c_void, size: vx_size, usage: vx_enum) -> vx_status {","highlight_start":97,"highlight_end":101}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":175234,"byte_end":175238,"line_start":5856,"line_end":5856,"column_start":97,"column_end":101,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxCopyScalarWithSize(scalar: vx_scalar, data_type: vx_enum, ptr: *mut c_void, size: vx_size, usage: vx_enum) -> vx_status {","highlight_start":97,"highlight_end":101}],"label":null,"suggested_replacement":"_size","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `size`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:5856:97\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m5856\u001b[0m \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m...\u001b[0mvx_enum, ptr: *mut c_void, size: vx_size, usage: vx_enum) -> vx_status {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_size`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `usage`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":175249,"byte_end":175254,"line_start":5856,"line_end":5856,"column_start":112,"column_end":117,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxCopyScalarWithSize(scalar: vx_scalar, data_type: vx_enum, ptr: *mut c_void, size: vx_size, usage: vx_enum) -> vx_status {","highlight_start":112,"highlight_end":117}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":175249,"byte_end":175254,"line_start":5856,"line_end":5856,"column_start":112,"column_end":117,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxCopyScalarWithSize(scalar: vx_scalar, data_type: vx_enum, ptr: *mut c_void, size: vx_size, usage: vx_enum) -> vx_status {","highlight_start":112,"highlight_end":117}],"label":null,"suggested_replacement":"_usage","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `usage`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:5856:112\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m5856\u001b[0m \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m...\u001b[0mut c_void, size: vx_size, usage: vx_enum) -> vx_status {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_usage`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unnecessary `unsafe` block","code":{"code":"unused_unsafe","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":175620,"byte_end":175626,"line_start":5869,"line_end":5869,"column_start":5,"column_end":11,"is_primary":true,"text":[{"text":" unsafe {","highlight_start":5,"highlight_end":11}],"label":"unnecessary `unsafe` block","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unnecessary `unsafe` block\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:5869:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m5869\u001b[0m \u001b[1m\u001b[94m|\u001b[0m unsafe {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m \u001b[1m\u001b[33munnecessary `unsafe` block\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unnecessary `unsafe` block","code":{"code":"unused_unsafe","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":176130,"byte_end":176136,"line_start":5883,"line_end":5883,"column_start":5,"column_end":11,"is_primary":true,"text":[{"text":" unsafe {","highlight_start":5,"highlight_end":11}],"label":"unnecessary `unsafe` block","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unnecessary `unsafe` block\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:5883:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m5883\u001b[0m \u001b[1m\u001b[94m|\u001b[0m unsafe {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m \u001b[1m\u001b[33munnecessary `unsafe` block\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `policy`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":175972,"byte_end":175978,"line_start":5879,"line_end":5879,"column_start":90,"column_end":96,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxConvertDepthNode(graph: vx_graph, input: vx_image, output: vx_image, policy: vx_enum, shift: vx_int32) -> vx_node {","highlight_start":90,"highlight_end":96}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":175972,"byte_end":175978,"line_start":5879,"line_end":5879,"column_start":90,"column_end":96,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxConvertDepthNode(graph: vx_graph, input: vx_image, output: vx_image, policy: vx_enum, shift: vx_int32) -> vx_node {","highlight_start":90,"highlight_end":96}],"label":null,"suggested_replacement":"_policy","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `policy`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:5879:90\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m5879\u001b[0m \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m...\u001b[0mimage, output: vx_image, policy: vx_enum, shift: vx_int32) -> vx_node {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_policy`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `shift`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":175989,"byte_end":175994,"line_start":5879,"line_end":5879,"column_start":107,"column_end":112,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxConvertDepthNode(graph: vx_graph, input: vx_image, output: vx_image, policy: vx_enum, shift: vx_int32) -> vx_node {","highlight_start":107,"highlight_end":112}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":175989,"byte_end":175994,"line_start":5879,"line_end":5879,"column_start":107,"column_end":112,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxConvertDepthNode(graph: vx_graph, input: vx_image, output: vx_image, policy: vx_enum, shift: vx_int32) -> vx_node {","highlight_start":107,"highlight_end":112}],"label":null,"suggested_replacement":"_shift","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `shift`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:5879:107\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m5879\u001b[0m \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m...\u001b[0mx_image, policy: vx_enum, shift: vx_int32) -> vx_node {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_shift`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `old_images`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":176481,"byte_end":176491,"line_start":5895,"line_end":5895,"column_start":5,"column_end":15,"is_primary":true,"text":[{"text":" old_images: vx_pyramid,","highlight_start":5,"highlight_end":15}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":176481,"byte_end":176491,"line_start":5895,"line_end":5895,"column_start":5,"column_end":15,"is_primary":true,"text":[{"text":" old_images: vx_pyramid,","highlight_start":5,"highlight_end":15}],"label":null,"suggested_replacement":"_old_images","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `old_images`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:5895:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m5895\u001b[0m \u001b[1m\u001b[94m|\u001b[0m old_images: vx_pyramid,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_old_images`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `new_images`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":176509,"byte_end":176519,"line_start":5896,"line_end":5896,"column_start":5,"column_end":15,"is_primary":true,"text":[{"text":" new_images: vx_pyramid,","highlight_start":5,"highlight_end":15}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":176509,"byte_end":176519,"line_start":5896,"line_end":5896,"column_start":5,"column_end":15,"is_primary":true,"text":[{"text":" new_images: vx_pyramid,","highlight_start":5,"highlight_end":15}],"label":null,"suggested_replacement":"_new_images","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `new_images`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:5896:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m5896\u001b[0m \u001b[1m\u001b[94m|\u001b[0m new_images: vx_pyramid,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_new_images`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `old_points`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":176537,"byte_end":176547,"line_start":5897,"line_end":5897,"column_start":5,"column_end":15,"is_primary":true,"text":[{"text":" old_points: vx_array,","highlight_start":5,"highlight_end":15}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":176537,"byte_end":176547,"line_start":5897,"line_end":5897,"column_start":5,"column_end":15,"is_primary":true,"text":[{"text":" old_points: vx_array,","highlight_start":5,"highlight_end":15}],"label":null,"suggested_replacement":"_old_points","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `old_points`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:5897:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m5897\u001b[0m \u001b[1m\u001b[94m|\u001b[0m old_points: vx_array,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_old_points`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `new_points_estimates`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":176563,"byte_end":176583,"line_start":5898,"line_end":5898,"column_start":5,"column_end":25,"is_primary":true,"text":[{"text":" new_points_estimates: vx_array,","highlight_start":5,"highlight_end":25}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":176563,"byte_end":176583,"line_start":5898,"line_end":5898,"column_start":5,"column_end":25,"is_primary":true,"text":[{"text":" new_points_estimates: vx_array,","highlight_start":5,"highlight_end":25}],"label":null,"suggested_replacement":"_new_points_estimates","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `new_points_estimates`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:5898:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m5898\u001b[0m \u001b[1m\u001b[94m|\u001b[0m new_points_estimates: vx_array,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_new_points_estimates`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `new_points`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":176599,"byte_end":176609,"line_start":5899,"line_end":5899,"column_start":5,"column_end":15,"is_primary":true,"text":[{"text":" new_points: vx_array,","highlight_start":5,"highlight_end":15}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":176599,"byte_end":176609,"line_start":5899,"line_end":5899,"column_start":5,"column_end":15,"is_primary":true,"text":[{"text":" new_points: vx_array,","highlight_start":5,"highlight_end":15}],"label":null,"suggested_replacement":"_new_points","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `new_points`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:5899:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m5899\u001b[0m \u001b[1m\u001b[94m|\u001b[0m new_points: vx_array,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_new_points`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `termination`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":176625,"byte_end":176636,"line_start":5900,"line_end":5900,"column_start":5,"column_end":16,"is_primary":true,"text":[{"text":" termination: vx_enum,","highlight_start":5,"highlight_end":16}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":176625,"byte_end":176636,"line_start":5900,"line_end":5900,"column_start":5,"column_end":16,"is_primary":true,"text":[{"text":" termination: vx_enum,","highlight_start":5,"highlight_end":16}],"label":null,"suggested_replacement":"_termination","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `termination`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:5900:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m5900\u001b[0m \u001b[1m\u001b[94m|\u001b[0m termination: vx_enum,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_termination`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `epsilon`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":176651,"byte_end":176658,"line_start":5901,"line_end":5901,"column_start":5,"column_end":12,"is_primary":true,"text":[{"text":" epsilon: vx_float32,","highlight_start":5,"highlight_end":12}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":176651,"byte_end":176658,"line_start":5901,"line_end":5901,"column_start":5,"column_end":12,"is_primary":true,"text":[{"text":" epsilon: vx_float32,","highlight_start":5,"highlight_end":12}],"label":null,"suggested_replacement":"_epsilon","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `epsilon`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:5901:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m5901\u001b[0m \u001b[1m\u001b[94m|\u001b[0m epsilon: vx_float32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_epsilon`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `num_iterations`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":176676,"byte_end":176690,"line_start":5902,"line_end":5902,"column_start":5,"column_end":19,"is_primary":true,"text":[{"text":" num_iterations: vx_uint32,","highlight_start":5,"highlight_end":19}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":176676,"byte_end":176690,"line_start":5902,"line_end":5902,"column_start":5,"column_end":19,"is_primary":true,"text":[{"text":" num_iterations: vx_uint32,","highlight_start":5,"highlight_end":19}],"label":null,"suggested_replacement":"_num_iterations","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `num_iterations`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:5902:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m5902\u001b[0m \u001b[1m\u001b[94m|\u001b[0m num_iterations: vx_uint32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_num_iterations`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `use_initial_estimate`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":176707,"byte_end":176727,"line_start":5903,"line_end":5903,"column_start":5,"column_end":25,"is_primary":true,"text":[{"text":" use_initial_estimate: vx_bool,","highlight_start":5,"highlight_end":25}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":176707,"byte_end":176727,"line_start":5903,"line_end":5903,"column_start":5,"column_end":25,"is_primary":true,"text":[{"text":" use_initial_estimate: vx_bool,","highlight_start":5,"highlight_end":25}],"label":null,"suggested_replacement":"_use_initial_estimate","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `use_initial_estimate`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:5903:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m5903\u001b[0m \u001b[1m\u001b[94m|\u001b[0m use_initial_estimate: vx_bool,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_use_initial_estimate`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `window_dimension`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":176742,"byte_end":176758,"line_start":5904,"line_end":5904,"column_start":5,"column_end":21,"is_primary":true,"text":[{"text":" window_dimension: vx_size,","highlight_start":5,"highlight_end":21}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":176742,"byte_end":176758,"line_start":5904,"line_end":5904,"column_start":5,"column_end":21,"is_primary":true,"text":[{"text":" window_dimension: vx_size,","highlight_start":5,"highlight_end":21}],"label":null,"suggested_replacement":"_window_dimension","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `window_dimension`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:5904:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m5904\u001b[0m \u001b[1m\u001b[94m|\u001b[0m window_dimension: vx_size,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_window_dimension`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `usage`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":179984,"byte_end":179989,"line_start":5996,"line_end":5996,"column_start":88,"column_end":93,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxMapLUT(lut: vx_lut, map_id: *mut vx_map_id, ptr: *mut *mut c_void, usage: vx_enum, mem_type: vx_enum, copy_enable: vx_bool) -> vx_status {","highlight_start":88,"highlight_end":93}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":179984,"byte_end":179989,"line_start":5996,"line_end":5996,"column_start":88,"column_end":93,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxMapLUT(lut: vx_lut, map_id: *mut vx_map_id, ptr: *mut *mut c_void, usage: vx_enum, mem_type: vx_enum, copy_enable: vx_bool) -> vx_status {","highlight_start":88,"highlight_end":93}],"label":null,"suggested_replacement":"_usage","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `usage`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:5996:88\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m5996\u001b[0m \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m...\u001b[0md, ptr: *mut *mut c_void, usage: vx_enum, mem_type: vx_enum, copy_enable: vx_bool) -> vx_status {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_usage`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `copy_enable`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":180019,"byte_end":180030,"line_start":5996,"line_end":5996,"column_start":123,"column_end":134,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxMapLUT(lut: vx_lut, map_id: *mut vx_map_id, ptr: *mut *mut c_void, usage: vx_enum, mem_type: vx_enum, copy_enable: vx_bool) -> vx_status {","highlight_start":123,"highlight_end":134}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":180019,"byte_end":180030,"line_start":5996,"line_end":5996,"column_start":123,"column_end":134,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxMapLUT(lut: vx_lut, map_id: *mut vx_map_id, ptr: *mut *mut c_void, usage: vx_enum, mem_type: vx_enum, copy_enable: vx_bool) -> vx_status {","highlight_start":123,"highlight_end":134}],"label":null,"suggested_replacement":"_copy_enable","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `copy_enable`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:5996:123\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m5996\u001b[0m \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m...\u001b[0m mem_type: vx_enum, copy_enable: vx_bool) -> vx_status {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_copy_enable`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `map_id`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":180396,"byte_end":180402,"line_start":6011,"line_end":6011,"column_start":43,"column_end":49,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxUnmapLUT(lut: vx_lut, map_id: vx_map_id) -> vx_status {","highlight_start":43,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":180396,"byte_end":180402,"line_start":6011,"line_end":6011,"column_start":43,"column_end":49,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxUnmapLUT(lut: vx_lut, map_id: vx_map_id) -> vx_status {","highlight_start":43,"highlight_end":49}],"label":null,"suggested_replacement":"_map_id","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `map_id`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:6011:43\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m6011\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub extern \"C\" fn vxUnmapLUT(lut: vx_lut, map_id: vx_map_id) -> vx_status {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_map_id`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `pattern`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":181571,"byte_end":181578,"line_start":6048,"line_end":6048,"column_start":75,"column_end":82,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxCreateMatrixFromPatternAndOrigin(context: vx_context, pattern: vx_enum, origin_x: vx_size, origin_y: vx_size, rows: vx_size, cols: vx_size) -> vx_matrix {","highlight_start":75,"highlight_end":82}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":181571,"byte_end":181578,"line_start":6048,"line_end":6048,"column_start":75,"column_end":82,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxCreateMatrixFromPatternAndOrigin(context: vx_context, pattern: vx_enum, origin_x: vx_size, origin_y: vx_size, rows: vx_size, cols: vx_size) -> vx_matrix {","highlight_start":75,"highlight_end":82}],"label":null,"suggested_replacement":"_pattern","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `pattern`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:6048:75\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m6048\u001b[0m \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m...\u001b[0min(context: vx_context, pattern: vx_enum, origin_x: vx_size, origin_y: vx_size, rows: vx_size, cols: vx_size) -> vx_matrix {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_pattern`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `origin_x`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":181589,"byte_end":181597,"line_start":6048,"line_end":6048,"column_start":93,"column_end":101,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxCreateMatrixFromPatternAndOrigin(context: vx_context, pattern: vx_enum, origin_x: vx_size, origin_y: vx_size, rows: vx_size, cols: vx_size) -> vx_matrix {","highlight_start":93,"highlight_end":101}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":181589,"byte_end":181597,"line_start":6048,"line_end":6048,"column_start":93,"column_end":101,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxCreateMatrixFromPatternAndOrigin(context: vx_context, pattern: vx_enum, origin_x: vx_size, origin_y: vx_size, rows: vx_size, cols: vx_size) -> vx_matrix {","highlight_start":93,"highlight_end":101}],"label":null,"suggested_replacement":"_origin_x","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `origin_x`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:6048:93\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m6048\u001b[0m \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m...\u001b[0mext, pattern: vx_enum, origin_x: vx_size, origin_y: vx_size, rows: vx_size, cols: vx_size) -> vx_matrix {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_origin_x`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `origin_y`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":181608,"byte_end":181616,"line_start":6048,"line_end":6048,"column_start":112,"column_end":120,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxCreateMatrixFromPatternAndOrigin(context: vx_context, pattern: vx_enum, origin_x: vx_size, origin_y: vx_size, rows: vx_size, cols: vx_size) -> vx_matrix {","highlight_start":112,"highlight_end":120}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":181608,"byte_end":181616,"line_start":6048,"line_end":6048,"column_start":112,"column_end":120,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxCreateMatrixFromPatternAndOrigin(context: vx_context, pattern: vx_enum, origin_x: vx_size, origin_y: vx_size, rows: vx_size, cols: vx_size) -> vx_matrix {","highlight_start":112,"highlight_end":120}],"label":null,"suggested_replacement":"_origin_y","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `origin_y`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:6048:112\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m6048\u001b[0m \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m...\u001b[0mum, origin_x: vx_size, origin_y: vx_size, rows: vx_size, cols: vx_size) -> vx_matrix {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_origin_y`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `index`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":182332,"byte_end":182337,"line_start":6067,"line_end":6067,"column_start":63,"column_end":68,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxSetGraphParameterByIndex(graph: vx_graph, index: vx_uint32, param: vx_reference) -> vx_status {","highlight_start":63,"highlight_end":68}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":182332,"byte_end":182337,"line_start":6067,"line_end":6067,"column_start":63,"column_end":68,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxSetGraphParameterByIndex(graph: vx_graph, index: vx_uint32, param: vx_reference) -> vx_status {","highlight_start":63,"highlight_end":68}],"label":null,"suggested_replacement":"_index","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `index`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:6067:63\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m6067\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub extern \"C\" fn vxSetGraphParameterByIndex(graph: vx_graph, index: vx_uint32, param: vx_reference) -> vx_status {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_index`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `index`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":182660,"byte_end":182665,"line_start":6079,"line_end":6079,"column_start":63,"column_end":68,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxGetGraphParameterByIndex(graph: vx_graph, index: vx_uint32) -> vx_parameter {","highlight_start":63,"highlight_end":68}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":182660,"byte_end":182665,"line_start":6079,"line_end":6079,"column_start":63,"column_end":68,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxGetGraphParameterByIndex(graph: vx_graph, index: vx_uint32) -> vx_parameter {","highlight_start":63,"highlight_end":68}],"label":null,"suggested_replacement":"_index","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `index`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:6079:63\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m6079\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub extern \"C\" fn vxGetGraphParameterByIndex(graph: vx_graph, index: vx_uint32) -> vx_parameter {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_index`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `callback`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":183825,"byte_end":183833,"line_start":6121,"line_end":6121,"column_start":57,"column_end":65,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxRetrieveNodeCallback(node: vx_node, callback: *mut vx_nodecomplete_f, parameter: *mut *mut c_void) -> vx_status {","highlight_start":57,"highlight_end":65}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":183825,"byte_end":183833,"line_start":6121,"line_end":6121,"column_start":57,"column_end":65,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxRetrieveNodeCallback(node: vx_node, callback: *mut vx_nodecomplete_f, parameter: *mut *mut c_void) -> vx_status {","highlight_start":57,"highlight_end":65}],"label":null,"suggested_replacement":"_callback","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `callback`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:6121:57\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m6121\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub extern \"C\" fn vxRetrieveNodeCallback(node: vx_node, callback: *mut vx_nodecomplete_f, parameter: *mut *mut c_void) -> vx_status {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_callback`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `parameter`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":183859,"byte_end":183868,"line_start":6121,"line_end":6121,"column_start":91,"column_end":100,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxRetrieveNodeCallback(node: vx_node, callback: *mut vx_nodecomplete_f, parameter: *mut *mut c_void) -> vx_status {","highlight_start":91,"highlight_end":100}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":183859,"byte_end":183868,"line_start":6121,"line_end":6121,"column_start":91,"column_end":100,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxRetrieveNodeCallback(node: vx_node, callback: *mut vx_nodecomplete_f, parameter: *mut *mut c_void) -> vx_status {","highlight_start":91,"highlight_end":100}],"label":null,"suggested_replacement":"_parameter","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `parameter`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:6121:91\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m6121\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub extern \"C\" fn vxRetrieveNodeCallback(node: vx_node, callback: *mut vx_nodecomplete_f, parameter: *mut *mut c_void) -> vx_status {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_parameter`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unnecessary `unsafe` block","code":{"code":"unused_unsafe","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":184276,"byte_end":184282,"line_start":6134,"line_end":6134,"column_start":5,"column_end":11,"is_primary":true,"text":[{"text":" unsafe {","highlight_start":5,"highlight_end":11}],"label":"unnecessary `unsafe` block","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unnecessary `unsafe` block\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:6134:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m6134\u001b[0m \u001b[1m\u001b[94m|\u001b[0m unsafe {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m \u001b[1m\u001b[33munnecessary `unsafe` block\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `kernel_size`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":184130,"byte_end":184141,"line_start":6130,"line_end":6130,"column_start":95,"column_end":106,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxHalfScaleGaussianNode(graph: vx_graph, input: vx_image, output: vx_image, kernel_size: vx_size) -> vx_node {","highlight_start":95,"highlight_end":106}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":184130,"byte_end":184141,"line_start":6130,"line_end":6130,"column_start":95,"column_end":106,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxHalfScaleGaussianNode(graph: vx_graph, input: vx_image, output: vx_image, kernel_size: vx_size) -> vx_node {","highlight_start":95,"highlight_end":106}],"label":null,"suggested_replacement":"_kernel_size","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `kernel_size`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:6130:95\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m6130\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub extern \"C\" fn vxHalfScaleGaussianNode(graph: vx_graph, input: vx_image, output: vx_image, kernel_size: vx_size) -> vx_node {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_kernel_size`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `kernel_size`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":184650,"byte_end":184661,"line_start":6144,"line_end":6144,"column_start":96,"column_end":107,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxuHalfScaleGaussian(context: vx_context, input: vx_image, output: vx_image, kernel_size: vx_size) -> vx_status {","highlight_start":96,"highlight_end":107}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":184650,"byte_end":184661,"line_start":6144,"line_end":6144,"column_start":96,"column_end":107,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxuHalfScaleGaussian(context: vx_context, input: vx_image, output: vx_image, kernel_size: vx_size) -> vx_status {","highlight_start":96,"highlight_end":107}],"label":null,"suggested_replacement":"_kernel_size","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `kernel_size`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:6144:96\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m6144\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub extern \"C\" fn vxuHalfScaleGaussian(context: vx_context, input: vx_image, output: vx_image, kernel_size: vx_size) -> vx_status {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_kernel_size`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `map_id`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":184921,"byte_end":184927,"line_start":6153,"line_end":6153,"column_start":68,"column_end":74,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxMapDistribution(distribution: vx_distribution, map_id: *mut vx_map_id, ptr: *mut *mut c_void, usage: vx_enum, mem_type: vx_enum, copy_enable: vx_bool) -> vx_status {","highlight_start":68,"highlight_end":74}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":184921,"byte_end":184927,"line_start":6153,"line_end":6153,"column_start":68,"column_end":74,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxMapDistribution(distribution: vx_distribution, map_id: *mut vx_map_id, ptr: *mut *mut c_void, usage: vx_enum, mem_type: vx_enum, copy_enable: vx_bool) -> vx_status {","highlight_start":68,"highlight_end":74}],"label":null,"suggested_replacement":"_map_id","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `map_id`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:6153:68\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m6153\u001b[0m \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m...\u001b[0mbution: vx_distribution, map_id: *mut vx_map_id, ptr: *mut *mut c_void, usage: vx_enum, mem_type: vx_enum, copy_enable: vx_bool\u001b[1m\u001b[94m...\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_map_id`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `usage`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":184968,"byte_end":184973,"line_start":6153,"line_end":6153,"column_start":115,"column_end":120,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxMapDistribution(distribution: vx_distribution, map_id: *mut vx_map_id, ptr: *mut *mut c_void, usage: vx_enum, mem_type: vx_enum, copy_enable: vx_bool) -> vx_status {","highlight_start":115,"highlight_end":120}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":184968,"byte_end":184973,"line_start":6153,"line_end":6153,"column_start":115,"column_end":120,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxMapDistribution(distribution: vx_distribution, map_id: *mut vx_map_id, ptr: *mut *mut c_void, usage: vx_enum, mem_type: vx_enum, copy_enable: vx_bool) -> vx_status {","highlight_start":115,"highlight_end":120}],"label":null,"suggested_replacement":"_usage","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `usage`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:6153:115\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m6153\u001b[0m \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m...\u001b[0md, ptr: *mut *mut c_void, usage: vx_enum, mem_type: vx_enum, copy_enable: vx_bool) -> vx_status {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_usage`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `mem_type`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":184984,"byte_end":184992,"line_start":6153,"line_end":6153,"column_start":131,"column_end":139,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxMapDistribution(distribution: vx_distribution, map_id: *mut vx_map_id, ptr: *mut *mut c_void, usage: vx_enum, mem_type: vx_enum, copy_enable: vx_bool) -> vx_status {","highlight_start":131,"highlight_end":139}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":184984,"byte_end":184992,"line_start":6153,"line_end":6153,"column_start":131,"column_end":139,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxMapDistribution(distribution: vx_distribution, map_id: *mut vx_map_id, ptr: *mut *mut c_void, usage: vx_enum, mem_type: vx_enum, copy_enable: vx_bool) -> vx_status {","highlight_start":131,"highlight_end":139}],"label":null,"suggested_replacement":"_mem_type","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `mem_type`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:6153:131\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m6153\u001b[0m \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m...\u001b[0m_void, usage: vx_enum, mem_type: vx_enum, copy_enable: vx_bool) -> vx_status {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_mem_type`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `copy_enable`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":185003,"byte_end":185014,"line_start":6153,"line_end":6153,"column_start":150,"column_end":161,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxMapDistribution(distribution: vx_distribution, map_id: *mut vx_map_id, ptr: *mut *mut c_void, usage: vx_enum, mem_type: vx_enum, copy_enable: vx_bool) -> vx_status {","highlight_start":150,"highlight_end":161}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":185003,"byte_end":185014,"line_start":6153,"line_end":6153,"column_start":150,"column_end":161,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxMapDistribution(distribution: vx_distribution, map_id: *mut vx_map_id, ptr: *mut *mut c_void, usage: vx_enum, mem_type: vx_enum, copy_enable: vx_bool) -> vx_status {","highlight_start":150,"highlight_end":161}],"label":null,"suggested_replacement":"_copy_enable","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `copy_enable`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:6153:150\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m6153\u001b[0m \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m...\u001b[0m mem_type: vx_enum, copy_enable: vx_bool) -> vx_status {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_copy_enable`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `map_id`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":185324,"byte_end":185330,"line_start":6165,"line_end":6165,"column_start":70,"column_end":76,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxUnmapDistribution(distribution: vx_distribution, map_id: vx_map_id) -> vx_status {","highlight_start":70,"highlight_end":76}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":185324,"byte_end":185330,"line_start":6165,"line_end":6165,"column_start":70,"column_end":76,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxUnmapDistribution(distribution: vx_distribution, map_id: vx_map_id) -> vx_status {","highlight_start":70,"highlight_end":76}],"label":null,"suggested_replacement":"_map_id","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `map_id`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:6165:70\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m6165\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub extern \"C\" fn vxUnmapDistribution(distribution: vx_distribution, map_id: vx_map_id) -> vx_status {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_map_id`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `policy`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":185629,"byte_end":185635,"line_start":6176,"line_end":6176,"column_start":91,"column_end":97,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxuConvertDepth(context: vx_context, input: vx_image, output: vx_image, policy: vx_enum, shift: vx_int32) -> vx_status {","highlight_start":91,"highlight_end":97}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":185629,"byte_end":185635,"line_start":6176,"line_end":6176,"column_start":91,"column_end":97,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxuConvertDepth(context: vx_context, input: vx_image, output: vx_image, policy: vx_enum, shift: vx_int32) -> vx_status {","highlight_start":91,"highlight_end":97}],"label":null,"suggested_replacement":"_policy","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `policy`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:6176:91\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m6176\u001b[0m \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m...\u001b[0mimage, output: vx_image, policy: vx_enum, shift: vx_int32) -> vx_status {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_policy`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `shift`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":185646,"byte_end":185651,"line_start":6176,"line_end":6176,"column_start":108,"column_end":113,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxuConvertDepth(context: vx_context, input: vx_image, output: vx_image, policy: vx_enum, shift: vx_int32) -> vx_status {","highlight_start":108,"highlight_end":113}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":185646,"byte_end":185651,"line_start":6176,"line_end":6176,"column_start":108,"column_end":113,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxuConvertDepth(context: vx_context, input: vx_image, output: vx_image, policy: vx_enum, shift: vx_int32) -> vx_status {","highlight_start":108,"highlight_end":113}],"label":null,"suggested_replacement":"_shift","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `shift`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:6176:108\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m6176\u001b[0m \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m...\u001b[0mx_image, policy: vx_enum, shift: vx_int32) -> vx_status {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_shift`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unnecessary `unsafe` block","code":{"code":"unused_unsafe","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":186065,"byte_end":186071,"line_start":6189,"line_end":6189,"column_start":5,"column_end":11,"is_primary":true,"text":[{"text":" unsafe {","highlight_start":5,"highlight_end":11}],"label":"unnecessary `unsafe` block","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unnecessary `unsafe` block\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:6189:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m6189\u001b[0m \u001b[1m\u001b[94m|\u001b[0m unsafe {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m \u001b[1m\u001b[33munnecessary `unsafe` block\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unnecessary `unsafe` block","code":{"code":"unused_unsafe","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":186890,"byte_end":186896,"line_start":6212,"line_end":6212,"column_start":5,"column_end":11,"is_primary":true,"text":[{"text":" unsafe {","highlight_start":5,"highlight_end":11}],"label":"unnecessary `unsafe` block","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unnecessary `unsafe` block\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:6212:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m6212\u001b[0m \u001b[1m\u001b[94m|\u001b[0m unsafe {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m \u001b[1m\u001b[33munnecessary `unsafe` block\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `strength_thresh`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":186686,"byte_end":186701,"line_start":6208,"line_end":6208,"column_start":71,"column_end":86,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxFastCornersNode(graph: vx_graph, input: vx_image, strength_thresh: vx_float32, nonmax_suppression: vx_bool, num_corners: vx_array, corners: vx_array) -> vx_node {","highlight_start":71,"highlight_end":86}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":186686,"byte_end":186701,"line_start":6208,"line_end":6208,"column_start":71,"column_end":86,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxFastCornersNode(graph: vx_graph, input: vx_image, strength_thresh: vx_float32, nonmax_suppression: vx_bool, num_corners: vx_array, corners: vx_array) -> vx_node {","highlight_start":71,"highlight_end":86}],"label":null,"suggested_replacement":"_strength_thresh","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `strength_thresh`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:6208:71\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m6208\u001b[0m \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m...\u001b[0mnput: vx_image, strength_thresh: vx_float32, nonmax_suppression: vx_bool, num_corners: vx_array, corners: vx_array) -> vx_node {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_strength_thresh`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `nonmax_suppression`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":186715,"byte_end":186733,"line_start":6208,"line_end":6208,"column_start":100,"column_end":118,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxFastCornersNode(graph: vx_graph, input: vx_image, strength_thresh: vx_float32, nonmax_suppression: vx_bool, num_corners: vx_array, corners: vx_array) -> vx_node {","highlight_start":100,"highlight_end":118}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":186715,"byte_end":186733,"line_start":6208,"line_end":6208,"column_start":100,"column_end":118,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxFastCornersNode(graph: vx_graph, input: vx_image, strength_thresh: vx_float32, nonmax_suppression: vx_bool, num_corners: vx_array, corners: vx_array) -> vx_node {","highlight_start":100,"highlight_end":118}],"label":null,"suggested_replacement":"_nonmax_suppression","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `nonmax_suppression`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:6208:100\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m6208\u001b[0m \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m...\u001b[0m vx_float32, nonmax_suppression: vx_bool, num_corners: vx_array, corners: vx_array) -> vx_node {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_nonmax_suppression`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `num_corners`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":186744,"byte_end":186755,"line_start":6208,"line_end":6208,"column_start":129,"column_end":140,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxFastCornersNode(graph: vx_graph, input: vx_image, strength_thresh: vx_float32, nonmax_suppression: vx_bool, num_corners: vx_array, corners: vx_array) -> vx_node {","highlight_start":129,"highlight_end":140}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":186744,"byte_end":186755,"line_start":6208,"line_end":6208,"column_start":129,"column_end":140,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxFastCornersNode(graph: vx_graph, input: vx_image, strength_thresh: vx_float32, nonmax_suppression: vx_bool, num_corners: vx_array, corners: vx_array) -> vx_node {","highlight_start":129,"highlight_end":140}],"label":null,"suggested_replacement":"_num_corners","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `num_corners`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:6208:129\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m6208\u001b[0m \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m...\u001b[0mppression: vx_bool, num_corners: vx_array, corners: vx_array) -> vx_node {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_num_corners`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `corners`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":186767,"byte_end":186774,"line_start":6208,"line_end":6208,"column_start":152,"column_end":159,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxFastCornersNode(graph: vx_graph, input: vx_image, strength_thresh: vx_float32, nonmax_suppression: vx_bool, num_corners: vx_array, corners: vx_array) -> vx_node {","highlight_start":152,"highlight_end":159}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":186767,"byte_end":186774,"line_start":6208,"line_end":6208,"column_start":152,"column_end":159,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxFastCornersNode(graph: vx_graph, input: vx_image, strength_thresh: vx_float32, nonmax_suppression: vx_bool, num_corners: vx_array, corners: vx_array) -> vx_node {","highlight_start":152,"highlight_end":159}],"label":null,"suggested_replacement":"_corners","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `corners`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:6208:152\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m6208\u001b[0m \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m...\u001b[0m num_corners: vx_array, corners: vx_array) -> vx_node {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_corners`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `strength_thresh`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":187169,"byte_end":187184,"line_start":6221,"line_end":6221,"column_start":72,"column_end":87,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxuFastCorners(context: vx_context, input: vx_image, strength_thresh: vx_float32, nonmax_suppression: vx_bool, num_corners: vx_array, corners: vx_array) -> vx_status {","highlight_start":72,"highlight_end":87}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":187169,"byte_end":187184,"line_start":6221,"line_end":6221,"column_start":72,"column_end":87,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxuFastCorners(context: vx_context, input: vx_image, strength_thresh: vx_float32, nonmax_suppression: vx_bool, num_corners: vx_array, corners: vx_array) -> vx_status {","highlight_start":72,"highlight_end":87}],"label":null,"suggested_replacement":"_strength_thresh","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `strength_thresh`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:6221:72\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m6221\u001b[0m \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m...\u001b[0mnput: vx_image, strength_thresh: vx_float32, nonmax_suppression: vx_bool, num_corners: vx_array, corners: vx_array) -> vx_status {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_strength_thresh`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `nonmax_suppression`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":187198,"byte_end":187216,"line_start":6221,"line_end":6221,"column_start":101,"column_end":119,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxuFastCorners(context: vx_context, input: vx_image, strength_thresh: vx_float32, nonmax_suppression: vx_bool, num_corners: vx_array, corners: vx_array) -> vx_status {","highlight_start":101,"highlight_end":119}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":187198,"byte_end":187216,"line_start":6221,"line_end":6221,"column_start":101,"column_end":119,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxuFastCorners(context: vx_context, input: vx_image, strength_thresh: vx_float32, nonmax_suppression: vx_bool, num_corners: vx_array, corners: vx_array) -> vx_status {","highlight_start":101,"highlight_end":119}],"label":null,"suggested_replacement":"_nonmax_suppression","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `nonmax_suppression`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:6221:101\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m6221\u001b[0m \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m...\u001b[0m vx_float32, nonmax_suppression: vx_bool, num_corners: vx_array, corners: vx_array) -> vx_status {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_nonmax_suppression`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `num_corners`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":187227,"byte_end":187238,"line_start":6221,"line_end":6221,"column_start":130,"column_end":141,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxuFastCorners(context: vx_context, input: vx_image, strength_thresh: vx_float32, nonmax_suppression: vx_bool, num_corners: vx_array, corners: vx_array) -> vx_status {","highlight_start":130,"highlight_end":141}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":187227,"byte_end":187238,"line_start":6221,"line_end":6221,"column_start":130,"column_end":141,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxuFastCorners(context: vx_context, input: vx_image, strength_thresh: vx_float32, nonmax_suppression: vx_bool, num_corners: vx_array, corners: vx_array) -> vx_status {","highlight_start":130,"highlight_end":141}],"label":null,"suggested_replacement":"_num_corners","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `num_corners`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:6221:130\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m6221\u001b[0m \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m...\u001b[0mppression: vx_bool, num_corners: vx_array, corners: vx_array) -> vx_status {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_num_corners`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `corners`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":187250,"byte_end":187257,"line_start":6221,"line_end":6221,"column_start":153,"column_end":160,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxuFastCorners(context: vx_context, input: vx_image, strength_thresh: vx_float32, nonmax_suppression: vx_bool, num_corners: vx_array, corners: vx_array) -> vx_status {","highlight_start":153,"highlight_end":160}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":187250,"byte_end":187257,"line_start":6221,"line_end":6221,"column_start":153,"column_end":160,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxuFastCorners(context: vx_context, input: vx_image, strength_thresh: vx_float32, nonmax_suppression: vx_bool, num_corners: vx_array, corners: vx_array) -> vx_status {","highlight_start":153,"highlight_end":160}],"label":null,"suggested_replacement":"_corners","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `corners`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:6221:153\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m6221\u001b[0m \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m...\u001b[0m num_corners: vx_array, corners: vx_array) -> vx_status {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_corners`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `context`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/vxu_impl.rs","byte_start":16883,"byte_end":16890,"line_start":470,"line_end":470,"column_start":5,"column_end":12,"is_primary":true,"text":[{"text":" context: vx_context,","highlight_start":5,"highlight_end":12}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/vxu_impl.rs","byte_start":16883,"byte_end":16890,"line_start":470,"line_end":470,"column_start":5,"column_end":12,"is_primary":true,"text":[{"text":" context: vx_context,","highlight_start":5,"highlight_end":12}],"label":null,"suggested_replacement":"_context","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `context`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/vxu_impl.rs:470:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m470\u001b[0m \u001b[1m\u001b[94m|\u001b[0m context: vx_context,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_context`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `half_h`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/vxu_impl.rs","byte_start":23999,"byte_end":24005,"line_start":634,"line_end":634,"column_start":25,"column_end":31,"is_primary":true,"text":[{"text":" let half_h = (height + 1) / 2;","highlight_start":25,"highlight_end":31}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/vxu_impl.rs","byte_start":23999,"byte_end":24005,"line_start":634,"line_end":634,"column_start":25,"column_end":31,"is_primary":true,"text":[{"text":" let half_h = (height + 1) / 2;","highlight_start":25,"highlight_end":31}],"label":null,"suggested_replacement":"_half_h","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `half_h`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/vxu_impl.rs:634:25\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m634\u001b[0m \u001b[1m\u001b[94m|\u001b[0m let half_h = (height + 1) / 2;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_half_h`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `half_h`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/vxu_impl.rs","byte_start":37276,"byte_end":37282,"line_start":907,"line_end":907,"column_start":25,"column_end":31,"is_primary":true,"text":[{"text":" let half_h = (height + 1) / 2;","highlight_start":25,"highlight_end":31}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/vxu_impl.rs","byte_start":37276,"byte_end":37282,"line_start":907,"line_end":907,"column_start":25,"column_end":31,"is_primary":true,"text":[{"text":" let half_h = (height + 1) / 2;","highlight_start":25,"highlight_end":31}],"label":null,"suggested_replacement":"_half_h","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `half_h`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/vxu_impl.rs:907:25\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m907\u001b[0m \u001b[1m\u001b[94m|\u001b[0m let half_h = (height + 1) / 2;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_half_h`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `half_h`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/vxu_impl.rs","byte_start":40415,"byte_end":40421,"line_start":971,"line_end":971,"column_start":25,"column_end":31,"is_primary":true,"text":[{"text":" let half_h = (height + 1) / 2;","highlight_start":25,"highlight_end":31}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/vxu_impl.rs","byte_start":40415,"byte_end":40421,"line_start":971,"line_end":971,"column_start":25,"column_end":31,"is_primary":true,"text":[{"text":" let half_h = (height + 1) / 2;","highlight_start":25,"highlight_end":31}],"label":null,"suggested_replacement":"_half_h","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `half_h`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/vxu_impl.rs:971:25\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m971\u001b[0m \u001b[1m\u001b[94m|\u001b[0m let half_h = (height + 1) / 2;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_half_h`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `half_h`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/vxu_impl.rs","byte_start":53958,"byte_end":53964,"line_start":1244,"line_end":1244,"column_start":25,"column_end":31,"is_primary":true,"text":[{"text":" let half_h = (height + 1) / 2;","highlight_start":25,"highlight_end":31}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/vxu_impl.rs","byte_start":53958,"byte_end":53964,"line_start":1244,"line_end":1244,"column_start":25,"column_end":31,"is_primary":true,"text":[{"text":" let half_h = (height + 1) / 2;","highlight_start":25,"highlight_end":31}],"label":null,"suggested_replacement":"_half_h","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `half_h`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/vxu_impl.rs:1244:25\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m1244\u001b[0m \u001b[1m\u001b[94m|\u001b[0m let half_h = (height + 1) / 2;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_half_h`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"variable does not need to be mutable","code":{"code":"unused_mut","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/vxu_impl.rs","byte_start":56779,"byte_end":56791,"line_start":1318,"line_end":1318,"column_start":13,"column_end":25,"is_primary":true,"text":[{"text":" let mut dst_data = dst.data_mut();","highlight_start":13,"highlight_end":25}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"remove this `mut`","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/vxu_impl.rs","byte_start":56779,"byte_end":56783,"line_start":1318,"line_end":1318,"column_start":13,"column_end":17,"is_primary":true,"text":[{"text":" let mut dst_data = dst.data_mut();","highlight_start":13,"highlight_end":17}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: variable does not need to be mutable\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/vxu_impl.rs:1318:13\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m1318\u001b[0m \u001b[1m\u001b[94m|\u001b[0m let mut dst_data = dst.data_mut();\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m----\u001b[0m\u001b[1m\u001b[33m^^^^^^^^\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94mhelp: remove this `mut`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"variable does not need to be mutable","code":{"code":"unused_mut","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/vxu_impl.rs","byte_start":58743,"byte_end":58755,"line_start":1376,"line_end":1376,"column_start":13,"column_end":25,"is_primary":true,"text":[{"text":" let mut dst_data = dst.data_mut();","highlight_start":13,"highlight_end":25}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"remove this `mut`","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/vxu_impl.rs","byte_start":58743,"byte_end":58747,"line_start":1376,"line_end":1376,"column_start":13,"column_end":17,"is_primary":true,"text":[{"text":" let mut dst_data = dst.data_mut();","highlight_start":13,"highlight_end":17}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: variable does not need to be mutable\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/vxu_impl.rs:1376:13\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m1376\u001b[0m \u001b[1m\u001b[94m|\u001b[0m let mut dst_data = dst.data_mut();\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m----\u001b[0m\u001b[1m\u001b[33m^^^^^^^^\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94mhelp: remove this `mut`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unnecessary `unsafe` block","code":{"code":"unused_unsafe","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/vxu_impl.rs","byte_start":66429,"byte_end":66435,"line_start":1635,"line_end":1635,"column_start":37,"column_end":43,"is_primary":true,"text":[{"text":" let const_val = unsafe { b.constant_value.U8 };","highlight_start":37,"highlight_end":43}],"label":"unnecessary `unsafe` block","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/vxu_impl.rs","byte_start":65915,"byte_end":65921,"line_start":1620,"line_end":1620,"column_start":5,"column_end":11,"is_primary":false,"text":[{"text":" unsafe {","highlight_start":5,"highlight_end":11}],"label":"because it's nested under this `unsafe` block","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unnecessary `unsafe` block\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/vxu_impl.rs:1635:37\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m1620\u001b[0m \u001b[1m\u001b[94m|\u001b[0m unsafe {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m------\u001b[0m \u001b[1m\u001b[94mbecause it's nested under this `unsafe` block\u001b[0m\n\u001b[1m\u001b[94m...\u001b[0m\n\u001b[1m\u001b[94m1635\u001b[0m \u001b[1m\u001b[94m|\u001b[0m let const_val = unsafe { b.constant_value.U8 };\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m \u001b[1m\u001b[33munnecessary `unsafe` block\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unnecessary `unsafe` block","code":{"code":"unused_unsafe","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/vxu_impl.rs","byte_start":67888,"byte_end":67894,"line_start":1685,"line_end":1685,"column_start":37,"column_end":43,"is_primary":true,"text":[{"text":" let const_val = unsafe { b.constant_value.U8 };","highlight_start":37,"highlight_end":43}],"label":"unnecessary `unsafe` block","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/vxu_impl.rs","byte_start":67374,"byte_end":67380,"line_start":1670,"line_end":1670,"column_start":5,"column_end":11,"is_primary":false,"text":[{"text":" unsafe {","highlight_start":5,"highlight_end":11}],"label":"because it's nested under this `unsafe` block","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unnecessary `unsafe` block\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/vxu_impl.rs:1685:37\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m1670\u001b[0m \u001b[1m\u001b[94m|\u001b[0m unsafe {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m------\u001b[0m \u001b[1m\u001b[94mbecause it's nested under this `unsafe` block\u001b[0m\n\u001b[1m\u001b[94m...\u001b[0m\n\u001b[1m\u001b[94m1685\u001b[0m \u001b[1m\u001b[94m|\u001b[0m let const_val = unsafe { b.constant_value.U8 };\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m \u001b[1m\u001b[33munnecessary `unsafe` block\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"variable does not need to be mutable","code":{"code":"unused_mut","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/vxu_impl.rs","byte_start":127093,"byte_end":127105,"line_start":3657,"line_end":3657,"column_start":9,"column_end":21,"is_primary":true,"text":[{"text":" let mut dst_data = dst.data_mut();","highlight_start":9,"highlight_end":21}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"remove this `mut`","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/vxu_impl.rs","byte_start":127093,"byte_end":127097,"line_start":3657,"line_end":3657,"column_start":9,"column_end":13,"is_primary":true,"text":[{"text":" let mut dst_data = dst.data_mut();","highlight_start":9,"highlight_end":13}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: variable does not need to be mutable\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/vxu_impl.rs:3657:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m3657\u001b[0m \u001b[1m\u001b[94m|\u001b[0m let mut dst_data = dst.data_mut();\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m----\u001b[0m\u001b[1m\u001b[33m^^^^^^^^\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94mhelp: remove this `mut`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `dx2`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/vxu_impl.rs","byte_start":126175,"byte_end":126178,"line_start":3631,"line_end":3631,"column_start":28,"column_end":31,"is_primary":true,"text":[{"text":" let (dx1, dy1, dx2, dy2) = match angle {","highlight_start":28,"highlight_end":31}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/vxu_impl.rs","byte_start":126175,"byte_end":126178,"line_start":3631,"line_end":3631,"column_start":28,"column_end":31,"is_primary":true,"text":[{"text":" let (dx1, dy1, dx2, dy2) = match angle {","highlight_start":28,"highlight_end":31}],"label":null,"suggested_replacement":"_dx2","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `dx2`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/vxu_impl.rs:3631:28\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m3631\u001b[0m \u001b[1m\u001b[94m|\u001b[0m let (dx1, dy1, dx2, dy2) = match angle {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_dx2`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"variable does not need to be mutable","code":{"code":"unused_mut","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/vxu_impl.rs","byte_start":140240,"byte_end":140252,"line_start":4064,"line_end":4064,"column_start":13,"column_end":25,"is_primary":true,"text":[{"text":" let mut dst_data = dst.data_mut();","highlight_start":13,"highlight_end":25}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"remove this `mut`","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/vxu_impl.rs","byte_start":140240,"byte_end":140244,"line_start":4064,"line_end":4064,"column_start":13,"column_end":17,"is_primary":true,"text":[{"text":" let mut dst_data = dst.data_mut();","highlight_start":13,"highlight_end":17}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: variable does not need to be mutable\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/vxu_impl.rs:4064:13\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m4064\u001b[0m \u001b[1m\u001b[94m|\u001b[0m let mut dst_data = dst.data_mut();\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m----\u001b[0m\u001b[1m\u001b[33m^^^^^^^^\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94mhelp: remove this `mut`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"variable does not need to be mutable","code":{"code":"unused_mut","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/vxu_impl.rs","byte_start":141511,"byte_end":141523,"line_start":4110,"line_end":4110,"column_start":13,"column_end":25,"is_primary":true,"text":[{"text":" let mut dst_data = dst.data_mut();","highlight_start":13,"highlight_end":25}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"remove this `mut`","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/vxu_impl.rs","byte_start":141511,"byte_end":141515,"line_start":4110,"line_end":4110,"column_start":13,"column_end":17,"is_primary":true,"text":[{"text":" let mut dst_data = dst.data_mut();","highlight_start":13,"highlight_end":17}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: variable does not need to be mutable\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/vxu_impl.rs:4110:13\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m4110\u001b[0m \u001b[1m\u001b[94m|\u001b[0m let mut dst_data = dst.data_mut();\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m----\u001b[0m\u001b[1m\u001b[33m^^^^^^^^\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94mhelp: remove this `mut`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"variable does not need to be mutable","code":{"code":"unused_mut","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/vxu_impl.rs","byte_start":142784,"byte_end":142796,"line_start":4156,"line_end":4156,"column_start":13,"column_end":25,"is_primary":true,"text":[{"text":" let mut dst_data = dst.data_mut();","highlight_start":13,"highlight_end":25}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"remove this `mut`","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/vxu_impl.rs","byte_start":142784,"byte_end":142788,"line_start":4156,"line_end":4156,"column_start":13,"column_end":17,"is_primary":true,"text":[{"text":" let mut dst_data = dst.data_mut();","highlight_start":13,"highlight_end":17}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: variable does not need to be mutable\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/vxu_impl.rs:4156:13\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m4156\u001b[0m \u001b[1m\u001b[94m|\u001b[0m let mut dst_data = dst.data_mut();\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m----\u001b[0m\u001b[1m\u001b[33m^^^^^^^^\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94mhelp: remove this `mut`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"variable does not need to be mutable","code":{"code":"unused_mut","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/vxu_impl.rs","byte_start":143880,"byte_end":143892,"line_start":4196,"line_end":4196,"column_start":13,"column_end":25,"is_primary":true,"text":[{"text":" let mut dst_data = dst.data_mut();","highlight_start":13,"highlight_end":25}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"remove this `mut`","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/vxu_impl.rs","byte_start":143880,"byte_end":143884,"line_start":4196,"line_end":4196,"column_start":13,"column_end":17,"is_primary":true,"text":[{"text":" let mut dst_data = dst.data_mut();","highlight_start":13,"highlight_end":17}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: variable does not need to be mutable\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/vxu_impl.rs:4196:13\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m4196\u001b[0m \u001b[1m\u001b[94m|\u001b[0m let mut dst_data = dst.data_mut();\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m----\u001b[0m\u001b[1m\u001b[33m^^^^^^^^\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94mhelp: remove this `mut`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"fields `vendor_id`, `version`, and `implementation` are never read","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/context.rs","byte_start":218,"byte_end":225,"line_start":9,"line_end":9,"column_start":12,"column_end":19,"is_primary":false,"text":[{"text":"pub struct Context {","highlight_start":12,"highlight_end":19}],"label":"fields in this struct","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/context.rs","byte_start":282,"byte_end":291,"line_start":12,"line_end":12,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" vendor_id: u32,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/context.rs","byte_start":302,"byte_end":309,"line_start":13,"line_end":13,"column_start":5,"column_end":12,"is_primary":true,"text":[{"text":" version: (u32, u32),","highlight_start":5,"highlight_end":12}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/context.rs","byte_start":327,"byte_end":341,"line_start":14,"line_end":14,"column_start":5,"column_end":19,"is_primary":true,"text":[{"text":" implementation: String,","highlight_start":5,"highlight_end":19}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(dead_code)]` (part of `#[warn(unused)]`) on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: fields `vendor_id`, `version`, and `implementation` are never read\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/context.rs:12:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m 9\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub struct Context {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m-------\u001b[0m \u001b[1m\u001b[94mfields in this struct\u001b[0m\n\u001b[1m\u001b[94m...\u001b[0m\n\u001b[1m\u001b[94m12\u001b[0m \u001b[1m\u001b[94m|\u001b[0m vendor_id: u32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m\n\u001b[1m\u001b[94m13\u001b[0m \u001b[1m\u001b[94m|\u001b[0m version: (u32, u32),\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^\u001b[0m\n\u001b[1m\u001b[94m14\u001b[0m \u001b[1m\u001b[94m|\u001b[0m implementation: String,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m= \u001b[0m\u001b[1mnote\u001b[0m: `#[warn(dead_code)]` (part of `#[warn(unused)]`) on by default\n\n"} +{"$message_type":"diagnostic","message":"fields `data` and `context` are never read","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api_data.rs","byte_start":2255,"byte_end":2268,"line_start":63,"line_end":63,"column_start":12,"column_end":25,"is_primary":false,"text":[{"text":"pub struct VxCScalarData {","highlight_start":12,"highlight_end":25}],"label":"fields in this struct","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/c_api_data.rs","byte_start":2299,"byte_end":2303,"line_start":65,"line_end":65,"column_start":5,"column_end":9,"is_primary":true,"text":[{"text":" data: Vec,","highlight_start":5,"highlight_end":9}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/c_api_data.rs","byte_start":2318,"byte_end":2325,"line_start":66,"line_end":66,"column_start":5,"column_end":12,"is_primary":true,"text":[{"text":" context: vx_context,","highlight_start":5,"highlight_end":12}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: fields `data` and `context` are never read\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api_data.rs:65:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m63\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub struct VxCScalarData {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m-------------\u001b[0m \u001b[1m\u001b[94mfields in this struct\u001b[0m\n\u001b[1m\u001b[94m64\u001b[0m \u001b[1m\u001b[94m|\u001b[0m data_type: vx_enum,\n\u001b[1m\u001b[94m65\u001b[0m \u001b[1m\u001b[94m|\u001b[0m data: Vec,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^\u001b[0m\n\u001b[1m\u001b[94m66\u001b[0m \u001b[1m\u001b[94m|\u001b[0m context: vx_context,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"fields `scale` and `context` are never read","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api_data.rs","byte_start":5961,"byte_end":5979,"line_start":197,"line_end":197,"column_start":12,"column_end":30,"is_primary":false,"text":[{"text":"pub struct VxCConvolutionData {","highlight_start":12,"highlight_end":30}],"label":"fields in this struct","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/c_api_data.rs","byte_start":6027,"byte_end":6032,"line_start":200,"line_end":200,"column_start":5,"column_end":10,"is_primary":true,"text":[{"text":" scale: vx_uint32,","highlight_start":5,"highlight_end":10}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/c_api_data.rs","byte_start":6077,"byte_end":6084,"line_start":202,"line_end":202,"column_start":5,"column_end":12,"is_primary":true,"text":[{"text":" context: vx_context,","highlight_start":5,"highlight_end":12}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: fields `scale` and `context` are never read\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api_data.rs:200:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m197\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub struct VxCConvolutionData {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m------------------\u001b[0m \u001b[1m\u001b[94mfields in this struct\u001b[0m\n\u001b[1m\u001b[94m...\u001b[0m\n\u001b[1m\u001b[94m200\u001b[0m \u001b[1m\u001b[94m|\u001b[0m scale: vx_uint32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^\u001b[0m\n\u001b[1m\u001b[94m201\u001b[0m \u001b[1m\u001b[94m|\u001b[0m data: RwLock>,\n\u001b[1m\u001b[94m202\u001b[0m \u001b[1m\u001b[94m|\u001b[0m context: vx_context,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"field `context` is never read","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api_data.rs","byte_start":9894,"byte_end":9907,"line_start":340,"line_end":340,"column_start":12,"column_end":25,"is_primary":false,"text":[{"text":"pub struct VxCMatrixData {","highlight_start":12,"highlight_end":25}],"label":"field in this struct","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/c_api_data.rs","byte_start":10006,"byte_end":10013,"line_start":345,"line_end":345,"column_start":5,"column_end":12,"is_primary":true,"text":[{"text":" context: vx_context,","highlight_start":5,"highlight_end":12}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: field `context` is never read\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api_data.rs:345:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m340\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub struct VxCMatrixData {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m-------------\u001b[0m \u001b[1m\u001b[94mfield in this struct\u001b[0m\n\u001b[1m\u001b[94m...\u001b[0m\n\u001b[1m\u001b[94m345\u001b[0m \u001b[1m\u001b[94m|\u001b[0m context: vx_context,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"fields `offset` and `context` are never read","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api_data.rs","byte_start":14452,"byte_end":14462,"line_start":502,"line_end":502,"column_start":12,"column_end":22,"is_primary":false,"text":[{"text":"pub struct VxCLUTData {","highlight_start":12,"highlight_end":22}],"label":"fields in this struct","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/c_api_data.rs","byte_start":14513,"byte_end":14519,"line_start":505,"line_end":505,"column_start":5,"column_end":11,"is_primary":true,"text":[{"text":" offset: vx_int32,","highlight_start":5,"highlight_end":11}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/c_api_data.rs","byte_start":14562,"byte_end":14569,"line_start":507,"line_end":507,"column_start":5,"column_end":12,"is_primary":true,"text":[{"text":" context: vx_context,","highlight_start":5,"highlight_end":12}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: fields `offset` and `context` are never read\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api_data.rs:505:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m502\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub struct VxCLUTData {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m----------\u001b[0m \u001b[1m\u001b[94mfields in this struct\u001b[0m\n\u001b[1m\u001b[94m...\u001b[0m\n\u001b[1m\u001b[94m505\u001b[0m \u001b[1m\u001b[94m|\u001b[0m offset: vx_int32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m\n\u001b[1m\u001b[94m506\u001b[0m \u001b[1m\u001b[94m|\u001b[0m data: RwLock>,\n\u001b[1m\u001b[94m507\u001b[0m \u001b[1m\u001b[94m|\u001b[0m context: vx_context,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"field `context` is never read","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api_data.rs","byte_start":18518,"byte_end":18534,"line_start":656,"line_end":656,"column_start":12,"column_end":28,"is_primary":false,"text":[{"text":"pub struct VxCThresholdData {","highlight_start":12,"highlight_end":28}],"label":"field in this struct","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/c_api_data.rs","byte_start":18806,"byte_end":18813,"line_start":666,"line_end":666,"column_start":5,"column_end":12,"is_primary":true,"text":[{"text":" context: vx_context,","highlight_start":5,"highlight_end":12}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: field `context` is never read\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api_data.rs:666:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m656\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub struct VxCThresholdData {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m----------------\u001b[0m \u001b[1m\u001b[94mfield in this struct\u001b[0m\n\u001b[1m\u001b[94m...\u001b[0m\n\u001b[1m\u001b[94m666\u001b[0m \u001b[1m\u001b[94m|\u001b[0m context: vx_context,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"fields `width` and `height` are never read","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api_data.rs","byte_start":30866,"byte_end":30881,"line_start":1077,"line_end":1077,"column_start":12,"column_end":27,"is_primary":false,"text":[{"text":"pub struct VxCPyramidLevel {","highlight_start":12,"highlight_end":27}],"label":"fields in this struct","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/c_api_data.rs","byte_start":30888,"byte_end":30893,"line_start":1078,"line_end":1078,"column_start":5,"column_end":10,"is_primary":true,"text":[{"text":" width: vx_uint32,","highlight_start":5,"highlight_end":10}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/c_api_data.rs","byte_start":30910,"byte_end":30916,"line_start":1079,"line_end":1079,"column_start":5,"column_end":11,"is_primary":true,"text":[{"text":" height: vx_uint32,","highlight_start":5,"highlight_end":11}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: fields `width` and `height` are never read\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api_data.rs:1078:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m1077\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub struct VxCPyramidLevel {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m---------------\u001b[0m \u001b[1m\u001b[94mfields in this struct\u001b[0m\n\u001b[1m\u001b[94m1078\u001b[0m \u001b[1m\u001b[94m|\u001b[0m width: vx_uint32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^\u001b[0m\n\u001b[1m\u001b[94m1079\u001b[0m \u001b[1m\u001b[94m|\u001b[0m height: vx_uint32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"fields `scale`, `format`, and `context` are never read","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api_data.rs","byte_start":30994,"byte_end":31008,"line_start":1084,"line_end":1084,"column_start":12,"column_end":26,"is_primary":false,"text":[{"text":"pub struct VxCPyramidData {","highlight_start":12,"highlight_end":26}],"label":"fields in this struct","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/c_api_data.rs","byte_start":31036,"byte_end":31041,"line_start":1086,"line_end":1086,"column_start":5,"column_end":10,"is_primary":true,"text":[{"text":" scale: vx_float32,","highlight_start":5,"highlight_end":10}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/c_api_data.rs","byte_start":31059,"byte_end":31065,"line_start":1087,"line_end":1087,"column_start":5,"column_end":11,"is_primary":true,"text":[{"text":" format: vx_df_image,","highlight_start":5,"highlight_end":11}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/c_api_data.rs","byte_start":31118,"byte_end":31125,"line_start":1089,"line_end":1089,"column_start":5,"column_end":12,"is_primary":true,"text":[{"text":" context: vx_context,","highlight_start":5,"highlight_end":12}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: fields `scale`, `format`, and `context` are never read\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api_data.rs:1086:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m1084\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub struct VxCPyramidData {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m--------------\u001b[0m \u001b[1m\u001b[94mfields in this struct\u001b[0m\n\u001b[1m\u001b[94m1085\u001b[0m \u001b[1m\u001b[94m|\u001b[0m levels: vx_size,\n\u001b[1m\u001b[94m1086\u001b[0m \u001b[1m\u001b[94m|\u001b[0m scale: vx_float32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^\u001b[0m\n\u001b[1m\u001b[94m1087\u001b[0m \u001b[1m\u001b[94m|\u001b[0m format: vx_df_image,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m\n\u001b[1m\u001b[94m1088\u001b[0m \u001b[1m\u001b[94m|\u001b[0m images: Vec,\n\u001b[1m\u001b[94m1089\u001b[0m \u001b[1m\u001b[94m|\u001b[0m context: vx_context,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"fields `item_type`, `capacity`, `items`, and `ref_count` are never read","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":9135,"byte_end":9143,"line_start":261,"line_end":261,"column_start":12,"column_end":20,"is_primary":false,"text":[{"text":"pub struct VxCArray {","highlight_start":12,"highlight_end":20}],"label":"fields in this struct","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":9150,"byte_end":9159,"line_start":262,"line_end":262,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" item_type: vx_enum,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":9174,"byte_end":9182,"line_start":263,"line_end":263,"column_start":5,"column_end":13,"is_primary":true,"text":[{"text":" capacity: usize,","highlight_start":5,"highlight_end":13}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":9195,"byte_end":9200,"line_start":264,"line_end":264,"column_start":5,"column_end":10,"is_primary":true,"text":[{"text":" items: RwLock>,","highlight_start":5,"highlight_end":10}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":9223,"byte_end":9232,"line_start":265,"line_end":265,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" ref_count: AtomicUsize,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: fields `item_type`, `capacity`, `items`, and `ref_count` are never read\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:262:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m261\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub struct VxCArray {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m--------\u001b[0m \u001b[1m\u001b[94mfields in this struct\u001b[0m\n\u001b[1m\u001b[94m262\u001b[0m \u001b[1m\u001b[94m|\u001b[0m item_type: vx_enum,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m\n\u001b[1m\u001b[94m263\u001b[0m \u001b[1m\u001b[94m|\u001b[0m capacity: usize,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^\u001b[0m\n\u001b[1m\u001b[94m264\u001b[0m \u001b[1m\u001b[94m|\u001b[0m items: RwLock>,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^\u001b[0m\n\u001b[1m\u001b[94m265\u001b[0m \u001b[1m\u001b[94m|\u001b[0m ref_count: AtomicUsize,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"fields `rows`, `cols`, `data_type`, `data`, and `ref_count` are never read","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":9277,"byte_end":9286,"line_start":269,"line_end":269,"column_start":12,"column_end":21,"is_primary":false,"text":[{"text":"pub struct VxCMatrix {","highlight_start":12,"highlight_end":21}],"label":"fields in this struct","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":9293,"byte_end":9297,"line_start":270,"line_end":270,"column_start":5,"column_end":9,"is_primary":true,"text":[{"text":" rows: u32,","highlight_start":5,"highlight_end":9}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":9308,"byte_end":9312,"line_start":271,"line_end":271,"column_start":5,"column_end":9,"is_primary":true,"text":[{"text":" cols: u32,","highlight_start":5,"highlight_end":9}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":9323,"byte_end":9332,"line_start":272,"line_end":272,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" data_type: vx_enum,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":9347,"byte_end":9351,"line_start":273,"line_end":273,"column_start":5,"column_end":9,"is_primary":true,"text":[{"text":" data: RwLock>,","highlight_start":5,"highlight_end":9}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":9375,"byte_end":9384,"line_start":274,"line_end":274,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" ref_count: AtomicUsize,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: fields `rows`, `cols`, `data_type`, `data`, and `ref_count` are never read\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:270:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m269\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub struct VxCMatrix {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m---------\u001b[0m \u001b[1m\u001b[94mfields in this struct\u001b[0m\n\u001b[1m\u001b[94m270\u001b[0m \u001b[1m\u001b[94m|\u001b[0m rows: u32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^\u001b[0m\n\u001b[1m\u001b[94m271\u001b[0m \u001b[1m\u001b[94m|\u001b[0m cols: u32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^\u001b[0m\n\u001b[1m\u001b[94m272\u001b[0m \u001b[1m\u001b[94m|\u001b[0m data_type: vx_enum,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m\n\u001b[1m\u001b[94m273\u001b[0m \u001b[1m\u001b[94m|\u001b[0m data: RwLock>,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^\u001b[0m\n\u001b[1m\u001b[94m274\u001b[0m \u001b[1m\u001b[94m|\u001b[0m ref_count: AtomicUsize,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"fields `rows`, `cols`, `scale`, `data`, and `ref_count` are never read","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":9434,"byte_end":9448,"line_start":278,"line_end":278,"column_start":12,"column_end":26,"is_primary":false,"text":[{"text":"pub struct VxCConvolution {","highlight_start":12,"highlight_end":26}],"label":"fields in this struct","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":9455,"byte_end":9459,"line_start":279,"line_end":279,"column_start":5,"column_end":9,"is_primary":true,"text":[{"text":" rows: u32,","highlight_start":5,"highlight_end":9}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":9470,"byte_end":9474,"line_start":280,"line_end":280,"column_start":5,"column_end":9,"is_primary":true,"text":[{"text":" cols: u32,","highlight_start":5,"highlight_end":9}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":9485,"byte_end":9490,"line_start":281,"line_end":281,"column_start":5,"column_end":10,"is_primary":true,"text":[{"text":" scale: u32,","highlight_start":5,"highlight_end":10}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":9501,"byte_end":9505,"line_start":282,"line_end":282,"column_start":5,"column_end":9,"is_primary":true,"text":[{"text":" data: RwLock>,","highlight_start":5,"highlight_end":9}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":9529,"byte_end":9538,"line_start":283,"line_end":283,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" ref_count: AtomicUsize,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: fields `rows`, `cols`, `scale`, `data`, and `ref_count` are never read\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:279:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m278\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub struct VxCConvolution {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m--------------\u001b[0m \u001b[1m\u001b[94mfields in this struct\u001b[0m\n\u001b[1m\u001b[94m279\u001b[0m \u001b[1m\u001b[94m|\u001b[0m rows: u32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^\u001b[0m\n\u001b[1m\u001b[94m280\u001b[0m \u001b[1m\u001b[94m|\u001b[0m cols: u32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^\u001b[0m\n\u001b[1m\u001b[94m281\u001b[0m \u001b[1m\u001b[94m|\u001b[0m scale: u32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^\u001b[0m\n\u001b[1m\u001b[94m282\u001b[0m \u001b[1m\u001b[94m|\u001b[0m data: RwLock>,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^\u001b[0m\n\u001b[1m\u001b[94m283\u001b[0m \u001b[1m\u001b[94m|\u001b[0m ref_count: AtomicUsize,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"fields `data_type`, `count`, `data`, and `ref_count` are never read","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":9580,"byte_end":9586,"line_start":287,"line_end":287,"column_start":12,"column_end":18,"is_primary":false,"text":[{"text":"pub struct VxCLUT {","highlight_start":12,"highlight_end":18}],"label":"fields in this struct","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":9593,"byte_end":9602,"line_start":288,"line_end":288,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" data_type: vx_enum,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":9617,"byte_end":9622,"line_start":289,"line_end":289,"column_start":5,"column_end":10,"is_primary":true,"text":[{"text":" count: usize,","highlight_start":5,"highlight_end":10}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":9635,"byte_end":9639,"line_start":290,"line_end":290,"column_start":5,"column_end":9,"is_primary":true,"text":[{"text":" data: RwLock>,","highlight_start":5,"highlight_end":9}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":9662,"byte_end":9671,"line_start":291,"line_end":291,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" ref_count: AtomicUsize,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: fields `data_type`, `count`, `data`, and `ref_count` are never read\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:288:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m287\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub struct VxCLUT {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m------\u001b[0m \u001b[1m\u001b[94mfields in this struct\u001b[0m\n\u001b[1m\u001b[94m288\u001b[0m \u001b[1m\u001b[94m|\u001b[0m data_type: vx_enum,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m\n\u001b[1m\u001b[94m289\u001b[0m \u001b[1m\u001b[94m|\u001b[0m count: usize,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^\u001b[0m\n\u001b[1m\u001b[94m290\u001b[0m \u001b[1m\u001b[94m|\u001b[0m data: RwLock>,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^\u001b[0m\n\u001b[1m\u001b[94m291\u001b[0m \u001b[1m\u001b[94m|\u001b[0m ref_count: AtomicUsize,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"fields `data` and `ref_count` are never read","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":9722,"byte_end":9737,"line_start":295,"line_end":295,"column_start":12,"column_end":27,"is_primary":false,"text":[{"text":"pub struct VxCDistribution {","highlight_start":12,"highlight_end":27}],"label":"fields in this struct","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":9794,"byte_end":9798,"line_start":299,"line_end":299,"column_start":5,"column_end":9,"is_primary":true,"text":[{"text":" data: RwLock>,","highlight_start":5,"highlight_end":9}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":9822,"byte_end":9831,"line_start":300,"line_end":300,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" ref_count: AtomicUsize,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: fields `data` and `ref_count` are never read\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:299:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m295\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub struct VxCDistribution {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m---------------\u001b[0m \u001b[1m\u001b[94mfields in this struct\u001b[0m\n\u001b[1m\u001b[94m...\u001b[0m\n\u001b[1m\u001b[94m299\u001b[0m \u001b[1m\u001b[94m|\u001b[0m data: RwLock>,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^\u001b[0m\n\u001b[1m\u001b[94m300\u001b[0m \u001b[1m\u001b[94m|\u001b[0m ref_count: AtomicUsize,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"fields `thresh_type`, `data_type`, and `ref_count` are never read","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":9879,"byte_end":9891,"line_start":304,"line_end":304,"column_start":12,"column_end":24,"is_primary":false,"text":[{"text":"pub struct VxCThreshold {","highlight_start":12,"highlight_end":24}],"label":"fields in this struct","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":9898,"byte_end":9909,"line_start":305,"line_end":305,"column_start":5,"column_end":16,"is_primary":true,"text":[{"text":" thresh_type: vx_enum,","highlight_start":5,"highlight_end":16}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":9924,"byte_end":9933,"line_start":306,"line_end":306,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" data_type: vx_enum,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":9948,"byte_end":9957,"line_start":307,"line_end":307,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" ref_count: AtomicUsize,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: fields `thresh_type`, `data_type`, and `ref_count` are never read\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:305:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m304\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub struct VxCThreshold {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m------------\u001b[0m \u001b[1m\u001b[94mfields in this struct\u001b[0m\n\u001b[1m\u001b[94m305\u001b[0m \u001b[1m\u001b[94m|\u001b[0m thresh_type: vx_enum,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^\u001b[0m\n\u001b[1m\u001b[94m306\u001b[0m \u001b[1m\u001b[94m|\u001b[0m data_type: vx_enum,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m\n\u001b[1m\u001b[94m307\u001b[0m \u001b[1m\u001b[94m|\u001b[0m ref_count: AtomicUsize,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"fields `levels`, `scale`, and `ref_count` are never read","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":10003,"byte_end":10013,"line_start":311,"line_end":311,"column_start":12,"column_end":22,"is_primary":false,"text":[{"text":"pub struct VxCPyramid {","highlight_start":12,"highlight_end":22}],"label":"fields in this struct","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":10020,"byte_end":10026,"line_start":312,"line_end":312,"column_start":5,"column_end":11,"is_primary":true,"text":[{"text":" levels: usize,","highlight_start":5,"highlight_end":11}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":10039,"byte_end":10044,"line_start":313,"line_end":313,"column_start":5,"column_end":10,"is_primary":true,"text":[{"text":" scale: f32,","highlight_start":5,"highlight_end":10}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":10055,"byte_end":10064,"line_start":314,"line_end":314,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" ref_count: AtomicUsize,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: fields `levels`, `scale`, and `ref_count` are never read\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:312:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m311\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub struct VxCPyramid {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m----------\u001b[0m \u001b[1m\u001b[94mfields in this struct\u001b[0m\n\u001b[1m\u001b[94m312\u001b[0m \u001b[1m\u001b[94m|\u001b[0m levels: usize,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m\n\u001b[1m\u001b[94m313\u001b[0m \u001b[1m\u001b[94m|\u001b[0m scale: f32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^\u001b[0m\n\u001b[1m\u001b[94m314\u001b[0m \u001b[1m\u001b[94m|\u001b[0m ref_count: AtomicUsize,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"fields `src_width`, `src_height`, `dst_width`, `dst_height`, and `ref_count` are never read","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":10108,"byte_end":10116,"line_start":318,"line_end":318,"column_start":12,"column_end":20,"is_primary":false,"text":[{"text":"pub struct VxCRemap {","highlight_start":12,"highlight_end":20}],"label":"fields in this struct","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":10123,"byte_end":10132,"line_start":319,"line_end":319,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" src_width: u32,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":10143,"byte_end":10153,"line_start":320,"line_end":320,"column_start":5,"column_end":15,"is_primary":true,"text":[{"text":" src_height: u32,","highlight_start":5,"highlight_end":15}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":10164,"byte_end":10173,"line_start":321,"line_end":321,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" dst_width: u32,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":10184,"byte_end":10194,"line_start":322,"line_end":322,"column_start":5,"column_end":15,"is_primary":true,"text":[{"text":" dst_height: u32,","highlight_start":5,"highlight_end":15}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":10205,"byte_end":10214,"line_start":323,"line_end":323,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" ref_count: AtomicUsize,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: fields `src_width`, `src_height`, `dst_width`, `dst_height`, and `ref_count` are never read\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:319:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m318\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub struct VxCRemap {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m--------\u001b[0m \u001b[1m\u001b[94mfields in this struct\u001b[0m\n\u001b[1m\u001b[94m319\u001b[0m \u001b[1m\u001b[94m|\u001b[0m src_width: u32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m\n\u001b[1m\u001b[94m320\u001b[0m \u001b[1m\u001b[94m|\u001b[0m src_height: u32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^\u001b[0m\n\u001b[1m\u001b[94m321\u001b[0m \u001b[1m\u001b[94m|\u001b[0m dst_width: u32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m\n\u001b[1m\u001b[94m322\u001b[0m \u001b[1m\u001b[94m|\u001b[0m dst_height: u32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^\u001b[0m\n\u001b[1m\u001b[94m323\u001b[0m \u001b[1m\u001b[94m|\u001b[0m ref_count: AtomicUsize,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"fields `exemplar_type`, `count`, and `ref_count` are never read","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":10265,"byte_end":10279,"line_start":327,"line_end":327,"column_start":12,"column_end":26,"is_primary":false,"text":[{"text":"pub struct VxCObjectArray {","highlight_start":12,"highlight_end":26}],"label":"fields in this struct","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":10286,"byte_end":10299,"line_start":328,"line_end":328,"column_start":5,"column_end":18,"is_primary":true,"text":[{"text":" exemplar_type: vx_enum,","highlight_start":5,"highlight_end":18}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":10314,"byte_end":10319,"line_start":329,"line_end":329,"column_start":5,"column_end":10,"is_primary":true,"text":[{"text":" count: usize,","highlight_start":5,"highlight_end":10}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":10332,"byte_end":10341,"line_start":330,"line_end":330,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" ref_count: AtomicUsize,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: fields `exemplar_type`, `count`, and `ref_count` are never read\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:328:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m327\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub struct VxCObjectArray {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m--------------\u001b[0m \u001b[1m\u001b[94mfields in this struct\u001b[0m\n\u001b[1m\u001b[94m328\u001b[0m \u001b[1m\u001b[94m|\u001b[0m exemplar_type: vx_enum,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^\u001b[0m\n\u001b[1m\u001b[94m329\u001b[0m \u001b[1m\u001b[94m|\u001b[0m count: usize,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^\u001b[0m\n\u001b[1m\u001b[94m330\u001b[0m \u001b[1m\u001b[94m|\u001b[0m ref_count: AtomicUsize,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"fields `num_dims`, `dims`, `data_type`, and `ref_count` are never read","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":11456,"byte_end":11465,"line_start":361,"line_end":361,"column_start":12,"column_end":21,"is_primary":false,"text":[{"text":"pub struct VxCTensor {","highlight_start":12,"highlight_end":21}],"label":"fields in this struct","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":11472,"byte_end":11480,"line_start":362,"line_end":362,"column_start":5,"column_end":13,"is_primary":true,"text":[{"text":" num_dims: usize,","highlight_start":5,"highlight_end":13}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":11493,"byte_end":11497,"line_start":363,"line_end":363,"column_start":5,"column_end":9,"is_primary":true,"text":[{"text":" dims: Vec,","highlight_start":5,"highlight_end":9}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":11515,"byte_end":11524,"line_start":364,"line_end":364,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" data_type: vx_enum,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":11539,"byte_end":11548,"line_start":365,"line_end":365,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" ref_count: AtomicUsize,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: fields `num_dims`, `dims`, `data_type`, and `ref_count` are never read\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:362:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m361\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub struct VxCTensor {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m---------\u001b[0m \u001b[1m\u001b[94mfields in this struct\u001b[0m\n\u001b[1m\u001b[94m362\u001b[0m \u001b[1m\u001b[94m|\u001b[0m num_dims: usize,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^\u001b[0m\n\u001b[1m\u001b[94m363\u001b[0m \u001b[1m\u001b[94m|\u001b[0m dims: Vec,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^\u001b[0m\n\u001b[1m\u001b[94m364\u001b[0m \u001b[1m\u001b[94m|\u001b[0m data_type: vx_enum,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m\n\u001b[1m\u001b[94m365\u001b[0m \u001b[1m\u001b[94m|\u001b[0m ref_count: AtomicUsize,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"fields `format_type` and `ref_count` are never read","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":11598,"byte_end":11611,"line_start":369,"line_end":369,"column_start":12,"column_end":25,"is_primary":false,"text":[{"text":"pub struct VxCMetaFormat {","highlight_start":12,"highlight_end":25}],"label":"fields in this struct","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":11618,"byte_end":11629,"line_start":370,"line_end":370,"column_start":5,"column_end":16,"is_primary":true,"text":[{"text":" format_type: vx_enum,","highlight_start":5,"highlight_end":16}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":11644,"byte_end":11653,"line_start":371,"line_end":371,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" ref_count: AtomicUsize,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: fields `format_type` and `ref_count` are never read\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:370:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m369\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub struct VxCMetaFormat {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m-------------\u001b[0m \u001b[1m\u001b[94mfields in this struct\u001b[0m\n\u001b[1m\u001b[94m370\u001b[0m \u001b[1m\u001b[94m|\u001b[0m format_type: vx_enum,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^\u001b[0m\n\u001b[1m\u001b[94m371\u001b[0m \u001b[1m\u001b[94m|\u001b[0m ref_count: AtomicUsize,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"fields `import_type` and `ref_count` are never read","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":11698,"byte_end":11707,"line_start":375,"line_end":375,"column_start":12,"column_end":21,"is_primary":false,"text":[{"text":"pub struct VxCImport {","highlight_start":12,"highlight_end":21}],"label":"fields in this struct","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":11714,"byte_end":11725,"line_start":376,"line_end":376,"column_start":5,"column_end":16,"is_primary":true,"text":[{"text":" import_type: vx_enum,","highlight_start":5,"highlight_end":16}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":11740,"byte_end":11749,"line_start":377,"line_end":377,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" ref_count: AtomicUsize,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: fields `import_type` and `ref_count` are never read\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:376:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m375\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub struct VxCImport {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m---------\u001b[0m \u001b[1m\u001b[94mfields in this struct\u001b[0m\n\u001b[1m\u001b[94m376\u001b[0m \u001b[1m\u001b[94m|\u001b[0m import_type: vx_enum,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^\u001b[0m\n\u001b[1m\u001b[94m377\u001b[0m \u001b[1m\u001b[94m|\u001b[0m ref_count: AtomicUsize,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"fields `enumeration` and `ref_count` are never read","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":11794,"byte_end":11803,"line_start":381,"line_end":381,"column_start":12,"column_end":21,"is_primary":false,"text":[{"text":"pub struct VxCKernel {","highlight_start":12,"highlight_end":21}],"label":"fields in this struct","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":11810,"byte_end":11821,"line_start":382,"line_end":382,"column_start":5,"column_end":16,"is_primary":true,"text":[{"text":" enumeration: vx_enum,","highlight_start":5,"highlight_end":16}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":11854,"byte_end":11863,"line_start":384,"line_end":384,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" ref_count: AtomicUsize,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: fields `enumeration` and `ref_count` are never read\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:382:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m381\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub struct VxCKernel {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m---------\u001b[0m \u001b[1m\u001b[94mfields in this struct\u001b[0m\n\u001b[1m\u001b[94m382\u001b[0m \u001b[1m\u001b[94m|\u001b[0m enumeration: vx_enum,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^\u001b[0m\n\u001b[1m\u001b[94m383\u001b[0m \u001b[1m\u001b[94m|\u001b[0m name: String,\n\u001b[1m\u001b[94m384\u001b[0m \u001b[1m\u001b[94m|\u001b[0m ref_count: AtomicUsize,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"fields `id`, `name`, and `ref_count` are never read","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":11908,"byte_end":11917,"line_start":388,"line_end":388,"column_start":12,"column_end":21,"is_primary":false,"text":[{"text":"pub struct VxCTarget {","highlight_start":12,"highlight_end":21}],"label":"fields in this struct","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":11924,"byte_end":11926,"line_start":389,"line_end":389,"column_start":5,"column_end":7,"is_primary":true,"text":[{"text":" id: u64,","highlight_start":5,"highlight_end":7}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":11937,"byte_end":11941,"line_start":390,"line_end":390,"column_start":5,"column_end":9,"is_primary":true,"text":[{"text":" name: String,","highlight_start":5,"highlight_end":9}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":11955,"byte_end":11964,"line_start":391,"line_end":391,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" ref_count: AtomicUsize,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: fields `id`, `name`, and `ref_count` are never read\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:389:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m388\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub struct VxCTarget {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m---------\u001b[0m \u001b[1m\u001b[94mfields in this struct\u001b[0m\n\u001b[1m\u001b[94m389\u001b[0m \u001b[1m\u001b[94m|\u001b[0m id: u64,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^\u001b[0m\n\u001b[1m\u001b[94m390\u001b[0m \u001b[1m\u001b[94m|\u001b[0m name: String,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^\u001b[0m\n\u001b[1m\u001b[94m391\u001b[0m \u001b[1m\u001b[94m|\u001b[0m ref_count: AtomicUsize,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"fields `id`, `kernel`, and `ref_count` are never read","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":12007,"byte_end":12014,"line_start":395,"line_end":395,"column_start":12,"column_end":19,"is_primary":false,"text":[{"text":"pub struct VxCNode {","highlight_start":12,"highlight_end":19}],"label":"fields in this struct","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":12021,"byte_end":12023,"line_start":396,"line_end":396,"column_start":5,"column_end":7,"is_primary":true,"text":[{"text":" id: u64,","highlight_start":5,"highlight_end":7}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":12034,"byte_end":12040,"line_start":397,"line_end":397,"column_start":5,"column_end":11,"is_primary":true,"text":[{"text":" kernel: vx_enum,","highlight_start":5,"highlight_end":11}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":12055,"byte_end":12064,"line_start":398,"line_end":398,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" ref_count: AtomicUsize,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: fields `id`, `kernel`, and `ref_count` are never read\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:396:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m395\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub struct VxCNode {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m-------\u001b[0m \u001b[1m\u001b[94mfields in this struct\u001b[0m\n\u001b[1m\u001b[94m396\u001b[0m \u001b[1m\u001b[94m|\u001b[0m id: u64,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^\u001b[0m\n\u001b[1m\u001b[94m397\u001b[0m \u001b[1m\u001b[94m|\u001b[0m kernel: vx_enum,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m\n\u001b[1m\u001b[94m398\u001b[0m \u001b[1m\u001b[94m|\u001b[0m ref_count: AtomicUsize,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"fields `index`, `direction`, `data_type`, and `ref_count` are never read","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":12112,"byte_end":12124,"line_start":402,"line_end":402,"column_start":12,"column_end":24,"is_primary":false,"text":[{"text":"pub struct VxCParameter {","highlight_start":12,"highlight_end":24}],"label":"fields in this struct","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":12131,"byte_end":12136,"line_start":403,"line_end":403,"column_start":5,"column_end":10,"is_primary":true,"text":[{"text":" index: u32,","highlight_start":5,"highlight_end":10}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":12147,"byte_end":12156,"line_start":404,"line_end":404,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" direction: vx_enum,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":12171,"byte_end":12180,"line_start":405,"line_end":405,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" data_type: vx_enum,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":12195,"byte_end":12204,"line_start":406,"line_end":406,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" ref_count: AtomicUsize,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: fields `index`, `direction`, `data_type`, and `ref_count` are never read\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:403:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m402\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub struct VxCParameter {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m------------\u001b[0m \u001b[1m\u001b[94mfields in this struct\u001b[0m\n\u001b[1m\u001b[94m403\u001b[0m \u001b[1m\u001b[94m|\u001b[0m index: u32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^\u001b[0m\n\u001b[1m\u001b[94m404\u001b[0m \u001b[1m\u001b[94m|\u001b[0m direction: vx_enum,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m\n\u001b[1m\u001b[94m405\u001b[0m \u001b[1m\u001b[94m|\u001b[0m data_type: vx_enum,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m\n\u001b[1m\u001b[94m406\u001b[0m \u001b[1m\u001b[94m|\u001b[0m ref_count: AtomicUsize,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"static `NEXT_GRAPH_ID` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":12739,"byte_end":12752,"line_start":428,"line_end":428,"column_start":8,"column_end":21,"is_primary":true,"text":[{"text":"static NEXT_GRAPH_ID: Lazy = Lazy::new(|| {","highlight_start":8,"highlight_end":21}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: static `NEXT_GRAPH_ID` is never used\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:428:8\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m428\u001b[0m \u001b[1m\u001b[94m|\u001b[0m static NEXT_GRAPH_ID: Lazy = Lazy::new(|| {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"function `generate_graph_id` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":12821,"byte_end":12838,"line_start":432,"line_end":432,"column_start":4,"column_end":21,"is_primary":true,"text":[{"text":"fn generate_graph_id() -> u64 {","highlight_start":4,"highlight_end":21}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: function `generate_graph_id` is never used\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:432:4\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m432\u001b[0m \u001b[1m\u001b[94m|\u001b[0m fn generate_graph_id() -> u64 {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"fields `data_type` and `context` are never read","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":64584,"byte_end":64593,"line_start":1857,"line_end":1857,"column_start":12,"column_end":21,"is_primary":false,"text":[{"text":"pub struct VxCScalar {","highlight_start":12,"highlight_end":21}],"label":"fields in this struct","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":64600,"byte_end":64609,"line_start":1858,"line_end":1858,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" data_type: vx_enum,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":64651,"byte_end":64658,"line_start":1860,"line_end":1860,"column_start":5,"column_end":12,"is_primary":true,"text":[{"text":" context: vx_context,","highlight_start":5,"highlight_end":12}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: fields `data_type` and `context` are never read\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:1858:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m1857\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub struct VxCScalar {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m---------\u001b[0m \u001b[1m\u001b[94mfields in this struct\u001b[0m\n\u001b[1m\u001b[94m1858\u001b[0m \u001b[1m\u001b[94m|\u001b[0m data_type: vx_enum,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m\n\u001b[1m\u001b[94m1859\u001b[0m \u001b[1m\u001b[94m|\u001b[0m data: RwLock>,\n\u001b[1m\u001b[94m1860\u001b[0m \u001b[1m\u001b[94m|\u001b[0m context: vx_context,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"multiple fields are never read","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":68197,"byte_end":68210,"line_start":1972,"line_end":1972,"column_start":12,"column_end":25,"is_primary":false,"text":[{"text":"pub struct VxCUserKernel {","highlight_start":12,"highlight_end":25}],"label":"fields in this struct","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":68217,"byte_end":68221,"line_start":1973,"line_end":1973,"column_start":5,"column_end":9,"is_primary":true,"text":[{"text":" name: String,","highlight_start":5,"highlight_end":9}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":68235,"byte_end":68246,"line_start":1974,"line_end":1974,"column_start":5,"column_end":16,"is_primary":true,"text":[{"text":" enumeration: vx_enum,","highlight_start":5,"highlight_end":16}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":68261,"byte_end":68269,"line_start":1975,"line_end":1975,"column_start":5,"column_end":13,"is_primary":true,"text":[{"text":" validate: VxKernelValidateF,","highlight_start":5,"highlight_end":13}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":68294,"byte_end":68298,"line_start":1976,"line_end":1976,"column_start":5,"column_end":9,"is_primary":true,"text":[{"text":" init: VxKernelInitializeF,","highlight_start":5,"highlight_end":9}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":68325,"byte_end":68331,"line_start":1977,"line_end":1977,"column_start":5,"column_end":11,"is_primary":true,"text":[{"text":" deinit: VxKernelDeinitializeF,","highlight_start":5,"highlight_end":11}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":68360,"byte_end":68370,"line_start":1978,"line_end":1978,"column_start":5,"column_end":15,"is_primary":true,"text":[{"text":" num_params: vx_uint32,","highlight_start":5,"highlight_end":15}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":68387,"byte_end":68397,"line_start":1979,"line_end":1979,"column_start":5,"column_end":15,"is_primary":true,"text":[{"text":" context_id: u64,","highlight_start":5,"highlight_end":15}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: multiple fields are never read\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:1973:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m1972\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub struct VxCUserKernel {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m-------------\u001b[0m \u001b[1m\u001b[94mfields in this struct\u001b[0m\n\u001b[1m\u001b[94m1973\u001b[0m \u001b[1m\u001b[94m|\u001b[0m name: String,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^\u001b[0m\n\u001b[1m\u001b[94m1974\u001b[0m \u001b[1m\u001b[94m|\u001b[0m enumeration: vx_enum,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^\u001b[0m\n\u001b[1m\u001b[94m1975\u001b[0m \u001b[1m\u001b[94m|\u001b[0m validate: VxKernelValidateF,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^\u001b[0m\n\u001b[1m\u001b[94m1976\u001b[0m \u001b[1m\u001b[94m|\u001b[0m init: VxKernelInitializeF,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^\u001b[0m\n\u001b[1m\u001b[94m1977\u001b[0m \u001b[1m\u001b[94m|\u001b[0m deinit: VxKernelDeinitializeF,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m\n\u001b[1m\u001b[94m1978\u001b[0m \u001b[1m\u001b[94m|\u001b[0m num_params: vx_uint32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^\u001b[0m\n\u001b[1m\u001b[94m1979\u001b[0m \u001b[1m\u001b[94m|\u001b[0m context_id: u64,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"function `scalar_from_ptr` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":128994,"byte_end":129009,"line_start":4229,"line_end":4229,"column_start":11,"column_end":26,"is_primary":true,"text":[{"text":"unsafe fn scalar_from_ptr(ptr: *mut c_void) -> vx_scalar {","highlight_start":11,"highlight_end":26}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: function `scalar_from_ptr` is never used\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:4229:11\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m4229\u001b[0m \u001b[1m\u001b[94m|\u001b[0m unsafe fn scalar_from_ptr(ptr: *mut c_void) -> vx_scalar {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"function `c_image_to_rust_raw` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/vxu_impl.rs","byte_start":6572,"byte_end":6591,"line_start":178,"line_end":178,"column_start":11,"column_end":30,"is_primary":true,"text":[{"text":"unsafe fn c_image_to_rust_raw(image: vx_image) -> Option {","highlight_start":11,"highlight_end":30}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: function `c_image_to_rust_raw` is never used\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/vxu_impl.rs:178:11\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m178\u001b[0m \u001b[1m\u001b[94m|\u001b[0m unsafe fn c_image_to_rust_raw(image: vx_image) -> Option {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"function `copy_rust_to_c_image_optimized` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/vxu_impl.rs","byte_start":8579,"byte_end":8609,"line_start":233,"line_end":233,"column_start":11,"column_end":41,"is_primary":true,"text":[{"text":"unsafe fn copy_rust_to_c_image_optimized(src: &Image, dst: vx_image) -> vx_status {","highlight_start":11,"highlight_end":41}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: function `copy_rust_to_c_image_optimized` is never used\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/vxu_impl.rs:233:11\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m233\u001b[0m \u001b[1m\u001b[94m|\u001b[0m unsafe fn copy_rust_to_c_image_optimized(src: &Image, dst: vx_image) -> vx_status {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"constant `Y_COEFF_R` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/vxu_impl.rs","byte_start":13329,"byte_end":13338,"line_start":362,"line_end":362,"column_start":7,"column_end":16,"is_primary":true,"text":[{"text":"const Y_COEFF_R: i32 = 54; // 0.2126 * 256 (BT.709)","highlight_start":7,"highlight_end":16}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: constant `Y_COEFF_R` is never used\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/vxu_impl.rs:362:7\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m362\u001b[0m \u001b[1m\u001b[94m|\u001b[0m const Y_COEFF_R: i32 = 54; // 0.2126 * 256 (BT.709)\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"constant `Y_COEFF_G` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/vxu_impl.rs","byte_start":13383,"byte_end":13392,"line_start":363,"line_end":363,"column_start":7,"column_end":16,"is_primary":true,"text":[{"text":"const Y_COEFF_G: i32 = 183; // 0.7152 * 256 (BT.709)","highlight_start":7,"highlight_end":16}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: constant `Y_COEFF_G` is never used\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/vxu_impl.rs:363:7\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m363\u001b[0m \u001b[1m\u001b[94m|\u001b[0m const Y_COEFF_G: i32 = 183; // 0.7152 * 256 (BT.709)\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"constant `Y_COEFF_B` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/vxu_impl.rs","byte_start":13437,"byte_end":13446,"line_start":364,"line_end":364,"column_start":7,"column_end":16,"is_primary":true,"text":[{"text":"const Y_COEFF_B: i32 = 18; // 0.0722 * 256 (BT.709)","highlight_start":7,"highlight_end":16}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: constant `Y_COEFF_B` is never used\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/vxu_impl.rs:364:7\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m364\u001b[0m \u001b[1m\u001b[94m|\u001b[0m const Y_COEFF_B: i32 = 18; // 0.0722 * 256 (BT.709)\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"constant `U_COEFF_R` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/vxu_impl.rs","byte_start":13492,"byte_end":13501,"line_start":366,"line_end":366,"column_start":7,"column_end":16,"is_primary":true,"text":[{"text":"const U_COEFF_R: i32 = -29; // -0.1146 * 256 (BT.709)","highlight_start":7,"highlight_end":16}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: constant `U_COEFF_R` is never used\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/vxu_impl.rs:366:7\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m366\u001b[0m \u001b[1m\u001b[94m|\u001b[0m const U_COEFF_R: i32 = -29; // -0.1146 * 256 (BT.709)\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"constant `U_COEFF_G` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/vxu_impl.rs","byte_start":13547,"byte_end":13556,"line_start":367,"line_end":367,"column_start":7,"column_end":16,"is_primary":true,"text":[{"text":"const U_COEFF_G: i32 = -99; // -0.3854 * 256 (BT.709)","highlight_start":7,"highlight_end":16}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: constant `U_COEFF_G` is never used\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/vxu_impl.rs:367:7\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m367\u001b[0m \u001b[1m\u001b[94m|\u001b[0m const U_COEFF_G: i32 = -99; // -0.3854 * 256 (BT.709)\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"constant `U_COEFF_B` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/vxu_impl.rs","byte_start":13602,"byte_end":13611,"line_start":368,"line_end":368,"column_start":7,"column_end":16,"is_primary":true,"text":[{"text":"const U_COEFF_B: i32 = 128; // 0.5 * 256","highlight_start":7,"highlight_end":16}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: constant `U_COEFF_B` is never used\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/vxu_impl.rs:368:7\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m368\u001b[0m \u001b[1m\u001b[94m|\u001b[0m const U_COEFF_B: i32 = 128; // 0.5 * 256\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"constant `V_COEFF_R` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/vxu_impl.rs","byte_start":13645,"byte_end":13654,"line_start":370,"line_end":370,"column_start":7,"column_end":16,"is_primary":true,"text":[{"text":"const V_COEFF_R: i32 = 128; // 0.5 * 256","highlight_start":7,"highlight_end":16}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: constant `V_COEFF_R` is never used\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/vxu_impl.rs:370:7\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m370\u001b[0m \u001b[1m\u001b[94m|\u001b[0m const V_COEFF_R: i32 = 128; // 0.5 * 256\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"constant `V_COEFF_G` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/vxu_impl.rs","byte_start":13687,"byte_end":13696,"line_start":371,"line_end":371,"column_start":7,"column_end":16,"is_primary":true,"text":[{"text":"const V_COEFF_G: i32 = -116; // -0.4542 * 256 (BT.709)","highlight_start":7,"highlight_end":16}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: constant `V_COEFF_G` is never used\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/vxu_impl.rs:371:7\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m371\u001b[0m \u001b[1m\u001b[94m|\u001b[0m const V_COEFF_G: i32 = -116; // -0.4542 * 256 (BT.709)\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"constant `V_COEFF_B` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/vxu_impl.rs","byte_start":13742,"byte_end":13751,"line_start":372,"line_end":372,"column_start":7,"column_end":16,"is_primary":true,"text":[{"text":"const V_COEFF_B: i32 = -12; // -0.0458 * 256 (BT.709)","highlight_start":7,"highlight_end":16}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: constant `V_COEFF_B` is never used\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/vxu_impl.rs:372:7\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m372\u001b[0m \u001b[1m\u001b[94m|\u001b[0m const V_COEFF_B: i32 = -12; // -0.0458 * 256 (BT.709)\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"function `get_nv21_plane_info` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/vxu_impl.rs","byte_start":15698,"byte_end":15717,"line_start":432,"line_end":432,"column_start":4,"column_end":23,"is_primary":true,"text":[{"text":"fn get_nv21_plane_info(width: u32, height: u32) -> (usize, usize, usize) {","highlight_start":4,"highlight_end":23}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: function `get_nv21_plane_info` is never used\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/vxu_impl.rs:432:4\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m432\u001b[0m \u001b[1m\u001b[94m|\u001b[0m fn get_nv21_plane_info(width: u32, height: u32) -> (usize, usize, usize) {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"function `get_nv12_uv_indices` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/vxu_impl.rs","byte_start":16659,"byte_end":16678,"line_start":463,"line_end":463,"column_start":4,"column_end":23,"is_primary":true,"text":[{"text":"fn get_nv12_uv_indices(x: usize, y: usize, width: usize, y_size: usize) -> usize {","highlight_start":4,"highlight_end":23}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: function `get_nv12_uv_indices` is never used\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/vxu_impl.rs:463:4\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m463\u001b[0m \u001b[1m\u001b[94m|\u001b[0m fn get_nv12_uv_indices(x: usize, y: usize, width: usize, y_size: usize) -> usize {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"function `get_border_from_context` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/vxu_impl.rs","byte_start":87769,"byte_end":87792,"line_start":2384,"line_end":2384,"column_start":4,"column_end":27,"is_primary":true,"text":[{"text":"fn get_border_from_context(context: vx_context) -> BorderMode {","highlight_start":4,"highlight_end":27}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: function `get_border_from_context` is never used\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/vxu_impl.rs:2384:4\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m2384\u001b[0m \u001b[1m\u001b[94m|\u001b[0m fn get_border_from_context(context: vx_context) -> BorderMode {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"function `rgb_to_gray` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/vxu_impl.rs","byte_start":89471,"byte_end":89482,"line_start":2443,"line_end":2443,"column_start":4,"column_end":15,"is_primary":true,"text":[{"text":"fn rgb_to_gray(src: &Image, dst: &mut Image) -> VxResult<()> {","highlight_start":4,"highlight_end":15}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: function `rgb_to_gray` is never used\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/vxu_impl.rs:2443:4\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m2443\u001b[0m \u001b[1m\u001b[94m|\u001b[0m fn rgb_to_gray(src: &Image, dst: &mut Image) -> VxResult<()> {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"function `gray_to_rgb` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/vxu_impl.rs","byte_start":89946,"byte_end":89957,"line_start":2462,"line_end":2462,"column_start":4,"column_end":15,"is_primary":true,"text":[{"text":"fn gray_to_rgb(src: &Image, dst: &mut Image) -> VxResult<()> {","highlight_start":4,"highlight_end":15}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: function `gray_to_rgb` is never used\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/vxu_impl.rs:2462:4\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m2462\u001b[0m \u001b[1m\u001b[94m|\u001b[0m fn gray_to_rgb(src: &Image, dst: &mut Image) -> VxResult<()> {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"function `rgb_to_rgba` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/vxu_impl.rs","byte_start":90375,"byte_end":90386,"line_start":2480,"line_end":2480,"column_start":4,"column_end":15,"is_primary":true,"text":[{"text":"fn rgb_to_rgba(src: &Image, dst: &mut Image) -> VxResult<()> {","highlight_start":4,"highlight_end":15}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: function `rgb_to_rgba` is never used\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/vxu_impl.rs:2480:4\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m2480\u001b[0m \u001b[1m\u001b[94m|\u001b[0m fn rgb_to_rgba(src: &Image, dst: &mut Image) -> VxResult<()> {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"function `rgba_to_rgb` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/vxu_impl.rs","byte_start":91108,"byte_end":91119,"line_start":2505,"line_end":2505,"column_start":4,"column_end":15,"is_primary":true,"text":[{"text":"fn rgba_to_rgb(src: &Image, dst: &mut Image) -> VxResult<()> {","highlight_start":4,"highlight_end":15}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: function `rgba_to_rgb` is never used\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/vxu_impl.rs:2505:4\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m2505\u001b[0m \u001b[1m\u001b[94m|\u001b[0m fn rgba_to_rgb(src: &Image, dst: &mut Image) -> VxResult<()> {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"function `threshold_image` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/vxu_impl.rs","byte_start":129349,"byte_end":129364,"line_start":3726,"line_end":3726,"column_start":4,"column_end":19,"is_primary":true,"text":[{"text":"fn threshold_image(src: &Image, dst: &mut Image, thresh_type: vx_enum, value: i32, lower: i32, upper: i32, true_val: i32, false_val: i32) -> VxResult<()> {","highlight_start":4,"highlight_end":19}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: function `threshold_image` is never used\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/vxu_impl.rs:3726:4\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m3726\u001b[0m \u001b[1m\u001b[94m|\u001b[0m fn threshold_image(src: &Image, dst: &mut Image, thresh_type: vx_enum, value: i32, lower: i32, upper: i32, true_val: i32, false_va\u001b[1m\u001b[94m...\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"structure field `RGB` should have a snake case name","code":{"code":"non_snake_case","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api_data.rs","byte_start":1066,"byte_end":1069,"line_start":26,"line_end":26,"column_start":9,"column_end":12,"is_primary":true,"text":[{"text":" pub RGB: [u8; 3],","highlight_start":9,"highlight_end":12}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(non_snake_case)]` (part of `#[warn(nonstandard_style)]`) on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"convert the identifier to snake case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/c_api_data.rs","byte_start":1066,"byte_end":1069,"line_start":26,"line_end":26,"column_start":9,"column_end":12,"is_primary":true,"text":[{"text":" pub RGB: [u8; 3],","highlight_start":9,"highlight_end":12}],"label":null,"suggested_replacement":"rgb","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: structure field `RGB` should have a snake case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api_data.rs:26:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m26\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub RGB: [u8; 3],\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to snake case: `rgb`\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m= \u001b[0m\u001b[1mnote\u001b[0m: `#[warn(non_snake_case)]` (part of `#[warn(nonstandard_style)]`) on by default\n\n"} +{"$message_type":"diagnostic","message":"structure field `RGBX` should have a snake case name","code":{"code":"non_snake_case","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api_data.rs","byte_start":1143,"byte_end":1147,"line_start":28,"line_end":28,"column_start":9,"column_end":13,"is_primary":true,"text":[{"text":" pub RGBX: [u8; 4],","highlight_start":9,"highlight_end":13}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to snake case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/c_api_data.rs","byte_start":1143,"byte_end":1147,"line_start":28,"line_end":28,"column_start":9,"column_end":13,"is_primary":true,"text":[{"text":" pub RGBX: [u8; 4],","highlight_start":9,"highlight_end":13}],"label":null,"suggested_replacement":"rgbx","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: structure field `RGBX` should have a snake case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api_data.rs:28:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m28\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub RGBX: [u8; 4],\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to snake case: `rgbx`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"structure field `RGBA` should have a snake case name","code":{"code":"non_snake_case","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api_data.rs","byte_start":1219,"byte_end":1223,"line_start":30,"line_end":30,"column_start":9,"column_end":13,"is_primary":true,"text":[{"text":" pub RGBA: [u8; 4],","highlight_start":9,"highlight_end":13}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to snake case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/c_api_data.rs","byte_start":1219,"byte_end":1223,"line_start":30,"line_end":30,"column_start":9,"column_end":13,"is_primary":true,"text":[{"text":" pub RGBA: [u8; 4],","highlight_start":9,"highlight_end":13}],"label":null,"suggested_replacement":"rgba","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: structure field `RGBA` should have a snake case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api_data.rs:30:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m30\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub RGBA: [u8; 4],\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to snake case: `rgba`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"structure field `YUV` should have a snake case name","code":{"code":"non_snake_case","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api_data.rs","byte_start":1285,"byte_end":1288,"line_start":32,"line_end":32,"column_start":9,"column_end":12,"is_primary":true,"text":[{"text":" pub YUV: [u8; 3],","highlight_start":9,"highlight_end":12}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to snake case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/c_api_data.rs","byte_start":1285,"byte_end":1288,"line_start":32,"line_end":32,"column_start":9,"column_end":12,"is_primary":true,"text":[{"text":" pub YUV: [u8; 3],","highlight_start":9,"highlight_end":12}],"label":null,"suggested_replacement":"yuv","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: structure field `YUV` should have a snake case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api_data.rs:32:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m32\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub YUV: [u8; 3],\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to snake case (notice the capitalization): `yuv`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"structure field `U1` should have a snake case name","code":{"code":"non_snake_case","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api_data.rs","byte_start":1330,"byte_end":1332,"line_start":34,"line_end":34,"column_start":9,"column_end":11,"is_primary":true,"text":[{"text":" pub U1: u8,","highlight_start":9,"highlight_end":11}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to snake case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/c_api_data.rs","byte_start":1330,"byte_end":1332,"line_start":34,"line_end":34,"column_start":9,"column_end":11,"is_primary":true,"text":[{"text":" pub U1: u8,","highlight_start":9,"highlight_end":11}],"label":null,"suggested_replacement":"u1","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: structure field `U1` should have a snake case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api_data.rs:34:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m34\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub U1: u8,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to snake case (notice the capitalization): `u1`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"structure field `U8` should have a snake case name","code":{"code":"non_snake_case","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api_data.rs","byte_start":1397,"byte_end":1399,"line_start":36,"line_end":36,"column_start":9,"column_end":11,"is_primary":true,"text":[{"text":" pub U8: u8,","highlight_start":9,"highlight_end":11}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to snake case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/c_api_data.rs","byte_start":1397,"byte_end":1399,"line_start":36,"line_end":36,"column_start":9,"column_end":11,"is_primary":true,"text":[{"text":" pub U8: u8,","highlight_start":9,"highlight_end":11}],"label":null,"suggested_replacement":"u8","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: structure field `U8` should have a snake case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api_data.rs:36:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m36\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub U8: u8,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to snake case (notice the capitalization): `u8`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"structure field `U16` should have a snake case name","code":{"code":"non_snake_case","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api_data.rs","byte_start":1468,"byte_end":1471,"line_start":38,"line_end":38,"column_start":9,"column_end":12,"is_primary":true,"text":[{"text":" pub U16: u16,","highlight_start":9,"highlight_end":12}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to snake case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/c_api_data.rs","byte_start":1468,"byte_end":1471,"line_start":38,"line_end":38,"column_start":9,"column_end":12,"is_primary":true,"text":[{"text":" pub U16: u16,","highlight_start":9,"highlight_end":12}],"label":null,"suggested_replacement":"u16","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: structure field `U16` should have a snake case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api_data.rs:38:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m38\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub U16: u16,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to snake case (notice the capitalization): `u16`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"structure field `S16` should have a snake case name","code":{"code":"non_snake_case","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api_data.rs","byte_start":1541,"byte_end":1544,"line_start":40,"line_end":40,"column_start":9,"column_end":12,"is_primary":true,"text":[{"text":" pub S16: i16,","highlight_start":9,"highlight_end":12}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to snake case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/c_api_data.rs","byte_start":1541,"byte_end":1544,"line_start":40,"line_end":40,"column_start":9,"column_end":12,"is_primary":true,"text":[{"text":" pub S16: i16,","highlight_start":9,"highlight_end":12}],"label":null,"suggested_replacement":"s16","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: structure field `S16` should have a snake case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api_data.rs:40:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m40\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub S16: i16,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to snake case (notice the capitalization): `s16`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"structure field `U32` should have a snake case name","code":{"code":"non_snake_case","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api_data.rs","byte_start":1614,"byte_end":1617,"line_start":42,"line_end":42,"column_start":9,"column_end":12,"is_primary":true,"text":[{"text":" pub U32: u32,","highlight_start":9,"highlight_end":12}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to snake case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/c_api_data.rs","byte_start":1614,"byte_end":1617,"line_start":42,"line_end":42,"column_start":9,"column_end":12,"is_primary":true,"text":[{"text":" pub U32: u32,","highlight_start":9,"highlight_end":12}],"label":null,"suggested_replacement":"u32","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: structure field `U32` should have a snake case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api_data.rs:42:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m42\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub U32: u32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to snake case (notice the capitalization): `u32`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"structure field `S32` should have a snake case name","code":{"code":"non_snake_case","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api_data.rs","byte_start":1687,"byte_end":1690,"line_start":44,"line_end":44,"column_start":9,"column_end":12,"is_primary":true,"text":[{"text":" pub S32: i32,","highlight_start":9,"highlight_end":12}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to snake case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/c_api_data.rs","byte_start":1687,"byte_end":1690,"line_start":44,"line_end":44,"column_start":9,"column_end":12,"is_primary":true,"text":[{"text":" pub S32: i32,","highlight_start":9,"highlight_end":12}],"label":null,"suggested_replacement":"s32","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: structure field `S32` should have a snake case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api_data.rs:44:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m44\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub S32: i32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to snake case (notice the capitalization): `s32`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"variable `VX_CONTEXT_ATTRIBUTE_IMMEDIATE_BORDER` should have a snake case name","code":{"code":"non_snake_case","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":38321,"byte_end":38358,"line_start":1117,"line_end":1117,"column_start":9,"column_end":46,"is_primary":true,"text":[{"text":" VX_CONTEXT_ATTRIBUTE_IMMEDIATE_BORDER => {","highlight_start":9,"highlight_end":46}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to snake case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":38321,"byte_end":38358,"line_start":1117,"line_end":1117,"column_start":9,"column_end":46,"is_primary":true,"text":[{"text":" VX_CONTEXT_ATTRIBUTE_IMMEDIATE_BORDER => {","highlight_start":9,"highlight_end":46}],"label":null,"suggested_replacement":"vx_context_attribute_immediate_border","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: variable `VX_CONTEXT_ATTRIBUTE_IMMEDIATE_BORDER` should have a snake case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:1117:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m1117\u001b[0m \u001b[1m\u001b[94m|\u001b[0m VX_CONTEXT_ATTRIBUTE_IMMEDIATE_BORDER => {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to snake case: `vx_context_attribute_immediate_border`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"constant `VX_KERNEL_SOBEL_3x3` should have an upper case name","code":{"code":"non_upper_case_globals","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":86284,"byte_end":86303,"line_start":2566,"line_end":2566,"column_start":11,"column_end":30,"is_primary":true,"text":[{"text":"pub const VX_KERNEL_SOBEL_3x3: vx_enum = 0x03;","highlight_start":11,"highlight_end":30}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(non_upper_case_globals)]` (part of `#[warn(nonstandard_style)]`) on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"convert the identifier to upper case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":86284,"byte_end":86303,"line_start":2566,"line_end":2566,"column_start":11,"column_end":30,"is_primary":true,"text":[{"text":"pub const VX_KERNEL_SOBEL_3x3: vx_enum = 0x03;","highlight_start":11,"highlight_end":30}],"label":null,"suggested_replacement":"VX_KERNEL_SOBEL_3X3","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: constant `VX_KERNEL_SOBEL_3x3` should have an upper case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:2566:11\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m2566\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub const VX_KERNEL_SOBEL_3x3: vx_enum = 0x03;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper case (notice the capitalization): `VX_KERNEL_SOBEL_3X3`\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m= \u001b[0m\u001b[1mnote\u001b[0m: `#[warn(non_upper_case_globals)]` (part of `#[warn(nonstandard_style)]`) on by default\n\n"} +{"$message_type":"diagnostic","message":"constant `VX_KERNEL_GAUSSIAN_3x3` should have an upper case name","code":{"code":"non_upper_case_globals","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":86806,"byte_end":86828,"line_start":2577,"line_end":2577,"column_start":11,"column_end":33,"is_primary":true,"text":[{"text":"pub const VX_KERNEL_GAUSSIAN_3x3: vx_enum = 0x0E;","highlight_start":11,"highlight_end":33}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to upper case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":86806,"byte_end":86828,"line_start":2577,"line_end":2577,"column_start":11,"column_end":33,"is_primary":true,"text":[{"text":"pub const VX_KERNEL_GAUSSIAN_3x3: vx_enum = 0x0E;","highlight_start":11,"highlight_end":33}],"label":null,"suggested_replacement":"VX_KERNEL_GAUSSIAN_3X3","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: constant `VX_KERNEL_GAUSSIAN_3x3` should have an upper case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:2577:11\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m2577\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub const VX_KERNEL_GAUSSIAN_3x3: vx_enum = 0x0E;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper case (notice the capitalization): `VX_KERNEL_GAUSSIAN_3X3`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"constant `VX_KERNEL_MEDIAN_3x3` should have an upper case name","code":{"code":"non_upper_case_globals","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":86856,"byte_end":86876,"line_start":2578,"line_end":2578,"column_start":11,"column_end":31,"is_primary":true,"text":[{"text":"pub const VX_KERNEL_MEDIAN_3x3: vx_enum = 0x0F;","highlight_start":11,"highlight_end":31}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to upper case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":86856,"byte_end":86876,"line_start":2578,"line_end":2578,"column_start":11,"column_end":31,"is_primary":true,"text":[{"text":"pub const VX_KERNEL_MEDIAN_3x3: vx_enum = 0x0F;","highlight_start":11,"highlight_end":31}],"label":null,"suggested_replacement":"VX_KERNEL_MEDIAN_3X3","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: constant `VX_KERNEL_MEDIAN_3x3` should have an upper case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:2578:11\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m2578\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub const VX_KERNEL_MEDIAN_3x3: vx_enum = 0x0F;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper case (notice the capitalization): `VX_KERNEL_MEDIAN_3X3`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"constant `VX_KERNEL_SOBEL_5x5` should have an upper case name","code":{"code":"non_upper_case_globals","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":86904,"byte_end":86923,"line_start":2579,"line_end":2579,"column_start":11,"column_end":30,"is_primary":true,"text":[{"text":"pub const VX_KERNEL_SOBEL_5x5: vx_enum = 0x10;","highlight_start":11,"highlight_end":30}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to upper case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":86904,"byte_end":86923,"line_start":2579,"line_end":2579,"column_start":11,"column_end":30,"is_primary":true,"text":[{"text":"pub const VX_KERNEL_SOBEL_5x5: vx_enum = 0x10;","highlight_start":11,"highlight_end":30}],"label":null,"suggested_replacement":"VX_KERNEL_SOBEL_5X5","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: constant `VX_KERNEL_SOBEL_5x5` should have an upper case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:2579:11\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m2579\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub const VX_KERNEL_SOBEL_5x5: vx_enum = 0x10;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper case (notice the capitalization): `VX_KERNEL_SOBEL_5X5`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"constant `VX_KERNEL_BOX_3x3` should have an upper case name","code":{"code":"non_upper_case_globals","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":86951,"byte_end":86968,"line_start":2580,"line_end":2580,"column_start":11,"column_end":28,"is_primary":true,"text":[{"text":"pub const VX_KERNEL_BOX_3x3: vx_enum = 0x11;","highlight_start":11,"highlight_end":28}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to upper case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":86951,"byte_end":86968,"line_start":2580,"line_end":2580,"column_start":11,"column_end":28,"is_primary":true,"text":[{"text":"pub const VX_KERNEL_BOX_3x3: vx_enum = 0x11;","highlight_start":11,"highlight_end":28}],"label":null,"suggested_replacement":"VX_KERNEL_BOX_3X3","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: constant `VX_KERNEL_BOX_3x3` should have an upper case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:2580:11\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m2580\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub const VX_KERNEL_BOX_3x3: vx_enum = 0x11;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper case (notice the capitalization): `VX_KERNEL_BOX_3X3`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"constant `VX_KERNEL_GAUSSIAN_5x5` should have an upper case name","code":{"code":"non_upper_case_globals","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":86996,"byte_end":87018,"line_start":2581,"line_end":2581,"column_start":11,"column_end":33,"is_primary":true,"text":[{"text":"pub const VX_KERNEL_GAUSSIAN_5x5: vx_enum = 0x12;","highlight_start":11,"highlight_end":33}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to upper case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":86996,"byte_end":87018,"line_start":2581,"line_end":2581,"column_start":11,"column_end":33,"is_primary":true,"text":[{"text":"pub const VX_KERNEL_GAUSSIAN_5x5: vx_enum = 0x12;","highlight_start":11,"highlight_end":33}],"label":null,"suggested_replacement":"VX_KERNEL_GAUSSIAN_5X5","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: constant `VX_KERNEL_GAUSSIAN_5x5` should have an upper case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:2581:11\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m2581\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub const VX_KERNEL_GAUSSIAN_5x5: vx_enum = 0x12;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper case (notice the capitalization): `VX_KERNEL_GAUSSIAN_5X5`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"constant `VX_KERNEL_DILATE_3x3` should have an upper case name","code":{"code":"non_upper_case_globals","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":87307,"byte_end":87327,"line_start":2587,"line_end":2587,"column_start":11,"column_end":31,"is_primary":true,"text":[{"text":"pub const VX_KERNEL_DILATE_3x3: vx_enum = 0x18;","highlight_start":11,"highlight_end":31}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to upper case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":87307,"byte_end":87327,"line_start":2587,"line_end":2587,"column_start":11,"column_end":31,"is_primary":true,"text":[{"text":"pub const VX_KERNEL_DILATE_3x3: vx_enum = 0x18;","highlight_start":11,"highlight_end":31}],"label":null,"suggested_replacement":"VX_KERNEL_DILATE_3X3","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: constant `VX_KERNEL_DILATE_3x3` should have an upper case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:2587:11\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m2587\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub const VX_KERNEL_DILATE_3x3: vx_enum = 0x18;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper case (notice the capitalization): `VX_KERNEL_DILATE_3X3`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"constant `VX_KERNEL_ERODE_3x3` should have an upper case name","code":{"code":"non_upper_case_globals","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":87355,"byte_end":87374,"line_start":2588,"line_end":2588,"column_start":11,"column_end":30,"is_primary":true,"text":[{"text":"pub const VX_KERNEL_ERODE_3x3: vx_enum = 0x19;","highlight_start":11,"highlight_end":30}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to upper case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":87355,"byte_end":87374,"line_start":2588,"line_end":2588,"column_start":11,"column_end":30,"is_primary":true,"text":[{"text":"pub const VX_KERNEL_ERODE_3x3: vx_enum = 0x19;","highlight_start":11,"highlight_end":30}],"label":null,"suggested_replacement":"VX_KERNEL_ERODE_3X3","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: constant `VX_KERNEL_ERODE_3x3` should have an upper case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:2588:11\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m2588\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub const VX_KERNEL_ERODE_3x3: vx_enum = 0x19;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper case (notice the capitalization): `VX_KERNEL_ERODE_3X3`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"constant `VX_KERNEL_MEDIAN_3x3_ALT` should have an upper case name","code":{"code":"non_upper_case_globals","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":87402,"byte_end":87426,"line_start":2589,"line_end":2589,"column_start":11,"column_end":35,"is_primary":true,"text":[{"text":"pub const VX_KERNEL_MEDIAN_3x3_ALT: vx_enum = 0x1A; // Alternative median","highlight_start":11,"highlight_end":35}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to upper case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":87402,"byte_end":87426,"line_start":2589,"line_end":2589,"column_start":11,"column_end":35,"is_primary":true,"text":[{"text":"pub const VX_KERNEL_MEDIAN_3x3_ALT: vx_enum = 0x1A; // Alternative median","highlight_start":11,"highlight_end":35}],"label":null,"suggested_replacement":"VX_KERNEL_MEDIAN_3X3_ALT","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: constant `VX_KERNEL_MEDIAN_3x3_ALT` should have an upper case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:2589:11\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m2589\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub const VX_KERNEL_MEDIAN_3x3_ALT: vx_enum = 0x1A; // Alternative median\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper case (notice the capitalization): `VX_KERNEL_MEDIAN_3X3_ALT`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"constant `VX_KERNEL_DILATE_5x5` should have an upper case name","code":{"code":"non_upper_case_globals","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":87923,"byte_end":87943,"line_start":2599,"line_end":2599,"column_start":11,"column_end":31,"is_primary":true,"text":[{"text":"pub const VX_KERNEL_DILATE_5x5: vx_enum = 0x24;","highlight_start":11,"highlight_end":31}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to upper case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":87923,"byte_end":87943,"line_start":2599,"line_end":2599,"column_start":11,"column_end":31,"is_primary":true,"text":[{"text":"pub const VX_KERNEL_DILATE_5x5: vx_enum = 0x24;","highlight_start":11,"highlight_end":31}],"label":null,"suggested_replacement":"VX_KERNEL_DILATE_5X5","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: constant `VX_KERNEL_DILATE_5x5` should have an upper case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:2599:11\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m2599\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub const VX_KERNEL_DILATE_5x5: vx_enum = 0x24;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper case (notice the capitalization): `VX_KERNEL_DILATE_5X5`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"constant `VX_KERNEL_ERODE_5x5` should have an upper case name","code":{"code":"non_upper_case_globals","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":87971,"byte_end":87990,"line_start":2600,"line_end":2600,"column_start":11,"column_end":30,"is_primary":true,"text":[{"text":"pub const VX_KERNEL_ERODE_5x5: vx_enum = 0x25;","highlight_start":11,"highlight_end":30}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to upper case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":87971,"byte_end":87990,"line_start":2600,"line_end":2600,"column_start":11,"column_end":30,"is_primary":true,"text":[{"text":"pub const VX_KERNEL_ERODE_5x5: vx_enum = 0x25;","highlight_start":11,"highlight_end":30}],"label":null,"suggested_replacement":"VX_KERNEL_ERODE_5X5","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: constant `VX_KERNEL_ERODE_5x5` should have an upper case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:2600:11\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m2600\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub const VX_KERNEL_ERODE_5x5: vx_enum = 0x25;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper case (notice the capitalization): `VX_KERNEL_ERODE_5X5`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"300 warnings emitted","code":null,"level":"warning","spans":[],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: 300 warnings emitted\u001b[0m\n\n"} +======= {"$message_type":"diagnostic","message":"private item shadows public glob re-export","code":{"code":"hidden_glob_reexports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":13780,"byte_end":13885,"line_start":445,"line_end":447,"column_start":1,"column_end":4,"is_primary":true,"text":[{"text":"static NODES: Lazy>>> = Lazy::new(|| {","highlight_start":1,"highlight_end":71},{"text":" Mutex::new(HashMap::new())","highlight_start":1,"highlight_end":31},{"text":"});","highlight_start":1,"highlight_end":4}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"the name `NODES` in the value namespace is supposed to be publicly re-exported here","code":null,"level":"note","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":211,"byte_end":226,"line_start":7,"line_end":7,"column_start":9,"column_end":24,"is_primary":true,"text":[{"text":"pub use crate::c_api::*;","highlight_start":9,"highlight_end":24}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":null},{"message":"but the private item here shadows it","code":null,"level":"note","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":13780,"byte_end":13885,"line_start":445,"line_end":447,"column_start":1,"column_end":4,"is_primary":true,"text":[{"text":"static NODES: Lazy>>> = Lazy::new(|| {","highlight_start":1,"highlight_end":71},{"text":" Mutex::new(HashMap::new())","highlight_start":1,"highlight_end":31},{"text":"});","highlight_start":1,"highlight_end":4}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: private item shadows public glob re-export\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:445:1\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m445\u001b[0m \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m/\u001b[0m static NODES: Lazy>>> = Lazy::new(|| {\n\u001b[1m\u001b[94m446\u001b[0m \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m|\u001b[0m Mutex::new(HashMap::new())\n\u001b[1m\u001b[94m447\u001b[0m \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m|\u001b[0m });\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m|___^\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[92mnote\u001b[0m: the name `NODES` in the value namespace is supposed to be publicly re-exported here\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:7:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m 7\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use crate::c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[92m^^^^^^^^^^^^^^^\u001b[0m\n\u001b[1m\u001b[92mnote\u001b[0m: but the private item here shadows it\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:445:1\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m445\u001b[0m \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[92m/\u001b[0m static NODES: Lazy>>> = Lazy::new(|| {\n\u001b[1m\u001b[94m446\u001b[0m \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[92m|\u001b[0m Mutex::new(HashMap::new())\n\u001b[1m\u001b[94m447\u001b[0m \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[92m|\u001b[0m });\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[92m|___^\u001b[0m\n\n"} {"$message_type":"diagnostic","message":"type `vx_distribution` should have an upper camel case name","code":{"code":"non_camel_case_types","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":138599,"byte_end":138614,"line_start":3792,"line_end":3792,"column_start":10,"column_end":25,"is_primary":true,"text":[{"text":"pub type vx_distribution = *mut VxDistribution;","highlight_start":10,"highlight_end":25}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to upper camel case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":138599,"byte_end":138614,"line_start":3792,"line_end":3792,"column_start":10,"column_end":25,"is_primary":true,"text":[{"text":"pub type vx_distribution = *mut VxDistribution;","highlight_start":10,"highlight_end":25}],"label":null,"suggested_replacement":"VxDistribution","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: type `vx_distribution` should have an upper camel case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:3792:10\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m3792\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub type vx_distribution = *mut VxDistribution;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper camel case: `VxDistribution`\u001b[0m\n\n"} {"$message_type":"diagnostic","message":"type `vx_remap` should have an upper camel case name","code":{"code":"non_camel_case_types","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":138690,"byte_end":138698,"line_start":3796,"line_end":3796,"column_start":10,"column_end":18,"is_primary":true,"text":[{"text":"pub type vx_remap = *mut VxRemap;","highlight_start":10,"highlight_end":18}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to upper camel case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":138690,"byte_end":138698,"line_start":3796,"line_end":3796,"column_start":10,"column_end":18,"is_primary":true,"text":[{"text":"pub type vx_remap = *mut VxRemap;","highlight_start":10,"highlight_end":18}],"label":null,"suggested_replacement":"VxRemap","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: type `vx_remap` should have an upper camel case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:3796:10\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m3796\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub type vx_remap = *mut VxRemap;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper camel case: `VxRemap`\u001b[0m\n\n"} @@ -252,3 +551,4 @@ {"$message_type":"diagnostic","message":"value assigned to `converged` is never read","code":{"code":"unused_assignments","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/vxu_impl.rs","byte_start":157444,"byte_end":157460,"line_start":4553,"line_end":4553,"column_start":21,"column_end":37,"is_primary":true,"text":[{"text":" converged = true;","highlight_start":21,"highlight_end":37}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"maybe it is overwritten before being read?","code":null,"level":"help","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: value assigned to `converged` is never read\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/vxu_impl.rs:4553:21\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m4553\u001b[0m \u001b[1m\u001b[94m|\u001b[0m converged = true;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m= \u001b[0m\u001b[1mhelp\u001b[0m: maybe it is overwritten before being read?\n\n"} {"$message_type":"diagnostic","message":"aborting due to 3 previous errors; 249 warnings emitted","code":null,"level":"error","spans":[],"children":[],"rendered":"\u001b[1m\u001b[91merror\u001b[0m\u001b[1m: aborting due to 3 previous errors; 249 warnings emitted\u001b[0m\n\n"} {"$message_type":"diagnostic","message":"For more information about this error, try `rustc --explain E0606`.","code":null,"level":"failure-note","spans":[],"children":[],"rendered":"\u001b[1mFor more information about this error, try `rustc --explain E0606`.\u001b[0m\n"} +>>>>>>> origin/master diff --git a/target/debug/.fingerprint/openvx-ffi-dbe8182ad06dbfb5/dep-lib-openvx_ffi b/target/debug/.fingerprint/openvx-ffi-dbe8182ad06dbfb5/dep-lib-openvx_ffi new file mode 100644 index 0000000..024be49 Binary files /dev/null and b/target/debug/.fingerprint/openvx-ffi-dbe8182ad06dbfb5/dep-lib-openvx_ffi differ diff --git a/target/debug/.fingerprint/openvx-ffi-dbe8182ad06dbfb5/invoked.timestamp b/target/debug/.fingerprint/openvx-ffi-dbe8182ad06dbfb5/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/debug/.fingerprint/openvx-ffi-dbe8182ad06dbfb5/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/debug/.fingerprint/openvx-ffi-dbe8182ad06dbfb5/lib-openvx_ffi b/target/debug/.fingerprint/openvx-ffi-dbe8182ad06dbfb5/lib-openvx_ffi new file mode 100644 index 0000000..e0e41c4 --- /dev/null +++ b/target/debug/.fingerprint/openvx-ffi-dbe8182ad06dbfb5/lib-openvx_ffi @@ -0,0 +1 @@ +e3209768db8d4152 \ No newline at end of file diff --git a/target/debug/.fingerprint/openvx-ffi-dbe8182ad06dbfb5/lib-openvx_ffi.json b/target/debug/.fingerprint/openvx-ffi-dbe8182ad06dbfb5/lib-openvx_ffi.json new file mode 100644 index 0000000..98104f7 --- /dev/null +++ b/target/debug/.fingerprint/openvx-ffi-dbe8182ad06dbfb5/lib-openvx_ffi.json @@ -0,0 +1 @@ +{"rustc":18276270781310494267,"features":"[]","declared_features":"[]","target":101408782484674635,"profile":8731458305071235362,"path":16127627404725493292,"deps":[[4809150008149002099,"openvx_core",false,7053352861161987420],[10311188578765087558,"openvx_vision",false,2279958357130563245],[11101848710733117461,"openvx_buffer",false,4707524617068481147],[13782069936663139603,"openvx_image",false,6639602936761780768]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/openvx-ffi-dbe8182ad06dbfb5/dep-lib-openvx_ffi","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/target/debug/.fingerprint/openvx-ffi-dbe8182ad06dbfb5/output-lib-openvx_ffi b/target/debug/.fingerprint/openvx-ffi-dbe8182ad06dbfb5/output-lib-openvx_ffi new file mode 100644 index 0000000..d05ce3f --- /dev/null +++ b/target/debug/.fingerprint/openvx-ffi-dbe8182ad06dbfb5/output-lib-openvx_ffi @@ -0,0 +1,56 @@ +{"$message_type":"diagnostic","message":"ambiguous glob re-exports","code":{"code":"ambiguous_glob_reexports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-ffi/src/lib.rs","byte_start":257,"byte_end":278,"line_start":7,"line_end":7,"column_start":9,"column_end":30,"is_primary":true,"text":[{"text":"pub use openvx_core::c_api::*;","highlight_start":9,"highlight_end":30}],"label":"the name `VxDistribution` in the type namespace is first re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-ffi/src/lib.rs","byte_start":324,"byte_end":353,"line_start":9,"line_end":9,"column_start":9,"column_end":38,"is_primary":false,"text":[{"text":"pub use openvx_core::unified_c_api::*;","highlight_start":9,"highlight_end":38}],"label":"but the name `VxDistribution` in the type namespace is also re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(ambiguous_glob_reexports)]` on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: ambiguous glob re-exports\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-ffi/src/lib.rs:7:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m7\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mthe name `VxDistribution` in the type namespace is first re-exported here\u001b[0m\n\u001b[1m\u001b[94m8\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api_data::*;\n\u001b[1m\u001b[94m9\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::unified_c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m-----------------------------\u001b[0m \u001b[1m\u001b[94mbut the name `VxDistribution` in the type namespace is also re-exported here\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m= \u001b[0m\u001b[1mnote\u001b[0m: `#[warn(ambiguous_glob_reexports)]` on by default\n\n"} +{"$message_type":"diagnostic","message":"ambiguous glob re-exports","code":{"code":"ambiguous_glob_reexports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-ffi/src/lib.rs","byte_start":257,"byte_end":278,"line_start":7,"line_end":7,"column_start":9,"column_end":30,"is_primary":true,"text":[{"text":"pub use openvx_core::c_api::*;","highlight_start":9,"highlight_end":30}],"label":"the name `vx_distribution` in the type namespace is first re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-ffi/src/lib.rs","byte_start":324,"byte_end":353,"line_start":9,"line_end":9,"column_start":9,"column_end":38,"is_primary":false,"text":[{"text":"pub use openvx_core::unified_c_api::*;","highlight_start":9,"highlight_end":38}],"label":"but the name `vx_distribution` in the type namespace is also re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: ambiguous glob re-exports\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-ffi/src/lib.rs:7:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m7\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mthe name `vx_distribution` in the type namespace is first re-exported here\u001b[0m\n\u001b[1m\u001b[94m8\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api_data::*;\n\u001b[1m\u001b[94m9\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::unified_c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m-----------------------------\u001b[0m \u001b[1m\u001b[94mbut the name `vx_distribution` in the type namespace is also re-exported here\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"ambiguous glob re-exports","code":{"code":"ambiguous_glob_reexports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-ffi/src/lib.rs","byte_start":257,"byte_end":278,"line_start":7,"line_end":7,"column_start":9,"column_end":30,"is_primary":true,"text":[{"text":"pub use openvx_core::c_api::*;","highlight_start":9,"highlight_end":30}],"label":"the name `VxDelay` in the type namespace is first re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-ffi/src/lib.rs","byte_start":324,"byte_end":353,"line_start":9,"line_end":9,"column_start":9,"column_end":38,"is_primary":false,"text":[{"text":"pub use openvx_core::unified_c_api::*;","highlight_start":9,"highlight_end":38}],"label":"but the name `VxDelay` in the type namespace is also re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: ambiguous glob re-exports\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-ffi/src/lib.rs:7:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m7\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mthe name `VxDelay` in the type namespace is first re-exported here\u001b[0m\n\u001b[1m\u001b[94m8\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api_data::*;\n\u001b[1m\u001b[94m9\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::unified_c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m-----------------------------\u001b[0m \u001b[1m\u001b[94mbut the name `VxDelay` in the type namespace is also re-exported here\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"ambiguous glob re-exports","code":{"code":"ambiguous_glob_reexports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-ffi/src/lib.rs","byte_start":257,"byte_end":278,"line_start":7,"line_end":7,"column_start":9,"column_end":30,"is_primary":true,"text":[{"text":"pub use openvx_core::c_api::*;","highlight_start":9,"highlight_end":30}],"label":"the name `vx_delay` in the type namespace is first re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-ffi/src/lib.rs","byte_start":324,"byte_end":353,"line_start":9,"line_end":9,"column_start":9,"column_end":38,"is_primary":false,"text":[{"text":"pub use openvx_core::unified_c_api::*;","highlight_start":9,"highlight_end":38}],"label":"but the name `vx_delay` in the type namespace is also re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: ambiguous glob re-exports\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-ffi/src/lib.rs:7:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m7\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mthe name `vx_delay` in the type namespace is first re-exported here\u001b[0m\n\u001b[1m\u001b[94m8\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api_data::*;\n\u001b[1m\u001b[94m9\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::unified_c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m-----------------------------\u001b[0m \u001b[1m\u001b[94mbut the name `vx_delay` in the type namespace is also re-exported here\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"ambiguous glob re-exports","code":{"code":"ambiguous_glob_reexports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-ffi/src/lib.rs","byte_start":257,"byte_end":278,"line_start":7,"line_end":7,"column_start":9,"column_end":30,"is_primary":true,"text":[{"text":"pub use openvx_core::c_api::*;","highlight_start":9,"highlight_end":30}],"label":"the name `VxRemap` in the type namespace is first re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-ffi/src/lib.rs","byte_start":324,"byte_end":353,"line_start":9,"line_end":9,"column_start":9,"column_end":38,"is_primary":false,"text":[{"text":"pub use openvx_core::unified_c_api::*;","highlight_start":9,"highlight_end":38}],"label":"but the name `VxRemap` in the type namespace is also re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: ambiguous glob re-exports\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-ffi/src/lib.rs:7:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m7\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mthe name `VxRemap` in the type namespace is first re-exported here\u001b[0m\n\u001b[1m\u001b[94m8\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api_data::*;\n\u001b[1m\u001b[94m9\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::unified_c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m-----------------------------\u001b[0m \u001b[1m\u001b[94mbut the name `VxRemap` in the type namespace is also re-exported here\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"ambiguous glob re-exports","code":{"code":"ambiguous_glob_reexports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-ffi/src/lib.rs","byte_start":257,"byte_end":278,"line_start":7,"line_end":7,"column_start":9,"column_end":30,"is_primary":true,"text":[{"text":"pub use openvx_core::c_api::*;","highlight_start":9,"highlight_end":30}],"label":"the name `vx_remap` in the type namespace is first re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-ffi/src/lib.rs","byte_start":324,"byte_end":353,"line_start":9,"line_end":9,"column_start":9,"column_end":38,"is_primary":false,"text":[{"text":"pub use openvx_core::unified_c_api::*;","highlight_start":9,"highlight_end":38}],"label":"but the name `vx_remap` in the type namespace is also re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: ambiguous glob re-exports\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-ffi/src/lib.rs:7:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m7\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mthe name `vx_remap` in the type namespace is first re-exported here\u001b[0m\n\u001b[1m\u001b[94m8\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api_data::*;\n\u001b[1m\u001b[94m9\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::unified_c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m-----------------------------\u001b[0m \u001b[1m\u001b[94mbut the name `vx_remap` in the type namespace is also re-exported here\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"ambiguous glob re-exports","code":{"code":"ambiguous_glob_reexports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-ffi/src/lib.rs","byte_start":257,"byte_end":278,"line_start":7,"line_end":7,"column_start":9,"column_end":30,"is_primary":true,"text":[{"text":"pub use openvx_core::c_api::*;","highlight_start":9,"highlight_end":30}],"label":"the name `VxTensor` in the type namespace is first re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-ffi/src/lib.rs","byte_start":324,"byte_end":353,"line_start":9,"line_end":9,"column_start":9,"column_end":38,"is_primary":false,"text":[{"text":"pub use openvx_core::unified_c_api::*;","highlight_start":9,"highlight_end":38}],"label":"but the name `VxTensor` in the type namespace is also re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: ambiguous glob re-exports\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-ffi/src/lib.rs:7:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m7\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mthe name `VxTensor` in the type namespace is first re-exported here\u001b[0m\n\u001b[1m\u001b[94m8\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api_data::*;\n\u001b[1m\u001b[94m9\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::unified_c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m-----------------------------\u001b[0m \u001b[1m\u001b[94mbut the name `VxTensor` in the type namespace is also re-exported here\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"ambiguous glob re-exports","code":{"code":"ambiguous_glob_reexports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-ffi/src/lib.rs","byte_start":257,"byte_end":278,"line_start":7,"line_end":7,"column_start":9,"column_end":30,"is_primary":true,"text":[{"text":"pub use openvx_core::c_api::*;","highlight_start":9,"highlight_end":30}],"label":"the name `vx_tensor` in the type namespace is first re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-ffi/src/lib.rs","byte_start":324,"byte_end":353,"line_start":9,"line_end":9,"column_start":9,"column_end":38,"is_primary":false,"text":[{"text":"pub use openvx_core::unified_c_api::*;","highlight_start":9,"highlight_end":38}],"label":"but the name `vx_tensor` in the type namespace is also re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: ambiguous glob re-exports\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-ffi/src/lib.rs:7:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m7\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mthe name `vx_tensor` in the type namespace is first re-exported here\u001b[0m\n\u001b[1m\u001b[94m8\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api_data::*;\n\u001b[1m\u001b[94m9\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::unified_c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m-----------------------------\u001b[0m \u001b[1m\u001b[94mbut the name `vx_tensor` in the type namespace is also re-exported here\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"ambiguous glob re-exports","code":{"code":"ambiguous_glob_reexports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-ffi/src/lib.rs","byte_start":257,"byte_end":278,"line_start":7,"line_end":7,"column_start":9,"column_end":30,"is_primary":true,"text":[{"text":"pub use openvx_core::c_api::*;","highlight_start":9,"highlight_end":30}],"label":"the name `VxMetaFormat` in the type namespace is first re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-ffi/src/lib.rs","byte_start":324,"byte_end":353,"line_start":9,"line_end":9,"column_start":9,"column_end":38,"is_primary":false,"text":[{"text":"pub use openvx_core::unified_c_api::*;","highlight_start":9,"highlight_end":38}],"label":"but the name `VxMetaFormat` in the type namespace is also re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: ambiguous glob re-exports\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-ffi/src/lib.rs:7:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m7\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mthe name `VxMetaFormat` in the type namespace is first re-exported here\u001b[0m\n\u001b[1m\u001b[94m8\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api_data::*;\n\u001b[1m\u001b[94m9\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::unified_c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m-----------------------------\u001b[0m \u001b[1m\u001b[94mbut the name `VxMetaFormat` in the type namespace is also re-exported here\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"ambiguous glob re-exports","code":{"code":"ambiguous_glob_reexports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-ffi/src/lib.rs","byte_start":257,"byte_end":278,"line_start":7,"line_end":7,"column_start":9,"column_end":30,"is_primary":true,"text":[{"text":"pub use openvx_core::c_api::*;","highlight_start":9,"highlight_end":30}],"label":"the name `vx_meta_format` in the type namespace is first re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-ffi/src/lib.rs","byte_start":324,"byte_end":353,"line_start":9,"line_end":9,"column_start":9,"column_end":38,"is_primary":false,"text":[{"text":"pub use openvx_core::unified_c_api::*;","highlight_start":9,"highlight_end":38}],"label":"but the name `vx_meta_format` in the type namespace is also re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: ambiguous glob re-exports\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-ffi/src/lib.rs:7:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m7\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mthe name `vx_meta_format` in the type namespace is first re-exported here\u001b[0m\n\u001b[1m\u001b[94m8\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api_data::*;\n\u001b[1m\u001b[94m9\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::unified_c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m-----------------------------\u001b[0m \u001b[1m\u001b[94mbut the name `vx_meta_format` in the type namespace is also re-exported here\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"ambiguous glob re-exports","code":{"code":"ambiguous_glob_reexports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-ffi/src/lib.rs","byte_start":257,"byte_end":278,"line_start":7,"line_end":7,"column_start":9,"column_end":30,"is_primary":true,"text":[{"text":"pub use openvx_core::c_api::*;","highlight_start":9,"highlight_end":30}],"label":"the name `VxGraphParameter` in the type namespace is first re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-ffi/src/lib.rs","byte_start":324,"byte_end":353,"line_start":9,"line_end":9,"column_start":9,"column_end":38,"is_primary":false,"text":[{"text":"pub use openvx_core::unified_c_api::*;","highlight_start":9,"highlight_end":38}],"label":"but the name `VxGraphParameter` in the type namespace is also re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: ambiguous glob re-exports\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-ffi/src/lib.rs:7:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m7\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mthe name `VxGraphParameter` in the type namespace is first re-exported here\u001b[0m\n\u001b[1m\u001b[94m8\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api_data::*;\n\u001b[1m\u001b[94m9\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::unified_c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m-----------------------------\u001b[0m \u001b[1m\u001b[94mbut the name `VxGraphParameter` in the type namespace is also re-exported here\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"ambiguous glob re-exports","code":{"code":"ambiguous_glob_reexports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-ffi/src/lib.rs","byte_start":257,"byte_end":278,"line_start":7,"line_end":7,"column_start":9,"column_end":30,"is_primary":true,"text":[{"text":"pub use openvx_core::c_api::*;","highlight_start":9,"highlight_end":30}],"label":"the name `vx_graph_parameter` in the type namespace is first re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-ffi/src/lib.rs","byte_start":324,"byte_end":353,"line_start":9,"line_end":9,"column_start":9,"column_end":38,"is_primary":false,"text":[{"text":"pub use openvx_core::unified_c_api::*;","highlight_start":9,"highlight_end":38}],"label":"but the name `vx_graph_parameter` in the type namespace is also re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: ambiguous glob re-exports\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-ffi/src/lib.rs:7:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m7\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mthe name `vx_graph_parameter` in the type namespace is first re-exported here\u001b[0m\n\u001b[1m\u001b[94m8\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api_data::*;\n\u001b[1m\u001b[94m9\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::unified_c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m-----------------------------\u001b[0m \u001b[1m\u001b[94mbut the name `vx_graph_parameter` in the type namespace is also re-exported here\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"ambiguous glob re-exports","code":{"code":"ambiguous_glob_reexports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-ffi/src/lib.rs","byte_start":257,"byte_end":278,"line_start":7,"line_end":7,"column_start":9,"column_end":30,"is_primary":true,"text":[{"text":"pub use openvx_core::c_api::*;","highlight_start":9,"highlight_end":30}],"label":"the name `VxImport` in the type namespace is first re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-ffi/src/lib.rs","byte_start":324,"byte_end":353,"line_start":9,"line_end":9,"column_start":9,"column_end":38,"is_primary":false,"text":[{"text":"pub use openvx_core::unified_c_api::*;","highlight_start":9,"highlight_end":38}],"label":"but the name `VxImport` in the type namespace is also re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: ambiguous glob re-exports\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-ffi/src/lib.rs:7:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m7\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mthe name `VxImport` in the type namespace is first re-exported here\u001b[0m\n\u001b[1m\u001b[94m8\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api_data::*;\n\u001b[1m\u001b[94m9\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::unified_c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m-----------------------------\u001b[0m \u001b[1m\u001b[94mbut the name `VxImport` in the type namespace is also re-exported here\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"ambiguous glob re-exports","code":{"code":"ambiguous_glob_reexports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-ffi/src/lib.rs","byte_start":257,"byte_end":278,"line_start":7,"line_end":7,"column_start":9,"column_end":30,"is_primary":true,"text":[{"text":"pub use openvx_core::c_api::*;","highlight_start":9,"highlight_end":30}],"label":"the name `vx_import` in the type namespace is first re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-ffi/src/lib.rs","byte_start":324,"byte_end":353,"line_start":9,"line_end":9,"column_start":9,"column_end":38,"is_primary":false,"text":[{"text":"pub use openvx_core::unified_c_api::*;","highlight_start":9,"highlight_end":38}],"label":"but the name `vx_import` in the type namespace is also re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: ambiguous glob re-exports\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-ffi/src/lib.rs:7:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m7\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mthe name `vx_import` in the type namespace is first re-exported here\u001b[0m\n\u001b[1m\u001b[94m8\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api_data::*;\n\u001b[1m\u001b[94m9\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::unified_c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m-----------------------------\u001b[0m \u001b[1m\u001b[94mbut the name `vx_import` in the type namespace is also re-exported here\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"ambiguous glob re-exports","code":{"code":"ambiguous_glob_reexports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-ffi/src/lib.rs","byte_start":257,"byte_end":278,"line_start":7,"line_end":7,"column_start":9,"column_end":30,"is_primary":true,"text":[{"text":"pub use openvx_core::c_api::*;","highlight_start":9,"highlight_end":30}],"label":"the name `VxTarget` in the type namespace is first re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-ffi/src/lib.rs","byte_start":324,"byte_end":353,"line_start":9,"line_end":9,"column_start":9,"column_end":38,"is_primary":false,"text":[{"text":"pub use openvx_core::unified_c_api::*;","highlight_start":9,"highlight_end":38}],"label":"but the name `VxTarget` in the type namespace is also re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: ambiguous glob re-exports\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-ffi/src/lib.rs:7:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m7\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mthe name `VxTarget` in the type namespace is first re-exported here\u001b[0m\n\u001b[1m\u001b[94m8\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api_data::*;\n\u001b[1m\u001b[94m9\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::unified_c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m-----------------------------\u001b[0m \u001b[1m\u001b[94mbut the name `VxTarget` in the type namespace is also re-exported here\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"ambiguous glob re-exports","code":{"code":"ambiguous_glob_reexports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-ffi/src/lib.rs","byte_start":257,"byte_end":278,"line_start":7,"line_end":7,"column_start":9,"column_end":30,"is_primary":true,"text":[{"text":"pub use openvx_core::c_api::*;","highlight_start":9,"highlight_end":30}],"label":"the name `vx_target` in the type namespace is first re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-ffi/src/lib.rs","byte_start":324,"byte_end":353,"line_start":9,"line_end":9,"column_start":9,"column_end":38,"is_primary":false,"text":[{"text":"pub use openvx_core::unified_c_api::*;","highlight_start":9,"highlight_end":38}],"label":"but the name `vx_target` in the type namespace is also re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: ambiguous glob re-exports\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-ffi/src/lib.rs:7:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m7\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mthe name `vx_target` in the type namespace is first re-exported here\u001b[0m\n\u001b[1m\u001b[94m8\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api_data::*;\n\u001b[1m\u001b[94m9\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::unified_c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m-----------------------------\u001b[0m \u001b[1m\u001b[94mbut the name `vx_target` in the type namespace is also re-exported here\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"ambiguous glob re-exports","code":{"code":"ambiguous_glob_reexports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-ffi/src/lib.rs","byte_start":257,"byte_end":278,"line_start":7,"line_end":7,"column_start":9,"column_end":30,"is_primary":true,"text":[{"text":"pub use openvx_core::c_api::*;","highlight_start":9,"highlight_end":30}],"label":"the name `CONTEXTS` in the value namespace is first re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-ffi/src/lib.rs","byte_start":324,"byte_end":353,"line_start":9,"line_end":9,"column_start":9,"column_end":38,"is_primary":false,"text":[{"text":"pub use openvx_core::unified_c_api::*;","highlight_start":9,"highlight_end":38}],"label":"but the name `CONTEXTS` in the value namespace is also re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: ambiguous glob re-exports\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-ffi/src/lib.rs:7:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m7\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mthe name `CONTEXTS` in the value namespace is first re-exported here\u001b[0m\n\u001b[1m\u001b[94m8\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api_data::*;\n\u001b[1m\u001b[94m9\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::unified_c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m-----------------------------\u001b[0m \u001b[1m\u001b[94mbut the name `CONTEXTS` in the value namespace is also re-exported here\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"ambiguous glob re-exports","code":{"code":"ambiguous_glob_reexports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-ffi/src/lib.rs","byte_start":257,"byte_end":278,"line_start":7,"line_end":7,"column_start":9,"column_end":30,"is_primary":true,"text":[{"text":"pub use openvx_core::c_api::*;","highlight_start":9,"highlight_end":30}],"label":"the name `KERNELS` in the value namespace is first re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-ffi/src/lib.rs","byte_start":324,"byte_end":353,"line_start":9,"line_end":9,"column_start":9,"column_end":38,"is_primary":false,"text":[{"text":"pub use openvx_core::unified_c_api::*;","highlight_start":9,"highlight_end":38}],"label":"but the name `KERNELS` in the value namespace is also re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: ambiguous glob re-exports\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-ffi/src/lib.rs:7:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m7\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mthe name `KERNELS` in the value namespace is first re-exported here\u001b[0m\n\u001b[1m\u001b[94m8\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api_data::*;\n\u001b[1m\u001b[94m9\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::unified_c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m-----------------------------\u001b[0m \u001b[1m\u001b[94mbut the name `KERNELS` in the value namespace is also re-exported here\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"ambiguous glob re-exports","code":{"code":"ambiguous_glob_reexports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-ffi/src/lib.rs","byte_start":257,"byte_end":278,"line_start":7,"line_end":7,"column_start":9,"column_end":30,"is_primary":true,"text":[{"text":"pub use openvx_core::c_api::*;","highlight_start":9,"highlight_end":30}],"label":"the name `VX_TYPE_CONTEXT` in the value namespace is first re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-ffi/src/lib.rs","byte_start":324,"byte_end":353,"line_start":9,"line_end":9,"column_start":9,"column_end":38,"is_primary":false,"text":[{"text":"pub use openvx_core::unified_c_api::*;","highlight_start":9,"highlight_end":38}],"label":"but the name `VX_TYPE_CONTEXT` in the value namespace is also re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: ambiguous glob re-exports\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-ffi/src/lib.rs:7:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m7\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mthe name `VX_TYPE_CONTEXT` in the value namespace is first re-exported here\u001b[0m\n\u001b[1m\u001b[94m8\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api_data::*;\n\u001b[1m\u001b[94m9\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::unified_c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m-----------------------------\u001b[0m \u001b[1m\u001b[94mbut the name `VX_TYPE_CONTEXT` in the value namespace is also re-exported here\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"ambiguous glob re-exports","code":{"code":"ambiguous_glob_reexports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-ffi/src/lib.rs","byte_start":257,"byte_end":278,"line_start":7,"line_end":7,"column_start":9,"column_end":30,"is_primary":true,"text":[{"text":"pub use openvx_core::c_api::*;","highlight_start":9,"highlight_end":30}],"label":"the name `VX_TYPE_GRAPH` in the value namespace is first re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-ffi/src/lib.rs","byte_start":324,"byte_end":353,"line_start":9,"line_end":9,"column_start":9,"column_end":38,"is_primary":false,"text":[{"text":"pub use openvx_core::unified_c_api::*;","highlight_start":9,"highlight_end":38}],"label":"but the name `VX_TYPE_GRAPH` in the value namespace is also re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: ambiguous glob re-exports\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-ffi/src/lib.rs:7:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m7\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mthe name `VX_TYPE_GRAPH` in the value namespace is first re-exported here\u001b[0m\n\u001b[1m\u001b[94m8\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api_data::*;\n\u001b[1m\u001b[94m9\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::unified_c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m-----------------------------\u001b[0m \u001b[1m\u001b[94mbut the name `VX_TYPE_GRAPH` in the value namespace is also re-exported here\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"ambiguous glob re-exports","code":{"code":"ambiguous_glob_reexports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-ffi/src/lib.rs","byte_start":257,"byte_end":278,"line_start":7,"line_end":7,"column_start":9,"column_end":30,"is_primary":true,"text":[{"text":"pub use openvx_core::c_api::*;","highlight_start":9,"highlight_end":30}],"label":"the name `VX_TYPE_NODE` in the value namespace is first re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-ffi/src/lib.rs","byte_start":324,"byte_end":353,"line_start":9,"line_end":9,"column_start":9,"column_end":38,"is_primary":false,"text":[{"text":"pub use openvx_core::unified_c_api::*;","highlight_start":9,"highlight_end":38}],"label":"but the name `VX_TYPE_NODE` in the value namespace is also re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: ambiguous glob re-exports\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-ffi/src/lib.rs:7:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m7\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mthe name `VX_TYPE_NODE` in the value namespace is first re-exported here\u001b[0m\n\u001b[1m\u001b[94m8\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api_data::*;\n\u001b[1m\u001b[94m9\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::unified_c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m-----------------------------\u001b[0m \u001b[1m\u001b[94mbut the name `VX_TYPE_NODE` in the value namespace is also re-exported here\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"ambiguous glob re-exports","code":{"code":"ambiguous_glob_reexports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-ffi/src/lib.rs","byte_start":257,"byte_end":278,"line_start":7,"line_end":7,"column_start":9,"column_end":30,"is_primary":true,"text":[{"text":"pub use openvx_core::c_api::*;","highlight_start":9,"highlight_end":30}],"label":"the name `VX_TYPE_KERNEL` in the value namespace is first re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-ffi/src/lib.rs","byte_start":324,"byte_end":353,"line_start":9,"line_end":9,"column_start":9,"column_end":38,"is_primary":false,"text":[{"text":"pub use openvx_core::unified_c_api::*;","highlight_start":9,"highlight_end":38}],"label":"but the name `VX_TYPE_KERNEL` in the value namespace is also re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: ambiguous glob re-exports\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-ffi/src/lib.rs:7:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m7\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mthe name `VX_TYPE_KERNEL` in the value namespace is first re-exported here\u001b[0m\n\u001b[1m\u001b[94m8\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api_data::*;\n\u001b[1m\u001b[94m9\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::unified_c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m-----------------------------\u001b[0m \u001b[1m\u001b[94mbut the name `VX_TYPE_KERNEL` in the value namespace is also re-exported here\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"ambiguous glob re-exports","code":{"code":"ambiguous_glob_reexports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-ffi/src/lib.rs","byte_start":257,"byte_end":278,"line_start":7,"line_end":7,"column_start":9,"column_end":30,"is_primary":true,"text":[{"text":"pub use openvx_core::c_api::*;","highlight_start":9,"highlight_end":30}],"label":"the name `VX_TYPE_PARAMETER` in the value namespace is first re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-ffi/src/lib.rs","byte_start":324,"byte_end":353,"line_start":9,"line_end":9,"column_start":9,"column_end":38,"is_primary":false,"text":[{"text":"pub use openvx_core::unified_c_api::*;","highlight_start":9,"highlight_end":38}],"label":"but the name `VX_TYPE_PARAMETER` in the value namespace is also re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: ambiguous glob re-exports\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-ffi/src/lib.rs:7:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m7\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mthe name `VX_TYPE_PARAMETER` in the value namespace is first re-exported here\u001b[0m\n\u001b[1m\u001b[94m8\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api_data::*;\n\u001b[1m\u001b[94m9\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::unified_c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m-----------------------------\u001b[0m \u001b[1m\u001b[94mbut the name `VX_TYPE_PARAMETER` in the value namespace is also re-exported here\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"ambiguous glob re-exports","code":{"code":"ambiguous_glob_reexports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-ffi/src/lib.rs","byte_start":257,"byte_end":278,"line_start":7,"line_end":7,"column_start":9,"column_end":30,"is_primary":true,"text":[{"text":"pub use openvx_core::c_api::*;","highlight_start":9,"highlight_end":30}],"label":"the name `VX_TYPE_SCALAR` in the value namespace is first re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-ffi/src/lib.rs","byte_start":324,"byte_end":353,"line_start":9,"line_end":9,"column_start":9,"column_end":38,"is_primary":false,"text":[{"text":"pub use openvx_core::unified_c_api::*;","highlight_start":9,"highlight_end":38}],"label":"but the name `VX_TYPE_SCALAR` in the value namespace is also re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: ambiguous glob re-exports\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-ffi/src/lib.rs:7:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m7\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mthe name `VX_TYPE_SCALAR` in the value namespace is first re-exported here\u001b[0m\n\u001b[1m\u001b[94m8\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api_data::*;\n\u001b[1m\u001b[94m9\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::unified_c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m-----------------------------\u001b[0m \u001b[1m\u001b[94mbut the name `VX_TYPE_SCALAR` in the value namespace is also re-exported here\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"ambiguous glob re-exports","code":{"code":"ambiguous_glob_reexports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-ffi/src/lib.rs","byte_start":257,"byte_end":278,"line_start":7,"line_end":7,"column_start":9,"column_end":30,"is_primary":true,"text":[{"text":"pub use openvx_core::c_api::*;","highlight_start":9,"highlight_end":30}],"label":"the name `VX_TYPE_IMAGE` in the value namespace is first re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-ffi/src/lib.rs","byte_start":324,"byte_end":353,"line_start":9,"line_end":9,"column_start":9,"column_end":38,"is_primary":false,"text":[{"text":"pub use openvx_core::unified_c_api::*;","highlight_start":9,"highlight_end":38}],"label":"but the name `VX_TYPE_IMAGE` in the value namespace is also re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: ambiguous glob re-exports\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-ffi/src/lib.rs:7:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m7\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mthe name `VX_TYPE_IMAGE` in the value namespace is first re-exported here\u001b[0m\n\u001b[1m\u001b[94m8\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api_data::*;\n\u001b[1m\u001b[94m9\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::unified_c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m-----------------------------\u001b[0m \u001b[1m\u001b[94mbut the name `VX_TYPE_IMAGE` in the value namespace is also re-exported here\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"ambiguous glob re-exports","code":{"code":"ambiguous_glob_reexports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-ffi/src/lib.rs","byte_start":257,"byte_end":278,"line_start":7,"line_end":7,"column_start":9,"column_end":30,"is_primary":true,"text":[{"text":"pub use openvx_core::c_api::*;","highlight_start":9,"highlight_end":30}],"label":"the name `VX_TYPE_ARRAY` in the value namespace is first re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-ffi/src/lib.rs","byte_start":324,"byte_end":353,"line_start":9,"line_end":9,"column_start":9,"column_end":38,"is_primary":false,"text":[{"text":"pub use openvx_core::unified_c_api::*;","highlight_start":9,"highlight_end":38}],"label":"but the name `VX_TYPE_ARRAY` in the value namespace is also re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: ambiguous glob re-exports\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-ffi/src/lib.rs:7:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m7\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mthe name `VX_TYPE_ARRAY` in the value namespace is first re-exported here\u001b[0m\n\u001b[1m\u001b[94m8\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api_data::*;\n\u001b[1m\u001b[94m9\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::unified_c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m-----------------------------\u001b[0m \u001b[1m\u001b[94mbut the name `VX_TYPE_ARRAY` in the value namespace is also re-exported here\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"ambiguous glob re-exports","code":{"code":"ambiguous_glob_reexports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-ffi/src/lib.rs","byte_start":257,"byte_end":278,"line_start":7,"line_end":7,"column_start":9,"column_end":30,"is_primary":true,"text":[{"text":"pub use openvx_core::c_api::*;","highlight_start":9,"highlight_end":30}],"label":"the name `VX_TYPE_MATRIX` in the value namespace is first re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-ffi/src/lib.rs","byte_start":324,"byte_end":353,"line_start":9,"line_end":9,"column_start":9,"column_end":38,"is_primary":false,"text":[{"text":"pub use openvx_core::unified_c_api::*;","highlight_start":9,"highlight_end":38}],"label":"but the name `VX_TYPE_MATRIX` in the value namespace is also re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: ambiguous glob re-exports\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-ffi/src/lib.rs:7:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m7\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mthe name `VX_TYPE_MATRIX` in the value namespace is first re-exported here\u001b[0m\n\u001b[1m\u001b[94m8\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api_data::*;\n\u001b[1m\u001b[94m9\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::unified_c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m-----------------------------\u001b[0m \u001b[1m\u001b[94mbut the name `VX_TYPE_MATRIX` in the value namespace is also re-exported here\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"ambiguous glob re-exports","code":{"code":"ambiguous_glob_reexports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-ffi/src/lib.rs","byte_start":257,"byte_end":278,"line_start":7,"line_end":7,"column_start":9,"column_end":30,"is_primary":true,"text":[{"text":"pub use openvx_core::c_api::*;","highlight_start":9,"highlight_end":30}],"label":"the name `VX_TYPE_CONVOLUTION` in the value namespace is first re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-ffi/src/lib.rs","byte_start":324,"byte_end":353,"line_start":9,"line_end":9,"column_start":9,"column_end":38,"is_primary":false,"text":[{"text":"pub use openvx_core::unified_c_api::*;","highlight_start":9,"highlight_end":38}],"label":"but the name `VX_TYPE_CONVOLUTION` in the value namespace is also re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: ambiguous glob re-exports\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-ffi/src/lib.rs:7:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m7\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mthe name `VX_TYPE_CONVOLUTION` in the value namespace is first re-exported here\u001b[0m\n\u001b[1m\u001b[94m8\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api_data::*;\n\u001b[1m\u001b[94m9\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::unified_c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m-----------------------------\u001b[0m \u001b[1m\u001b[94mbut the name `VX_TYPE_CONVOLUTION` in the value namespace is also re-exported here\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"ambiguous glob re-exports","code":{"code":"ambiguous_glob_reexports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-ffi/src/lib.rs","byte_start":257,"byte_end":278,"line_start":7,"line_end":7,"column_start":9,"column_end":30,"is_primary":true,"text":[{"text":"pub use openvx_core::c_api::*;","highlight_start":9,"highlight_end":30}],"label":"the name `VX_TYPE_THRESHOLD` in the value namespace is first re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-ffi/src/lib.rs","byte_start":324,"byte_end":353,"line_start":9,"line_end":9,"column_start":9,"column_end":38,"is_primary":false,"text":[{"text":"pub use openvx_core::unified_c_api::*;","highlight_start":9,"highlight_end":38}],"label":"but the name `VX_TYPE_THRESHOLD` in the value namespace is also re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: ambiguous glob re-exports\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-ffi/src/lib.rs:7:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m7\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mthe name `VX_TYPE_THRESHOLD` in the value namespace is first re-exported here\u001b[0m\n\u001b[1m\u001b[94m8\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api_data::*;\n\u001b[1m\u001b[94m9\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::unified_c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m-----------------------------\u001b[0m \u001b[1m\u001b[94mbut the name `VX_TYPE_THRESHOLD` in the value namespace is also re-exported here\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"ambiguous glob re-exports","code":{"code":"ambiguous_glob_reexports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-ffi/src/lib.rs","byte_start":257,"byte_end":278,"line_start":7,"line_end":7,"column_start":9,"column_end":30,"is_primary":true,"text":[{"text":"pub use openvx_core::c_api::*;","highlight_start":9,"highlight_end":30}],"label":"the name `VX_TYPE_PYRAMID` in the value namespace is first re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-ffi/src/lib.rs","byte_start":324,"byte_end":353,"line_start":9,"line_end":9,"column_start":9,"column_end":38,"is_primary":false,"text":[{"text":"pub use openvx_core::unified_c_api::*;","highlight_start":9,"highlight_end":38}],"label":"but the name `VX_TYPE_PYRAMID` in the value namespace is also re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: ambiguous glob re-exports\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-ffi/src/lib.rs:7:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m7\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mthe name `VX_TYPE_PYRAMID` in the value namespace is first re-exported here\u001b[0m\n\u001b[1m\u001b[94m8\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api_data::*;\n\u001b[1m\u001b[94m9\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::unified_c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m-----------------------------\u001b[0m \u001b[1m\u001b[94mbut the name `VX_TYPE_PYRAMID` in the value namespace is also re-exported here\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"ambiguous glob re-exports","code":{"code":"ambiguous_glob_reexports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-ffi/src/lib.rs","byte_start":257,"byte_end":278,"line_start":7,"line_end":7,"column_start":9,"column_end":30,"is_primary":true,"text":[{"text":"pub use openvx_core::c_api::*;","highlight_start":9,"highlight_end":30}],"label":"the name `VX_TYPE_LUT` in the value namespace is first re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-ffi/src/lib.rs","byte_start":324,"byte_end":353,"line_start":9,"line_end":9,"column_start":9,"column_end":38,"is_primary":false,"text":[{"text":"pub use openvx_core::unified_c_api::*;","highlight_start":9,"highlight_end":38}],"label":"but the name `VX_TYPE_LUT` in the value namespace is also re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: ambiguous glob re-exports\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-ffi/src/lib.rs:7:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m7\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mthe name `VX_TYPE_LUT` in the value namespace is first re-exported here\u001b[0m\n\u001b[1m\u001b[94m8\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api_data::*;\n\u001b[1m\u001b[94m9\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::unified_c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m-----------------------------\u001b[0m \u001b[1m\u001b[94mbut the name `VX_TYPE_LUT` in the value namespace is also re-exported here\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"ambiguous glob re-exports","code":{"code":"ambiguous_glob_reexports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-ffi/src/lib.rs","byte_start":257,"byte_end":278,"line_start":7,"line_end":7,"column_start":9,"column_end":30,"is_primary":true,"text":[{"text":"pub use openvx_core::c_api::*;","highlight_start":9,"highlight_end":30}],"label":"the name `VX_PARAMETER_INDEX` in the value namespace is first re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-ffi/src/lib.rs","byte_start":324,"byte_end":353,"line_start":9,"line_end":9,"column_start":9,"column_end":38,"is_primary":false,"text":[{"text":"pub use openvx_core::unified_c_api::*;","highlight_start":9,"highlight_end":38}],"label":"but the name `VX_PARAMETER_INDEX` in the value namespace is also re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: ambiguous glob re-exports\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-ffi/src/lib.rs:7:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m7\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mthe name `VX_PARAMETER_INDEX` in the value namespace is first re-exported here\u001b[0m\n\u001b[1m\u001b[94m8\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api_data::*;\n\u001b[1m\u001b[94m9\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::unified_c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m-----------------------------\u001b[0m \u001b[1m\u001b[94mbut the name `VX_PARAMETER_INDEX` in the value namespace is also re-exported here\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"ambiguous glob re-exports","code":{"code":"ambiguous_glob_reexports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-ffi/src/lib.rs","byte_start":257,"byte_end":278,"line_start":7,"line_end":7,"column_start":9,"column_end":30,"is_primary":true,"text":[{"text":"pub use openvx_core::c_api::*;","highlight_start":9,"highlight_end":30}],"label":"the name `VX_PARAMETER_DIRECTION` in the value namespace is first re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-ffi/src/lib.rs","byte_start":324,"byte_end":353,"line_start":9,"line_end":9,"column_start":9,"column_end":38,"is_primary":false,"text":[{"text":"pub use openvx_core::unified_c_api::*;","highlight_start":9,"highlight_end":38}],"label":"but the name `VX_PARAMETER_DIRECTION` in the value namespace is also re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: ambiguous glob re-exports\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-ffi/src/lib.rs:7:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m7\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mthe name `VX_PARAMETER_DIRECTION` in the value namespace is first re-exported here\u001b[0m\n\u001b[1m\u001b[94m8\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api_data::*;\n\u001b[1m\u001b[94m9\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::unified_c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m-----------------------------\u001b[0m \u001b[1m\u001b[94mbut the name `VX_PARAMETER_DIRECTION` in the value namespace is also re-exported here\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"ambiguous glob re-exports","code":{"code":"ambiguous_glob_reexports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-ffi/src/lib.rs","byte_start":257,"byte_end":278,"line_start":7,"line_end":7,"column_start":9,"column_end":30,"is_primary":true,"text":[{"text":"pub use openvx_core::c_api::*;","highlight_start":9,"highlight_end":30}],"label":"the name `VX_PARAMETER_TYPE` in the value namespace is first re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-ffi/src/lib.rs","byte_start":324,"byte_end":353,"line_start":9,"line_end":9,"column_start":9,"column_end":38,"is_primary":false,"text":[{"text":"pub use openvx_core::unified_c_api::*;","highlight_start":9,"highlight_end":38}],"label":"but the name `VX_PARAMETER_TYPE` in the value namespace is also re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: ambiguous glob re-exports\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-ffi/src/lib.rs:7:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m7\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mthe name `VX_PARAMETER_TYPE` in the value namespace is first re-exported here\u001b[0m\n\u001b[1m\u001b[94m8\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api_data::*;\n\u001b[1m\u001b[94m9\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::unified_c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m-----------------------------\u001b[0m \u001b[1m\u001b[94mbut the name `VX_PARAMETER_TYPE` in the value namespace is also re-exported here\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"ambiguous glob re-exports","code":{"code":"ambiguous_glob_reexports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-ffi/src/lib.rs","byte_start":257,"byte_end":278,"line_start":7,"line_end":7,"column_start":9,"column_end":30,"is_primary":true,"text":[{"text":"pub use openvx_core::c_api::*;","highlight_start":9,"highlight_end":30}],"label":"the name `VX_PARAMETER_REF` in the value namespace is first re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-ffi/src/lib.rs","byte_start":324,"byte_end":353,"line_start":9,"line_end":9,"column_start":9,"column_end":38,"is_primary":false,"text":[{"text":"pub use openvx_core::unified_c_api::*;","highlight_start":9,"highlight_end":38}],"label":"but the name `VX_PARAMETER_REF` in the value namespace is also re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: ambiguous glob re-exports\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-ffi/src/lib.rs:7:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m7\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mthe name `VX_PARAMETER_REF` in the value namespace is first re-exported here\u001b[0m\n\u001b[1m\u001b[94m8\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api_data::*;\n\u001b[1m\u001b[94m9\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::unified_c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m-----------------------------\u001b[0m \u001b[1m\u001b[94mbut the name `VX_PARAMETER_REF` in the value namespace is also re-exported here\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"ambiguous glob re-exports","code":{"code":"ambiguous_glob_reexports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-ffi/src/lib.rs","byte_start":257,"byte_end":278,"line_start":7,"line_end":7,"column_start":9,"column_end":30,"is_primary":true,"text":[{"text":"pub use openvx_core::c_api::*;","highlight_start":9,"highlight_end":30}],"label":"the name `VX_DF_IMAGE_U8` in the value namespace is first re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-ffi/src/lib.rs","byte_start":324,"byte_end":353,"line_start":9,"line_end":9,"column_start":9,"column_end":38,"is_primary":false,"text":[{"text":"pub use openvx_core::unified_c_api::*;","highlight_start":9,"highlight_end":38}],"label":"but the name `VX_DF_IMAGE_U8` in the value namespace is also re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: ambiguous glob re-exports\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-ffi/src/lib.rs:7:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m7\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mthe name `VX_DF_IMAGE_U8` in the value namespace is first re-exported here\u001b[0m\n\u001b[1m\u001b[94m8\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api_data::*;\n\u001b[1m\u001b[94m9\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::unified_c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m-----------------------------\u001b[0m \u001b[1m\u001b[94mbut the name `VX_DF_IMAGE_U8` in the value namespace is also re-exported here\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"ambiguous glob re-exports","code":{"code":"ambiguous_glob_reexports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-ffi/src/lib.rs","byte_start":257,"byte_end":278,"line_start":7,"line_end":7,"column_start":9,"column_end":30,"is_primary":true,"text":[{"text":"pub use openvx_core::c_api::*;","highlight_start":9,"highlight_end":30}],"label":"the name `VX_DF_IMAGE_U16` in the value namespace is first re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-ffi/src/lib.rs","byte_start":324,"byte_end":353,"line_start":9,"line_end":9,"column_start":9,"column_end":38,"is_primary":false,"text":[{"text":"pub use openvx_core::unified_c_api::*;","highlight_start":9,"highlight_end":38}],"label":"but the name `VX_DF_IMAGE_U16` in the value namespace is also re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: ambiguous glob re-exports\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-ffi/src/lib.rs:7:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m7\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mthe name `VX_DF_IMAGE_U16` in the value namespace is first re-exported here\u001b[0m\n\u001b[1m\u001b[94m8\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api_data::*;\n\u001b[1m\u001b[94m9\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::unified_c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m-----------------------------\u001b[0m \u001b[1m\u001b[94mbut the name `VX_DF_IMAGE_U16` in the value namespace is also re-exported here\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"ambiguous glob re-exports","code":{"code":"ambiguous_glob_reexports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-ffi/src/lib.rs","byte_start":257,"byte_end":278,"line_start":7,"line_end":7,"column_start":9,"column_end":30,"is_primary":true,"text":[{"text":"pub use openvx_core::c_api::*;","highlight_start":9,"highlight_end":30}],"label":"the name `VX_DF_IMAGE_S16` in the value namespace is first re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-ffi/src/lib.rs","byte_start":324,"byte_end":353,"line_start":9,"line_end":9,"column_start":9,"column_end":38,"is_primary":false,"text":[{"text":"pub use openvx_core::unified_c_api::*;","highlight_start":9,"highlight_end":38}],"label":"but the name `VX_DF_IMAGE_S16` in the value namespace is also re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: ambiguous glob re-exports\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-ffi/src/lib.rs:7:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m7\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mthe name `VX_DF_IMAGE_S16` in the value namespace is first re-exported here\u001b[0m\n\u001b[1m\u001b[94m8\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api_data::*;\n\u001b[1m\u001b[94m9\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::unified_c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m-----------------------------\u001b[0m \u001b[1m\u001b[94mbut the name `VX_DF_IMAGE_S16` in the value namespace is also re-exported here\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"ambiguous glob re-exports","code":{"code":"ambiguous_glob_reexports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-ffi/src/lib.rs","byte_start":257,"byte_end":278,"line_start":7,"line_end":7,"column_start":9,"column_end":30,"is_primary":true,"text":[{"text":"pub use openvx_core::c_api::*;","highlight_start":9,"highlight_end":30}],"label":"the name `VX_DF_IMAGE_U32` in the value namespace is first re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-ffi/src/lib.rs","byte_start":324,"byte_end":353,"line_start":9,"line_end":9,"column_start":9,"column_end":38,"is_primary":false,"text":[{"text":"pub use openvx_core::unified_c_api::*;","highlight_start":9,"highlight_end":38}],"label":"but the name `VX_DF_IMAGE_U32` in the value namespace is also re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: ambiguous glob re-exports\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-ffi/src/lib.rs:7:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m7\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mthe name `VX_DF_IMAGE_U32` in the value namespace is first re-exported here\u001b[0m\n\u001b[1m\u001b[94m8\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api_data::*;\n\u001b[1m\u001b[94m9\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::unified_c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m-----------------------------\u001b[0m \u001b[1m\u001b[94mbut the name `VX_DF_IMAGE_U32` in the value namespace is also re-exported here\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"ambiguous glob re-exports","code":{"code":"ambiguous_glob_reexports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-ffi/src/lib.rs","byte_start":257,"byte_end":278,"line_start":7,"line_end":7,"column_start":9,"column_end":30,"is_primary":true,"text":[{"text":"pub use openvx_core::c_api::*;","highlight_start":9,"highlight_end":30}],"label":"the name `VX_DF_IMAGE_S32` in the value namespace is first re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-ffi/src/lib.rs","byte_start":324,"byte_end":353,"line_start":9,"line_end":9,"column_start":9,"column_end":38,"is_primary":false,"text":[{"text":"pub use openvx_core::unified_c_api::*;","highlight_start":9,"highlight_end":38}],"label":"but the name `VX_DF_IMAGE_S32` in the value namespace is also re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: ambiguous glob re-exports\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-ffi/src/lib.rs:7:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m7\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mthe name `VX_DF_IMAGE_S32` in the value namespace is first re-exported here\u001b[0m\n\u001b[1m\u001b[94m8\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api_data::*;\n\u001b[1m\u001b[94m9\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::unified_c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m-----------------------------\u001b[0m \u001b[1m\u001b[94mbut the name `VX_DF_IMAGE_S32` in the value namespace is also re-exported here\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"ambiguous glob re-exports","code":{"code":"ambiguous_glob_reexports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-ffi/src/lib.rs","byte_start":257,"byte_end":278,"line_start":7,"line_end":7,"column_start":9,"column_end":30,"is_primary":true,"text":[{"text":"pub use openvx_core::c_api::*;","highlight_start":9,"highlight_end":30}],"label":"the name `VX_DF_IMAGE_RGB` in the value namespace is first re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-ffi/src/lib.rs","byte_start":324,"byte_end":353,"line_start":9,"line_end":9,"column_start":9,"column_end":38,"is_primary":false,"text":[{"text":"pub use openvx_core::unified_c_api::*;","highlight_start":9,"highlight_end":38}],"label":"but the name `VX_DF_IMAGE_RGB` in the value namespace is also re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: ambiguous glob re-exports\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-ffi/src/lib.rs:7:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m7\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mthe name `VX_DF_IMAGE_RGB` in the value namespace is first re-exported here\u001b[0m\n\u001b[1m\u001b[94m8\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api_data::*;\n\u001b[1m\u001b[94m9\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::unified_c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m-----------------------------\u001b[0m \u001b[1m\u001b[94mbut the name `VX_DF_IMAGE_RGB` in the value namespace is also re-exported here\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"ambiguous glob re-exports","code":{"code":"ambiguous_glob_reexports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-ffi/src/lib.rs","byte_start":257,"byte_end":278,"line_start":7,"line_end":7,"column_start":9,"column_end":30,"is_primary":true,"text":[{"text":"pub use openvx_core::c_api::*;","highlight_start":9,"highlight_end":30}],"label":"the name `VX_DF_IMAGE_RGBX` in the value namespace is first re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-ffi/src/lib.rs","byte_start":324,"byte_end":353,"line_start":9,"line_end":9,"column_start":9,"column_end":38,"is_primary":false,"text":[{"text":"pub use openvx_core::unified_c_api::*;","highlight_start":9,"highlight_end":38}],"label":"but the name `VX_DF_IMAGE_RGBX` in the value namespace is also re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: ambiguous glob re-exports\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-ffi/src/lib.rs:7:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m7\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mthe name `VX_DF_IMAGE_RGBX` in the value namespace is first re-exported here\u001b[0m\n\u001b[1m\u001b[94m8\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api_data::*;\n\u001b[1m\u001b[94m9\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::unified_c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m-----------------------------\u001b[0m \u001b[1m\u001b[94mbut the name `VX_DF_IMAGE_RGBX` in the value namespace is also re-exported here\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"ambiguous glob re-exports","code":{"code":"ambiguous_glob_reexports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-ffi/src/lib.rs","byte_start":257,"byte_end":278,"line_start":7,"line_end":7,"column_start":9,"column_end":30,"is_primary":true,"text":[{"text":"pub use openvx_core::c_api::*;","highlight_start":9,"highlight_end":30}],"label":"the name `VX_DF_IMAGE_RGBA` in the value namespace is first re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-ffi/src/lib.rs","byte_start":324,"byte_end":353,"line_start":9,"line_end":9,"column_start":9,"column_end":38,"is_primary":false,"text":[{"text":"pub use openvx_core::unified_c_api::*;","highlight_start":9,"highlight_end":38}],"label":"but the name `VX_DF_IMAGE_RGBA` in the value namespace is also re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: ambiguous glob re-exports\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-ffi/src/lib.rs:7:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m7\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mthe name `VX_DF_IMAGE_RGBA` in the value namespace is first re-exported here\u001b[0m\n\u001b[1m\u001b[94m8\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api_data::*;\n\u001b[1m\u001b[94m9\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::unified_c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m-----------------------------\u001b[0m \u001b[1m\u001b[94mbut the name `VX_DF_IMAGE_RGBA` in the value namespace is also re-exported here\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"ambiguous glob re-exports","code":{"code":"ambiguous_glob_reexports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-ffi/src/lib.rs","byte_start":257,"byte_end":278,"line_start":7,"line_end":7,"column_start":9,"column_end":30,"is_primary":true,"text":[{"text":"pub use openvx_core::c_api::*;","highlight_start":9,"highlight_end":30}],"label":"the name `VX_DF_IMAGE_NV12` in the value namespace is first re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-ffi/src/lib.rs","byte_start":324,"byte_end":353,"line_start":9,"line_end":9,"column_start":9,"column_end":38,"is_primary":false,"text":[{"text":"pub use openvx_core::unified_c_api::*;","highlight_start":9,"highlight_end":38}],"label":"but the name `VX_DF_IMAGE_NV12` in the value namespace is also re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: ambiguous glob re-exports\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-ffi/src/lib.rs:7:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m7\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mthe name `VX_DF_IMAGE_NV12` in the value namespace is first re-exported here\u001b[0m\n\u001b[1m\u001b[94m8\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api_data::*;\n\u001b[1m\u001b[94m9\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::unified_c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m-----------------------------\u001b[0m \u001b[1m\u001b[94mbut the name `VX_DF_IMAGE_NV12` in the value namespace is also re-exported here\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"ambiguous glob re-exports","code":{"code":"ambiguous_glob_reexports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-ffi/src/lib.rs","byte_start":257,"byte_end":278,"line_start":7,"line_end":7,"column_start":9,"column_end":30,"is_primary":true,"text":[{"text":"pub use openvx_core::c_api::*;","highlight_start":9,"highlight_end":30}],"label":"the name `VX_DF_IMAGE_NV21` in the value namespace is first re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-ffi/src/lib.rs","byte_start":324,"byte_end":353,"line_start":9,"line_end":9,"column_start":9,"column_end":38,"is_primary":false,"text":[{"text":"pub use openvx_core::unified_c_api::*;","highlight_start":9,"highlight_end":38}],"label":"but the name `VX_DF_IMAGE_NV21` in the value namespace is also re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: ambiguous glob re-exports\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-ffi/src/lib.rs:7:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m7\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mthe name `VX_DF_IMAGE_NV21` in the value namespace is first re-exported here\u001b[0m\n\u001b[1m\u001b[94m8\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api_data::*;\n\u001b[1m\u001b[94m9\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::unified_c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m-----------------------------\u001b[0m \u001b[1m\u001b[94mbut the name `VX_DF_IMAGE_NV21` in the value namespace is also re-exported here\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"ambiguous glob re-exports","code":{"code":"ambiguous_glob_reexports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-ffi/src/lib.rs","byte_start":257,"byte_end":278,"line_start":7,"line_end":7,"column_start":9,"column_end":30,"is_primary":true,"text":[{"text":"pub use openvx_core::c_api::*;","highlight_start":9,"highlight_end":30}],"label":"the name `VX_DF_IMAGE_UYVY` in the value namespace is first re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-ffi/src/lib.rs","byte_start":324,"byte_end":353,"line_start":9,"line_end":9,"column_start":9,"column_end":38,"is_primary":false,"text":[{"text":"pub use openvx_core::unified_c_api::*;","highlight_start":9,"highlight_end":38}],"label":"but the name `VX_DF_IMAGE_UYVY` in the value namespace is also re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: ambiguous glob re-exports\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-ffi/src/lib.rs:7:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m7\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mthe name `VX_DF_IMAGE_UYVY` in the value namespace is first re-exported here\u001b[0m\n\u001b[1m\u001b[94m8\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api_data::*;\n\u001b[1m\u001b[94m9\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::unified_c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m-----------------------------\u001b[0m \u001b[1m\u001b[94mbut the name `VX_DF_IMAGE_UYVY` in the value namespace is also re-exported here\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"ambiguous glob re-exports","code":{"code":"ambiguous_glob_reexports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-ffi/src/lib.rs","byte_start":257,"byte_end":278,"line_start":7,"line_end":7,"column_start":9,"column_end":30,"is_primary":true,"text":[{"text":"pub use openvx_core::c_api::*;","highlight_start":9,"highlight_end":30}],"label":"the name `VX_DF_IMAGE_YUYV` in the value namespace is first re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-ffi/src/lib.rs","byte_start":324,"byte_end":353,"line_start":9,"line_end":9,"column_start":9,"column_end":38,"is_primary":false,"text":[{"text":"pub use openvx_core::unified_c_api::*;","highlight_start":9,"highlight_end":38}],"label":"but the name `VX_DF_IMAGE_YUYV` in the value namespace is also re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: ambiguous glob re-exports\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-ffi/src/lib.rs:7:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m7\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mthe name `VX_DF_IMAGE_YUYV` in the value namespace is first re-exported here\u001b[0m\n\u001b[1m\u001b[94m8\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api_data::*;\n\u001b[1m\u001b[94m9\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::unified_c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m-----------------------------\u001b[0m \u001b[1m\u001b[94mbut the name `VX_DF_IMAGE_YUYV` in the value namespace is also re-exported here\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"ambiguous glob re-exports","code":{"code":"ambiguous_glob_reexports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-ffi/src/lib.rs","byte_start":257,"byte_end":278,"line_start":7,"line_end":7,"column_start":9,"column_end":30,"is_primary":true,"text":[{"text":"pub use openvx_core::c_api::*;","highlight_start":9,"highlight_end":30}],"label":"the name `VX_DF_IMAGE_IYUV` in the value namespace is first re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-ffi/src/lib.rs","byte_start":324,"byte_end":353,"line_start":9,"line_end":9,"column_start":9,"column_end":38,"is_primary":false,"text":[{"text":"pub use openvx_core::unified_c_api::*;","highlight_start":9,"highlight_end":38}],"label":"but the name `VX_DF_IMAGE_IYUV` in the value namespace is also re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: ambiguous glob re-exports\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-ffi/src/lib.rs:7:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m7\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mthe name `VX_DF_IMAGE_IYUV` in the value namespace is first re-exported here\u001b[0m\n\u001b[1m\u001b[94m8\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api_data::*;\n\u001b[1m\u001b[94m9\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::unified_c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m-----------------------------\u001b[0m \u001b[1m\u001b[94mbut the name `VX_DF_IMAGE_IYUV` in the value namespace is also re-exported here\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"ambiguous glob re-exports","code":{"code":"ambiguous_glob_reexports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-ffi/src/lib.rs","byte_start":257,"byte_end":278,"line_start":7,"line_end":7,"column_start":9,"column_end":30,"is_primary":true,"text":[{"text":"pub use openvx_core::c_api::*;","highlight_start":9,"highlight_end":30}],"label":"the name `VX_DF_IMAGE_YUV4` in the value namespace is first re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-ffi/src/lib.rs","byte_start":324,"byte_end":353,"line_start":9,"line_end":9,"column_start":9,"column_end":38,"is_primary":false,"text":[{"text":"pub use openvx_core::unified_c_api::*;","highlight_start":9,"highlight_end":38}],"label":"but the name `VX_DF_IMAGE_YUV4` in the value namespace is also re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: ambiguous glob re-exports\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-ffi/src/lib.rs:7:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m7\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mthe name `VX_DF_IMAGE_YUV4` in the value namespace is first re-exported here\u001b[0m\n\u001b[1m\u001b[94m8\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api_data::*;\n\u001b[1m\u001b[94m9\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::unified_c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m-----------------------------\u001b[0m \u001b[1m\u001b[94mbut the name `VX_DF_IMAGE_YUV4` in the value namespace is also re-exported here\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"ambiguous glob re-exports","code":{"code":"ambiguous_glob_reexports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-ffi/src/lib.rs","byte_start":288,"byte_end":314,"line_start":8,"line_end":8,"column_start":9,"column_end":35,"is_primary":true,"text":[{"text":"pub use openvx_core::c_api_data::*;","highlight_start":9,"highlight_end":35}],"label":"the name `VX_THRESHOLD_TYPE` in the value namespace is first re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-ffi/src/lib.rs","byte_start":324,"byte_end":353,"line_start":9,"line_end":9,"column_start":9,"column_end":38,"is_primary":false,"text":[{"text":"pub use openvx_core::unified_c_api::*;","highlight_start":9,"highlight_end":38}],"label":"but the name `VX_THRESHOLD_TYPE` in the value namespace is also re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: ambiguous glob re-exports\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-ffi/src/lib.rs:8:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m8\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api_data::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mthe name `VX_THRESHOLD_TYPE` in the value namespace is first re-exported here\u001b[0m\n\u001b[1m\u001b[94m9\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::unified_c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m-----------------------------\u001b[0m \u001b[1m\u001b[94mbut the name `VX_THRESHOLD_TYPE` in the value namespace is also re-exported here\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"ambiguous glob re-exports","code":{"code":"ambiguous_glob_reexports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-ffi/src/lib.rs","byte_start":288,"byte_end":314,"line_start":8,"line_end":8,"column_start":9,"column_end":35,"is_primary":true,"text":[{"text":"pub use openvx_core::c_api_data::*;","highlight_start":9,"highlight_end":35}],"label":"the name `VX_THRESHOLD_DATA_TYPE` in the value namespace is first re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-ffi/src/lib.rs","byte_start":324,"byte_end":353,"line_start":9,"line_end":9,"column_start":9,"column_end":38,"is_primary":false,"text":[{"text":"pub use openvx_core::unified_c_api::*;","highlight_start":9,"highlight_end":38}],"label":"but the name `VX_THRESHOLD_DATA_TYPE` in the value namespace is also re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: ambiguous glob re-exports\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-ffi/src/lib.rs:8:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m8\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api_data::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mthe name `VX_THRESHOLD_DATA_TYPE` in the value namespace is first re-exported here\u001b[0m\n\u001b[1m\u001b[94m9\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::unified_c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m-----------------------------\u001b[0m \u001b[1m\u001b[94mbut the name `VX_THRESHOLD_DATA_TYPE` in the value namespace is also re-exported here\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"ambiguous glob re-exports","code":{"code":"ambiguous_glob_reexports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-ffi/src/lib.rs","byte_start":288,"byte_end":314,"line_start":8,"line_end":8,"column_start":9,"column_end":35,"is_primary":true,"text":[{"text":"pub use openvx_core::c_api_data::*;","highlight_start":9,"highlight_end":35}],"label":"the name `VX_THRESHOLD_TYPE_BINARY` in the value namespace is first re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-ffi/src/lib.rs","byte_start":324,"byte_end":353,"line_start":9,"line_end":9,"column_start":9,"column_end":38,"is_primary":false,"text":[{"text":"pub use openvx_core::unified_c_api::*;","highlight_start":9,"highlight_end":38}],"label":"but the name `VX_THRESHOLD_TYPE_BINARY` in the value namespace is also re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: ambiguous glob re-exports\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-ffi/src/lib.rs:8:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m8\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api_data::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mthe name `VX_THRESHOLD_TYPE_BINARY` in the value namespace is first re-exported here\u001b[0m\n\u001b[1m\u001b[94m9\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::unified_c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m-----------------------------\u001b[0m \u001b[1m\u001b[94mbut the name `VX_THRESHOLD_TYPE_BINARY` in the value namespace is also re-exported here\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"ambiguous glob re-exports","code":{"code":"ambiguous_glob_reexports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-ffi/src/lib.rs","byte_start":288,"byte_end":314,"line_start":8,"line_end":8,"column_start":9,"column_end":35,"is_primary":true,"text":[{"text":"pub use openvx_core::c_api_data::*;","highlight_start":9,"highlight_end":35}],"label":"the name `VX_THRESHOLD_TYPE_RANGE` in the value namespace is first re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-ffi/src/lib.rs","byte_start":324,"byte_end":353,"line_start":9,"line_end":9,"column_start":9,"column_end":38,"is_primary":false,"text":[{"text":"pub use openvx_core::unified_c_api::*;","highlight_start":9,"highlight_end":38}],"label":"but the name `VX_THRESHOLD_TYPE_RANGE` in the value namespace is also re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: ambiguous glob re-exports\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-ffi/src/lib.rs:8:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m8\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api_data::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mthe name `VX_THRESHOLD_TYPE_RANGE` in the value namespace is first re-exported here\u001b[0m\n\u001b[1m\u001b[94m9\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::unified_c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m-----------------------------\u001b[0m \u001b[1m\u001b[94mbut the name `VX_THRESHOLD_TYPE_RANGE` in the value namespace is also re-exported here\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"ambiguous glob re-exports","code":{"code":"ambiguous_glob_reexports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-ffi/src/lib.rs","byte_start":324,"byte_end":353,"line_start":9,"line_end":9,"column_start":9,"column_end":38,"is_primary":true,"text":[{"text":"pub use openvx_core::unified_c_api::*;","highlight_start":9,"highlight_end":38}],"label":"the name `VxCArray` in the type namespace is first re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-ffi/src/lib.rs","byte_start":437,"byte_end":460,"line_start":12,"line_end":12,"column_start":9,"column_end":32,"is_primary":false,"text":[{"text":"pub use openvx_buffer::c_api::*;","highlight_start":9,"highlight_end":32}],"label":"but the name `VxCArray` in the type namespace is also re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: ambiguous glob re-exports\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-ffi/src/lib.rs:9:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m 9\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::unified_c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mthe name `VxCArray` in the type namespace is first re-exported here\u001b[0m\n\u001b[1m\u001b[94m...\u001b[0m\n\u001b[1m\u001b[94m12\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_buffer::c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m-----------------------\u001b[0m \u001b[1m\u001b[94mbut the name `VxCArray` in the type namespace is also re-exported here\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"ambiguous glob re-exports","code":{"code":"ambiguous_glob_reexports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-ffi/src/lib.rs","byte_start":324,"byte_end":353,"line_start":9,"line_end":9,"column_start":9,"column_end":38,"is_primary":true,"text":[{"text":"pub use openvx_core::unified_c_api::*;","highlight_start":9,"highlight_end":38}],"label":"the name `vxCreateUniformImage` in the value namespace is first re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-ffi/src/lib.rs","byte_start":470,"byte_end":492,"line_start":13,"line_end":13,"column_start":9,"column_end":31,"is_primary":false,"text":[{"text":"pub use openvx_image::c_api::*;","highlight_start":9,"highlight_end":31}],"label":"but the name `vxCreateUniformImage` in the value namespace is also re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: ambiguous glob re-exports\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-ffi/src/lib.rs:9:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m 9\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::unified_c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mthe name `vxCreateUniformImage` in the value namespace is first re-exported here\u001b[0m\n\u001b[1m\u001b[94m...\u001b[0m\n\u001b[1m\u001b[94m13\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_image::c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m----------------------\u001b[0m \u001b[1m\u001b[94mbut the name `vxCreateUniformImage` in the value namespace is also re-exported here\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"55 warnings emitted","code":null,"level":"warning","spans":[],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: 55 warnings emitted\u001b[0m\n\n"} diff --git a/target/debug/.fingerprint/openvx-image-5d0fce7a4e2b78c6/dep-lib-openvx_image b/target/debug/.fingerprint/openvx-image-5d0fce7a4e2b78c6/dep-lib-openvx_image new file mode 100644 index 0000000..c528576 Binary files /dev/null and b/target/debug/.fingerprint/openvx-image-5d0fce7a4e2b78c6/dep-lib-openvx_image differ diff --git a/target/debug/.fingerprint/openvx-image-5d0fce7a4e2b78c6/invoked.timestamp b/target/debug/.fingerprint/openvx-image-5d0fce7a4e2b78c6/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/debug/.fingerprint/openvx-image-5d0fce7a4e2b78c6/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/debug/.fingerprint/openvx-image-5d0fce7a4e2b78c6/lib-openvx_image b/target/debug/.fingerprint/openvx-image-5d0fce7a4e2b78c6/lib-openvx_image new file mode 100644 index 0000000..7172ae7 --- /dev/null +++ b/target/debug/.fingerprint/openvx-image-5d0fce7a4e2b78c6/lib-openvx_image @@ -0,0 +1 @@ +208a535fb19b245c \ No newline at end of file diff --git a/target/debug/.fingerprint/openvx-image-5d0fce7a4e2b78c6/lib-openvx_image.json b/target/debug/.fingerprint/openvx-image-5d0fce7a4e2b78c6/lib-openvx_image.json new file mode 100644 index 0000000..b809dc2 --- /dev/null +++ b/target/debug/.fingerprint/openvx-image-5d0fce7a4e2b78c6/lib-openvx_image.json @@ -0,0 +1 @@ +{"rustc":18276270781310494267,"features":"[]","declared_features":"[]","target":12375130860134779072,"profile":8731458305071235362,"path":9530909071960056182,"deps":[[4809150008149002099,"openvx_core",false,7053352861161987420]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/openvx-image-5d0fce7a4e2b78c6/dep-lib-openvx_image","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/target/debug/.fingerprint/openvx-image-5d0fce7a4e2b78c6/output-lib-openvx_image b/target/debug/.fingerprint/openvx-image-5d0fce7a4e2b78c6/output-lib-openvx_image new file mode 100644 index 0000000..0171fed --- /dev/null +++ b/target/debug/.fingerprint/openvx-image-5d0fce7a4e2b78c6/output-lib-openvx_image @@ -0,0 +1,24 @@ +{"$message_type":"diagnostic","message":"unused imports: `VX_ERROR_INVALID_PARAMETERS`, `VX_ERROR_INVALID_REFERENCE`, `VX_READ_AND_WRITE`, `vx_size`, `vx_status`, and `vx_uint64`","code":{"code":"unused_imports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-image/src/ct_image.rs","byte_start":470,"byte_end":479,"line_start":12,"line_end":12,"column_start":49,"column_end":58,"is_primary":true,"text":[{"text":" vx_context, vx_image, vx_df_image, vx_enum, vx_status,","highlight_start":49,"highlight_end":58}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-image/src/ct_image.rs","byte_start":555,"byte_end":564,"line_start":14,"line_end":14,"column_start":16,"column_end":25,"is_primary":true,"text":[{"text":" vx_uint32, vx_uint64, vx_size,","highlight_start":16,"highlight_end":25}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-image/src/ct_image.rs","byte_start":566,"byte_end":573,"line_start":14,"line_end":14,"column_start":27,"column_end":34,"is_primary":true,"text":[{"text":" vx_uint32, vx_uint64, vx_size,","highlight_start":27,"highlight_end":34}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-image/src/ct_image.rs","byte_start":591,"byte_end":618,"line_start":15,"line_end":15,"column_start":17,"column_end":44,"is_primary":true,"text":[{"text":" VX_SUCCESS, VX_ERROR_INVALID_PARAMETERS, VX_ERROR_INVALID_REFERENCE,","highlight_start":17,"highlight_end":44}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-image/src/ct_image.rs","byte_start":620,"byte_end":646,"line_start":15,"line_end":15,"column_start":46,"column_end":72,"is_primary":true,"text":[{"text":" VX_SUCCESS, VX_ERROR_INVALID_PARAMETERS, VX_ERROR_INVALID_REFERENCE,","highlight_start":46,"highlight_end":72}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-image/src/ct_image.rs","byte_start":681,"byte_end":698,"line_start":16,"line_end":16,"column_start":34,"column_end":51,"is_primary":true,"text":[{"text":" VX_READ_ONLY, VX_WRITE_ONLY, VX_READ_AND_WRITE, VX_MEMORY_TYPE_HOST,","highlight_start":34,"highlight_end":51}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(unused_imports)]` (part of `#[warn(unused)]`) on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"remove the unused imports","code":null,"level":"help","spans":[{"file_name":"openvx-image/src/ct_image.rs","byte_start":468,"byte_end":479,"line_start":12,"line_end":12,"column_start":47,"column_end":58,"is_primary":true,"text":[{"text":" vx_context, vx_image, vx_df_image, vx_enum, vx_status,","highlight_start":47,"highlight_end":58}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null},{"file_name":"openvx-image/src/ct_image.rs","byte_start":553,"byte_end":573,"line_start":14,"line_end":14,"column_start":14,"column_end":34,"is_primary":true,"text":[{"text":" vx_uint32, vx_uint64, vx_size,","highlight_start":14,"highlight_end":34}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null},{"file_name":"openvx-image/src/ct_image.rs","byte_start":589,"byte_end":646,"line_start":15,"line_end":15,"column_start":15,"column_end":72,"is_primary":true,"text":[{"text":" VX_SUCCESS, VX_ERROR_INVALID_PARAMETERS, VX_ERROR_INVALID_REFERENCE,","highlight_start":15,"highlight_end":72}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null},{"file_name":"openvx-image/src/ct_image.rs","byte_start":679,"byte_end":698,"line_start":16,"line_end":16,"column_start":32,"column_end":51,"is_primary":true,"text":[{"text":" VX_READ_ONLY, VX_WRITE_ONLY, VX_READ_AND_WRITE, VX_MEMORY_TYPE_HOST,","highlight_start":32,"highlight_end":51}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused imports: `VX_ERROR_INVALID_PARAMETERS`, `VX_ERROR_INVALID_REFERENCE`, `VX_READ_AND_WRITE`, `vx_size`, `vx_status`, and `vx_uint64`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-image/src/ct_image.rs:12:49\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m12\u001b[0m \u001b[1m\u001b[94m|\u001b[0m vx_context, vx_image, vx_df_image, vx_enum, vx_status,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m\n\u001b[1m\u001b[94m13\u001b[0m \u001b[1m\u001b[94m|\u001b[0m vx_rectangle_t, vx_imagepatch_addressing_t, vx_map_id,\n\u001b[1m\u001b[94m14\u001b[0m \u001b[1m\u001b[94m|\u001b[0m vx_uint32, vx_uint64, vx_size,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m \u001b[1m\u001b[33m^^^^^^^\u001b[0m\n\u001b[1m\u001b[94m15\u001b[0m \u001b[1m\u001b[94m|\u001b[0m VX_SUCCESS, VX_ERROR_INVALID_PARAMETERS, VX_ERROR_INVALID_REFERENCE,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^^^^^^\u001b[0m\n\u001b[1m\u001b[94m16\u001b[0m \u001b[1m\u001b[94m|\u001b[0m VX_READ_ONLY, VX_WRITE_ONLY, VX_READ_AND_WRITE, VX_MEMORY_TYPE_HOST,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m= \u001b[0m\u001b[1mnote\u001b[0m: `#[warn(unused_imports)]` (part of `#[warn(unused)]`) on by default\n\n"} +{"$message_type":"diagnostic","message":"type `CT_Image` should have an upper camel case name","code":{"code":"non_camel_case_types","explanation":null},"level":"warning","spans":[{"file_name":"openvx-image/src/ct_image.rs","byte_start":3328,"byte_end":3336,"line_start":136,"line_end":136,"column_start":10,"column_end":18,"is_primary":true,"text":[{"text":"pub type CT_Image = *mut CT_ImageHdr;","highlight_start":10,"highlight_end":18}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(non_camel_case_types)]` (part of `#[warn(nonstandard_style)]`) on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"convert the identifier to upper camel case","code":null,"level":"help","spans":[{"file_name":"openvx-image/src/ct_image.rs","byte_start":3328,"byte_end":3336,"line_start":136,"line_end":136,"column_start":10,"column_end":18,"is_primary":true,"text":[{"text":"pub type CT_Image = *mut CT_ImageHdr;","highlight_start":10,"highlight_end":18}],"label":null,"suggested_replacement":"CtImage","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: type `CT_Image` should have an upper camel case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-image/src/ct_image.rs:136:10\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m136\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub type CT_Image = *mut CT_ImageHdr;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper camel case: `CtImage`\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m= \u001b[0m\u001b[1mnote\u001b[0m: `#[warn(non_camel_case_types)]` (part of `#[warn(nonstandard_style)]`) on by default\n\n"} +{"$message_type":"diagnostic","message":"unnecessary `unsafe` block","code":{"code":"unused_unsafe","explanation":null},"level":"warning","spans":[{"file_name":"openvx-image/src/c_api.rs","byte_start":2787,"byte_end":2793,"line_start":81,"line_end":81,"column_start":5,"column_end":11,"is_primary":true,"text":[{"text":" unsafe {","highlight_start":5,"highlight_end":11}],"label":"unnecessary `unsafe` block","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(unused_unsafe)]` (part of `#[warn(unused)]`) on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unnecessary `unsafe` block\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-image/src/c_api.rs:81:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m81\u001b[0m \u001b[1m\u001b[94m|\u001b[0m unsafe {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m \u001b[1m\u001b[33munnecessary `unsafe` block\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m= \u001b[0m\u001b[1mnote\u001b[0m: `#[warn(unused_unsafe)]` (part of `#[warn(unused)]`) on by default\n\n"} +{"$message_type":"diagnostic","message":"unnecessary `unsafe` block","code":{"code":"unused_unsafe","explanation":null},"level":"warning","spans":[{"file_name":"openvx-image/src/c_api.rs","byte_start":3016,"byte_end":3022,"line_start":88,"line_end":88,"column_start":5,"column_end":11,"is_primary":true,"text":[{"text":" unsafe {","highlight_start":5,"highlight_end":11}],"label":"unnecessary `unsafe` block","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unnecessary `unsafe` block\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-image/src/c_api.rs:88:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m88\u001b[0m \u001b[1m\u001b[94m|\u001b[0m unsafe {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m \u001b[1m\u001b[33munnecessary `unsafe` block\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unnecessary `unsafe` block","code":{"code":"unused_unsafe","explanation":null},"level":"warning","spans":[{"file_name":"openvx-image/src/c_api.rs","byte_start":7291,"byte_end":7297,"line_start":229,"line_end":229,"column_start":9,"column_end":15,"is_primary":true,"text":[{"text":" unsafe {","highlight_start":9,"highlight_end":15}],"label":"unnecessary `unsafe` block","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-image/src/c_api.rs","byte_start":4757,"byte_end":4763,"line_start":153,"line_end":153,"column_start":5,"column_end":11,"is_primary":false,"text":[{"text":" unsafe {","highlight_start":5,"highlight_end":11}],"label":"because it's nested under this `unsafe` block","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unnecessary `unsafe` block\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-image/src/c_api.rs:229:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m153\u001b[0m \u001b[1m\u001b[94m|\u001b[0m unsafe {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m------\u001b[0m \u001b[1m\u001b[94mbecause it's nested under this `unsafe` block\u001b[0m\n\u001b[1m\u001b[94m...\u001b[0m\n\u001b[1m\u001b[94m229\u001b[0m \u001b[1m\u001b[94m|\u001b[0m unsafe {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m \u001b[1m\u001b[33munnecessary `unsafe` block\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unreachable pattern","code":{"code":"unreachable_patterns","explanation":null},"level":"warning","spans":[{"file_name":"openvx-image/src/c_api.rs","byte_start":10963,"byte_end":10979,"line_start":339,"line_end":339,"column_start":13,"column_end":29,"is_primary":true,"text":[{"text":" VX_DF_IMAGE_RGBX => {","highlight_start":13,"highlight_end":29}],"label":"no value can reach this","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-image/src/c_api.rs","byte_start":10665,"byte_end":10681,"line_start":331,"line_end":331,"column_start":13,"column_end":29,"is_primary":false,"text":[{"text":" VX_DF_IMAGE_RGBA => {","highlight_start":13,"highlight_end":29}],"label":"matches all the relevant values","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(unreachable_patterns)]` (part of `#[warn(unused)]`) on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unreachable pattern\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-image/src/c_api.rs:339:13\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m331\u001b[0m \u001b[1m\u001b[94m|\u001b[0m VX_DF_IMAGE_RGBA => {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m----------------\u001b[0m \u001b[1m\u001b[94mmatches all the relevant values\u001b[0m\n\u001b[1m\u001b[94m...\u001b[0m\n\u001b[1m\u001b[94m339\u001b[0m \u001b[1m\u001b[94m|\u001b[0m VX_DF_IMAGE_RGBX => {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mno value can reach this\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m= \u001b[0m\u001b[1mnote\u001b[0m: `#[warn(unreachable_patterns)]` (part of `#[warn(unused)]`) on by default\n\n"} +{"$message_type":"diagnostic","message":"unnecessary `unsafe` block","code":{"code":"unused_unsafe","explanation":null},"level":"warning","spans":[{"file_name":"openvx-image/src/c_api.rs","byte_start":16525,"byte_end":16531,"line_start":486,"line_end":486,"column_start":9,"column_end":15,"is_primary":true,"text":[{"text":" unsafe {","highlight_start":9,"highlight_end":15}],"label":"unnecessary `unsafe` block","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-image/src/c_api.rs","byte_start":13062,"byte_end":13068,"line_start":406,"line_end":406,"column_start":5,"column_end":11,"is_primary":false,"text":[{"text":" unsafe {","highlight_start":5,"highlight_end":11}],"label":"because it's nested under this `unsafe` block","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unnecessary `unsafe` block\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-image/src/c_api.rs:486:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m406\u001b[0m \u001b[1m\u001b[94m|\u001b[0m unsafe {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m------\u001b[0m \u001b[1m\u001b[94mbecause it's nested under this `unsafe` block\u001b[0m\n\u001b[1m\u001b[94m...\u001b[0m\n\u001b[1m\u001b[94m486\u001b[0m \u001b[1m\u001b[94m|\u001b[0m unsafe {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m \u001b[1m\u001b[33munnecessary `unsafe` block\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `plane_height`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-image/src/c_api.rs","byte_start":23627,"byte_end":23639,"line_start":720,"line_end":720,"column_start":27,"column_end":39,"is_primary":true,"text":[{"text":" let (plane_width, plane_height) = if is_planar {","highlight_start":27,"highlight_end":39}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(unused_variables)]` (part of `#[warn(unused)]`) on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-image/src/c_api.rs","byte_start":23627,"byte_end":23639,"line_start":720,"line_end":720,"column_start":27,"column_end":39,"is_primary":true,"text":[{"text":" let (plane_width, plane_height) = if is_planar {","highlight_start":27,"highlight_end":39}],"label":null,"suggested_replacement":"_plane_height","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `plane_height`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-image/src/c_api.rs:720:27\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m720\u001b[0m \u001b[1m\u001b[94m|\u001b[0m let (plane_width, plane_height) = if is_planar {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_plane_height`\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m= \u001b[0m\u001b[1mnote\u001b[0m: `#[warn(unused_variables)]` (part of `#[warn(unused)]`) on by default\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `plane_index`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-image/src/c_api.rs","byte_start":27101,"byte_end":27112,"line_start":813,"line_end":813,"column_start":58,"column_end":69,"is_primary":true,"text":[{"text":" let (_, patch_data, usage, offset, stride_y, plane_index) = patches.remove(pos);","highlight_start":58,"highlight_end":69}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-image/src/c_api.rs","byte_start":27101,"byte_end":27112,"line_start":813,"line_end":813,"column_start":58,"column_end":69,"is_primary":true,"text":[{"text":" let (_, patch_data, usage, offset, stride_y, plane_index) = patches.remove(pos);","highlight_start":58,"highlight_end":69}],"label":null,"suggested_replacement":"_plane_index","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `plane_index`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-image/src/c_api.rs:813:58\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m813\u001b[0m \u001b[1m\u001b[94m|\u001b[0m let (_, patch_data, usage, offset, stride_y, plane_index) = patches.remove(pos);\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_plane_index`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `plane_height`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-image/src/c_api.rs","byte_start":30313,"byte_end":30325,"line_start":905,"line_end":905,"column_start":27,"column_end":39,"is_primary":true,"text":[{"text":" let (plane_width, plane_height) = if is_planar {","highlight_start":27,"highlight_end":39}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-image/src/c_api.rs","byte_start":30313,"byte_end":30325,"line_start":905,"line_end":905,"column_start":27,"column_end":39,"is_primary":true,"text":[{"text":" let (plane_width, plane_height) = if is_planar {","highlight_start":27,"highlight_end":39}],"label":null,"suggested_replacement":"_plane_height","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `plane_height`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-image/src/c_api.rs:905:27\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m905\u001b[0m \u001b[1m\u001b[94m|\u001b[0m let (plane_width, plane_height) = if is_planar {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_plane_height`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `is_planar`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-image/src/c_api.rs","byte_start":35906,"byte_end":35915,"line_start":1089,"line_end":1089,"column_start":17,"column_end":26,"is_primary":true,"text":[{"text":" let is_planar = VxCImage::is_planar_format(img.format);","highlight_start":17,"highlight_end":26}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-image/src/c_api.rs","byte_start":35906,"byte_end":35915,"line_start":1089,"line_end":1089,"column_start":17,"column_end":26,"is_primary":true,"text":[{"text":" let is_planar = VxCImage::is_planar_format(img.format);","highlight_start":17,"highlight_end":26}],"label":null,"suggested_replacement":"_is_planar","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `is_planar`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-image/src/c_api.rs:1089:17\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m1089\u001b[0m \u001b[1m\u001b[94m|\u001b[0m let is_planar = VxCImage::is_planar_format(img.format);\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_is_planar`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unnecessary `unsafe` block","code":{"code":"unused_unsafe","explanation":null},"level":"warning","spans":[{"file_name":"openvx-image/src/c_api.rs","byte_start":39787,"byte_end":39793,"line_start":1202,"line_end":1202,"column_start":9,"column_end":15,"is_primary":true,"text":[{"text":" unsafe {","highlight_start":9,"highlight_end":15}],"label":"unnecessary `unsafe` block","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-image/src/c_api.rs","byte_start":37767,"byte_end":37773,"line_start":1153,"line_end":1153,"column_start":5,"column_end":11,"is_primary":false,"text":[{"text":" unsafe {","highlight_start":5,"highlight_end":11}],"label":"because it's nested under this `unsafe` block","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unnecessary `unsafe` block\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-image/src/c_api.rs:1202:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m1153\u001b[0m \u001b[1m\u001b[94m|\u001b[0m unsafe {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m------\u001b[0m \u001b[1m\u001b[94mbecause it's nested under this `unsafe` block\u001b[0m\n\u001b[1m\u001b[94m...\u001b[0m\n\u001b[1m\u001b[94m1202\u001b[0m \u001b[1m\u001b[94m|\u001b[0m unsafe {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m \u001b[1m\u001b[33munnecessary `unsafe` block\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"variable `total_copied` is assigned to, but never used","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-image/src/ct_image.rs","byte_start":25349,"byte_end":25365,"line_start":803,"line_end":803,"column_start":17,"column_end":33,"is_primary":true,"text":[{"text":" let mut total_copied = 0usize;","highlight_start":17,"highlight_end":33}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"consider using `_total_copied` instead","code":null,"level":"note","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: variable `total_copied` is assigned to, but never used\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-image/src/ct_image.rs:803:17\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m803\u001b[0m \u001b[1m\u001b[94m|\u001b[0m let mut total_copied = 0usize;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m= \u001b[0m\u001b[1mnote\u001b[0m: consider using `_total_copied` instead\n\n"} +{"$message_type":"diagnostic","message":"value assigned to `total_copied` is never read","code":{"code":"unused_assignments","explanation":null},"level":"warning","spans":[{"file_name":"openvx-image/src/ct_image.rs","byte_start":27353,"byte_end":27379,"line_start":838,"line_end":838,"column_start":21,"column_end":47,"is_primary":true,"text":[{"text":" total_copied += plane_size;","highlight_start":21,"highlight_end":47}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"maybe it is overwritten before being read?","code":null,"level":"help","spans":[],"children":[],"rendered":null},{"message":"`#[warn(unused_assignments)]` (part of `#[warn(unused)]`) on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: value assigned to `total_copied` is never read\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-image/src/ct_image.rs:838:21\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m838\u001b[0m \u001b[1m\u001b[94m|\u001b[0m total_copied += plane_size;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^^^^^^\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m= \u001b[0m\u001b[1mhelp\u001b[0m: maybe it is overwritten before being read?\n \u001b[1m\u001b[94m= \u001b[0m\u001b[1mnote\u001b[0m: `#[warn(unused_assignments)]` (part of `#[warn(unused)]`) on by default\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `file_name`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-image/src/ct_image.rs","byte_start":35542,"byte_end":35551,"line_start":1111,"line_end":1111,"column_start":33,"column_end":42,"is_primary":true,"text":[{"text":"pub extern \"C\" fn ct_read_image(file_name: *const i8, dcn: i32) -> CT_Image {","highlight_start":33,"highlight_end":42}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-image/src/ct_image.rs","byte_start":35542,"byte_end":35551,"line_start":1111,"line_end":1111,"column_start":33,"column_end":42,"is_primary":true,"text":[{"text":"pub extern \"C\" fn ct_read_image(file_name: *const i8, dcn: i32) -> CT_Image {","highlight_start":33,"highlight_end":42}],"label":null,"suggested_replacement":"_file_name","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `file_name`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-image/src/ct_image.rs:1111:33\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m1111\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub extern \"C\" fn ct_read_image(file_name: *const i8, dcn: i32) -> CT_Image {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_file_name`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `dcn`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-image/src/ct_image.rs","byte_start":35564,"byte_end":35567,"line_start":1111,"line_end":1111,"column_start":55,"column_end":58,"is_primary":true,"text":[{"text":"pub extern \"C\" fn ct_read_image(file_name: *const i8, dcn: i32) -> CT_Image {","highlight_start":55,"highlight_end":58}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-image/src/ct_image.rs","byte_start":35564,"byte_end":35567,"line_start":1111,"line_end":1111,"column_start":55,"column_end":58,"is_primary":true,"text":[{"text":"pub extern \"C\" fn ct_read_image(file_name: *const i8, dcn: i32) -> CT_Image {","highlight_start":55,"highlight_end":58}],"label":null,"suggested_replacement":"_dcn","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `dcn`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-image/src/ct_image.rs:1111:55\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m1111\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub extern \"C\" fn ct_read_image(file_name: *const i8, dcn: i32) -> CT_Image {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_dcn`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `file_name`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-image/src/ct_image.rs","byte_start":35754,"byte_end":35763,"line_start":1118,"line_end":1118,"column_start":34,"column_end":43,"is_primary":true,"text":[{"text":"pub extern \"C\" fn ct_write_image(file_name: *const i8, image: CT_Image) {","highlight_start":34,"highlight_end":43}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-image/src/ct_image.rs","byte_start":35754,"byte_end":35763,"line_start":1118,"line_end":1118,"column_start":34,"column_end":43,"is_primary":true,"text":[{"text":"pub extern \"C\" fn ct_write_image(file_name: *const i8, image: CT_Image) {","highlight_start":34,"highlight_end":43}],"label":null,"suggested_replacement":"_file_name","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `file_name`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-image/src/ct_image.rs:1118:34\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m1118\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub extern \"C\" fn ct_write_image(file_name: *const i8, image: CT_Image) {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_file_name`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `image`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-image/src/ct_image.rs","byte_start":35776,"byte_end":35781,"line_start":1118,"line_end":1118,"column_start":56,"column_end":61,"is_primary":true,"text":[{"text":"pub extern \"C\" fn ct_write_image(file_name: *const i8, image: CT_Image) {","highlight_start":56,"highlight_end":61}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-image/src/ct_image.rs","byte_start":35776,"byte_end":35781,"line_start":1118,"line_end":1118,"column_start":56,"column_end":61,"is_primary":true,"text":[{"text":"pub extern \"C\" fn ct_write_image(file_name: *const i8, image: CT_Image) {","highlight_start":56,"highlight_end":61}],"label":null,"suggested_replacement":"_image","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `image`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-image/src/ct_image.rs:1118:56\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m1118\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub extern \"C\" fn ct_write_image(file_name: *const i8, image: CT_Image) {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_image`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"static `IMAGE_ID_COUNTER` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-image/src/c_api.rs","byte_start":1400,"byte_end":1416,"line_start":32,"line_end":32,"column_start":8,"column_end":24,"is_primary":true,"text":[{"text":"static IMAGE_ID_COUNTER: std::sync::atomic::AtomicUsize = std::sync::atomic::AtomicUsize::new(1);","highlight_start":8,"highlight_end":24}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(dead_code)]` (part of `#[warn(unused)]`) on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: static `IMAGE_ID_COUNTER` is never used\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-image/src/c_api.rs:32:8\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m32\u001b[0m \u001b[1m\u001b[94m|\u001b[0m static IMAGE_ID_COUNTER: std::sync::atomic::AtomicUsize = std::sync::atomic::AtomicUsize::new(1);\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m= \u001b[0m\u001b[1mnote\u001b[0m: `#[warn(dead_code)]` (part of `#[warn(unused)]`) on by default\n\n"} +{"$message_type":"diagnostic","message":"constant `VX_DF_IMAGE_U16` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-image/src/ct_image.rs","byte_start":929,"byte_end":944,"line_start":25,"line_end":25,"column_start":7,"column_end":22,"is_primary":true,"text":[{"text":"const VX_DF_IMAGE_U16: u32 = 0x20100100;","highlight_start":7,"highlight_end":22}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: constant `VX_DF_IMAGE_U16` is never used\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-image/src/ct_image.rs:25:7\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m25\u001b[0m \u001b[1m\u001b[94m|\u001b[0m const VX_DF_IMAGE_U16: u32 = 0x20100100;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"constant `VX_DF_IMAGE_S16` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-image/src/ct_image.rs","byte_start":970,"byte_end":985,"line_start":26,"line_end":26,"column_start":7,"column_end":22,"is_primary":true,"text":[{"text":"const VX_DF_IMAGE_S16: u32 = 0x20100200;","highlight_start":7,"highlight_end":22}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: constant `VX_DF_IMAGE_S16` is never used\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-image/src/ct_image.rs:26:7\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m26\u001b[0m \u001b[1m\u001b[94m|\u001b[0m const VX_DF_IMAGE_S16: u32 = 0x20100200;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"constant `VX_DF_IMAGE_U32` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-image/src/ct_image.rs","byte_start":1011,"byte_end":1026,"line_start":27,"line_end":27,"column_start":7,"column_end":22,"is_primary":true,"text":[{"text":"const VX_DF_IMAGE_U32: u32 = 0x20200100;","highlight_start":7,"highlight_end":22}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: constant `VX_DF_IMAGE_U32` is never used\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-image/src/ct_image.rs:27:7\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m27\u001b[0m \u001b[1m\u001b[94m|\u001b[0m const VX_DF_IMAGE_U32: u32 = 0x20200100;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"constant `VX_DF_IMAGE_S32` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-image/src/ct_image.rs","byte_start":1052,"byte_end":1067,"line_start":28,"line_end":28,"column_start":7,"column_end":22,"is_primary":true,"text":[{"text":"const VX_DF_IMAGE_S32: u32 = 0x20200200;","highlight_start":7,"highlight_end":22}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: constant `VX_DF_IMAGE_S32` is never used\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-image/src/ct_image.rs:28:7\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m28\u001b[0m \u001b[1m\u001b[94m|\u001b[0m const VX_DF_IMAGE_S32: u32 = 0x20200200;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"23 warnings emitted","code":null,"level":"warning","spans":[],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: 23 warnings emitted\u001b[0m\n\n"} diff --git a/target/debug/.fingerprint/openvx-vision-337e24938845868e/dep-lib-openvx_vision b/target/debug/.fingerprint/openvx-vision-337e24938845868e/dep-lib-openvx_vision new file mode 100644 index 0000000..5597cfc Binary files /dev/null and b/target/debug/.fingerprint/openvx-vision-337e24938845868e/dep-lib-openvx_vision differ diff --git a/target/debug/.fingerprint/openvx-vision-337e24938845868e/invoked.timestamp b/target/debug/.fingerprint/openvx-vision-337e24938845868e/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/debug/.fingerprint/openvx-vision-337e24938845868e/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/debug/.fingerprint/openvx-vision-337e24938845868e/lib-openvx_vision b/target/debug/.fingerprint/openvx-vision-337e24938845868e/lib-openvx_vision new file mode 100644 index 0000000..55cdaff --- /dev/null +++ b/target/debug/.fingerprint/openvx-vision-337e24938845868e/lib-openvx_vision @@ -0,0 +1 @@ +ad4e73cb0b0aa41f \ No newline at end of file diff --git a/target/debug/.fingerprint/openvx-vision-337e24938845868e/lib-openvx_vision.json b/target/debug/.fingerprint/openvx-vision-337e24938845868e/lib-openvx_vision.json new file mode 100644 index 0000000..8076aa5 --- /dev/null +++ b/target/debug/.fingerprint/openvx-vision-337e24938845868e/lib-openvx_vision.json @@ -0,0 +1 @@ +{"rustc":18276270781310494267,"features":"[\"default\"]","declared_features":"[\"avx2\", \"default\", \"neon\", \"parallel\", \"rayon\", \"simd\", \"sse2\"]","target":148198738751462385,"profile":8731458305071235362,"path":12215504641280893655,"deps":[[4809150008149002099,"openvx_core",false,7053352861161987420],[11101848710733117461,"openvx_buffer",false,4707524617068481147],[13782069936663139603,"openvx_image",false,6639602936761780768]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/openvx-vision-337e24938845868e/dep-lib-openvx_vision","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/target/debug/.fingerprint/openvx-vision-337e24938845868e/output-lib-openvx_vision b/target/debug/.fingerprint/openvx-vision-337e24938845868e/output-lib-openvx_vision new file mode 100644 index 0000000..b0c3b66 --- /dev/null +++ b/target/debug/.fingerprint/openvx-vision-337e24938845868e/output-lib-openvx_vision @@ -0,0 +1,15 @@ +{"$message_type":"diagnostic","message":"unused import: `KernelTrait`","code":{"code":"unused_imports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-vision/src/lib.rs","byte_start":415,"byte_end":426,"line_start":13,"line_end":13,"column_start":5,"column_end":16,"is_primary":true,"text":[{"text":" KernelTrait,","highlight_start":5,"highlight_end":16}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(unused_imports)]` (part of `#[warn(unused)]`) on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"remove the unused import","code":null,"level":"help","spans":[{"file_name":"openvx-vision/src/lib.rs","byte_start":409,"byte_end":426,"line_start":12,"line_end":13,"column_start":13,"column_end":16,"is_primary":true,"text":[{"text":" VxKernel,","highlight_start":13,"highlight_end":14},{"text":" KernelTrait,","highlight_start":1,"highlight_end":16}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused import: `KernelTrait`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-vision/src/lib.rs:13:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m13\u001b[0m \u001b[1m\u001b[94m|\u001b[0m KernelTrait,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m= \u001b[0m\u001b[1mnote\u001b[0m: `#[warn(unused_imports)]` (part of `#[warn(unused)]`) on by default\n\n"} +{"$message_type":"diagnostic","message":"unused imports: `BorderMode` and `get_pixel_bordered`","code":{"code":"unused_imports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-vision/src/object_detection.rs","byte_start":153,"byte_end":171,"line_start":5,"line_end":5,"column_start":20,"column_end":38,"is_primary":true,"text":[{"text":"use crate::utils::{get_pixel_bordered, BorderMode};","highlight_start":20,"highlight_end":38}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-vision/src/object_detection.rs","byte_start":173,"byte_end":183,"line_start":5,"line_end":5,"column_start":40,"column_end":50,"is_primary":true,"text":[{"text":"use crate::utils::{get_pixel_bordered, BorderMode};","highlight_start":40,"highlight_end":50}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"remove the whole `use` item","code":null,"level":"help","spans":[{"file_name":"openvx-vision/src/object_detection.rs","byte_start":134,"byte_end":186,"line_start":5,"line_end":6,"column_start":1,"column_end":1,"is_primary":true,"text":[{"text":"use crate::utils::{get_pixel_bordered, BorderMode};","highlight_start":1,"highlight_end":52},{"text":"","highlight_start":1,"highlight_end":1}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused imports: `BorderMode` and `get_pixel_bordered`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-vision/src/object_detection.rs:5:20\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m5\u001b[0m \u001b[1m\u001b[94m|\u001b[0m use crate::utils::{get_pixel_bordered, BorderMode};\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused import: `super::*`","code":{"code":"unused_imports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-vision/src/simd_utils.rs","byte_start":2049,"byte_end":2057,"line_start":70,"line_end":70,"column_start":9,"column_end":17,"is_primary":true,"text":[{"text":" use super::*;","highlight_start":9,"highlight_end":17}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"remove the whole `use` item","code":null,"level":"help","spans":[{"file_name":"openvx-vision/src/simd_utils.rs","byte_start":2045,"byte_end":2058,"line_start":70,"line_end":70,"column_start":5,"column_end":18,"is_primary":true,"text":[{"text":" use super::*;","highlight_start":5,"highlight_end":18}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused import: `super::*`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-vision/src/simd_utils.rs:70:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m70\u001b[0m \u001b[1m\u001b[94m|\u001b[0m use super::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"value assigned to `row_sum` is never read","code":{"code":"unused_assignments","explanation":null},"level":"warning","spans":[{"file_name":"openvx-vision/src/statistics.rs","byte_start":8740,"byte_end":8741,"line_start":295,"line_end":295,"column_start":28,"column_end":29,"is_primary":true,"text":[{"text":" let mut row_sum: u32 = 0;","highlight_start":28,"highlight_end":29}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"maybe it is overwritten before being read?","code":null,"level":"help","spans":[],"children":[],"rendered":null},{"message":"`#[warn(unused_assignments)]` (part of `#[warn(unused)]`) on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: value assigned to `row_sum` is never read\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-vision/src/statistics.rs:295:28\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m295\u001b[0m \u001b[1m\u001b[94m|\u001b[0m let mut row_sum: u32 = 0;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m= \u001b[0m\u001b[1mhelp\u001b[0m: maybe it is overwritten before being read?\n \u001b[1m\u001b[94m= \u001b[0m\u001b[1mnote\u001b[0m: `#[warn(unused_assignments)]` (part of `#[warn(unused)]`) on by default\n\n"} +{"$message_type":"diagnostic","message":"variable does not need to be mutable","code":{"code":"unused_mut","explanation":null},"level":"warning","spans":[{"file_name":"openvx-vision/src/utils.rs","byte_start":1650,"byte_end":1665,"line_start":64,"line_end":64,"column_start":13,"column_end":28,"is_primary":true,"text":[{"text":" let mut pivot_index = partition(arr, left, right);","highlight_start":13,"highlight_end":28}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(unused_mut)]` (part of `#[warn(unused)]`) on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"remove this `mut`","code":null,"level":"help","spans":[{"file_name":"openvx-vision/src/utils.rs","byte_start":1650,"byte_end":1654,"line_start":64,"line_end":64,"column_start":13,"column_end":17,"is_primary":true,"text":[{"text":" let mut pivot_index = partition(arr, left, right);","highlight_start":13,"highlight_end":17}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: variable does not need to be mutable\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-vision/src/utils.rs:64:13\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m64\u001b[0m \u001b[1m\u001b[94m|\u001b[0m let mut pivot_index = partition(arr, left, right);\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m----\u001b[0m\u001b[1m\u001b[33m^^^^^^^^^^^\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94mhelp: remove this `mut`\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m= \u001b[0m\u001b[1mnote\u001b[0m: `#[warn(unused_mut)]` (part of `#[warn(unused)]`) on by default\n\n"} +{"$message_type":"diagnostic","message":"constant `Y_COEFF_R` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-vision/src/color.rs","byte_start":228,"byte_end":237,"line_start":7,"line_end":7,"column_start":7,"column_end":16,"is_primary":true,"text":[{"text":"const Y_COEFF_R: i32 = 54; // 0.2126 * 256 (BT.709)","highlight_start":7,"highlight_end":16}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(dead_code)]` (part of `#[warn(unused)]`) on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: constant `Y_COEFF_R` is never used\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-vision/src/color.rs:7:7\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m7\u001b[0m \u001b[1m\u001b[94m|\u001b[0m const Y_COEFF_R: i32 = 54; // 0.2126 * 256 (BT.709)\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m= \u001b[0m\u001b[1mnote\u001b[0m: `#[warn(dead_code)]` (part of `#[warn(unused)]`) on by default\n\n"} +{"$message_type":"diagnostic","message":"constant `Y_COEFF_G` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-vision/src/color.rs","byte_start":282,"byte_end":291,"line_start":8,"line_end":8,"column_start":7,"column_end":16,"is_primary":true,"text":[{"text":"const Y_COEFF_G: i32 = 183; // 0.7152 * 256 (BT.709)","highlight_start":7,"highlight_end":16}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: constant `Y_COEFF_G` is never used\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-vision/src/color.rs:8:7\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m8\u001b[0m \u001b[1m\u001b[94m|\u001b[0m const Y_COEFF_G: i32 = 183; // 0.7152 * 256 (BT.709)\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"constant `Y_COEFF_B` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-vision/src/color.rs","byte_start":336,"byte_end":345,"line_start":9,"line_end":9,"column_start":7,"column_end":16,"is_primary":true,"text":[{"text":"const Y_COEFF_B: i32 = 18; // 0.0722 * 256 (BT.709)","highlight_start":7,"highlight_end":16}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: constant `Y_COEFF_B` is never used\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-vision/src/color.rs:9:7\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m9\u001b[0m \u001b[1m\u001b[94m|\u001b[0m const Y_COEFF_B: i32 = 18; // 0.0722 * 256 (BT.709)\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"constant `U_COEFF_R` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-vision/src/color.rs","byte_start":391,"byte_end":400,"line_start":11,"line_end":11,"column_start":7,"column_end":16,"is_primary":true,"text":[{"text":"const U_COEFF_R: i32 = -29; // -0.1146 * 256 (BT.709)","highlight_start":7,"highlight_end":16}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: constant `U_COEFF_R` is never used\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-vision/src/color.rs:11:7\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m11\u001b[0m \u001b[1m\u001b[94m|\u001b[0m const U_COEFF_R: i32 = -29; // -0.1146 * 256 (BT.709)\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"constant `U_COEFF_G` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-vision/src/color.rs","byte_start":446,"byte_end":455,"line_start":12,"line_end":12,"column_start":7,"column_end":16,"is_primary":true,"text":[{"text":"const U_COEFF_G: i32 = -99; // -0.3854 * 256 (BT.709)","highlight_start":7,"highlight_end":16}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: constant `U_COEFF_G` is never used\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-vision/src/color.rs:12:7\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m12\u001b[0m \u001b[1m\u001b[94m|\u001b[0m const U_COEFF_G: i32 = -99; // -0.3854 * 256 (BT.709)\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"constant `U_COEFF_B` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-vision/src/color.rs","byte_start":501,"byte_end":510,"line_start":13,"line_end":13,"column_start":7,"column_end":16,"is_primary":true,"text":[{"text":"const U_COEFF_B: i32 = 128; // 0.5 * 256","highlight_start":7,"highlight_end":16}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: constant `U_COEFF_B` is never used\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-vision/src/color.rs:13:7\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m13\u001b[0m \u001b[1m\u001b[94m|\u001b[0m const U_COEFF_B: i32 = 128; // 0.5 * 256\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"constant `V_COEFF_R` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-vision/src/color.rs","byte_start":544,"byte_end":553,"line_start":15,"line_end":15,"column_start":7,"column_end":16,"is_primary":true,"text":[{"text":"const V_COEFF_R: i32 = 128; // 0.5 * 256","highlight_start":7,"highlight_end":16}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: constant `V_COEFF_R` is never used\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-vision/src/color.rs:15:7\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m15\u001b[0m \u001b[1m\u001b[94m|\u001b[0m const V_COEFF_R: i32 = 128; // 0.5 * 256\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"constant `V_COEFF_G` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-vision/src/color.rs","byte_start":586,"byte_end":595,"line_start":16,"line_end":16,"column_start":7,"column_end":16,"is_primary":true,"text":[{"text":"const V_COEFF_G: i32 = -116; // -0.4542 * 256 (BT.709)","highlight_start":7,"highlight_end":16}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: constant `V_COEFF_G` is never used\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-vision/src/color.rs:16:7\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m16\u001b[0m \u001b[1m\u001b[94m|\u001b[0m const V_COEFF_G: i32 = -116; // -0.4542 * 256 (BT.709)\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"constant `V_COEFF_B` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-vision/src/color.rs","byte_start":641,"byte_end":650,"line_start":17,"line_end":17,"column_start":7,"column_end":16,"is_primary":true,"text":[{"text":"const V_COEFF_B: i32 = -12; // -0.0458 * 256 (BT.709)","highlight_start":7,"highlight_end":16}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: constant `V_COEFF_B` is never used\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-vision/src/color.rs:17:7\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m17\u001b[0m \u001b[1m\u001b[94m|\u001b[0m const V_COEFF_B: i32 = -12; // -0.0458 * 256 (BT.709)\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"14 warnings emitted","code":null,"level":"warning","spans":[],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: 14 warnings emitted\u001b[0m\n\n"} diff --git a/target/debug/.fingerprint/petgraph-9d9e3f363101af8d/dep-lib-petgraph b/target/debug/.fingerprint/petgraph-9d9e3f363101af8d/dep-lib-petgraph new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/target/debug/.fingerprint/petgraph-9d9e3f363101af8d/dep-lib-petgraph differ diff --git a/target/debug/.fingerprint/petgraph-9d9e3f363101af8d/invoked.timestamp b/target/debug/.fingerprint/petgraph-9d9e3f363101af8d/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/debug/.fingerprint/petgraph-9d9e3f363101af8d/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/debug/.fingerprint/petgraph-9d9e3f363101af8d/lib-petgraph b/target/debug/.fingerprint/petgraph-9d9e3f363101af8d/lib-petgraph new file mode 100644 index 0000000..69cd58c --- /dev/null +++ b/target/debug/.fingerprint/petgraph-9d9e3f363101af8d/lib-petgraph @@ -0,0 +1 @@ +7b092ed53912313f \ No newline at end of file diff --git a/target/debug/.fingerprint/petgraph-9d9e3f363101af8d/lib-petgraph.json b/target/debug/.fingerprint/petgraph-9d9e3f363101af8d/lib-petgraph.json new file mode 100644 index 0000000..f65481e --- /dev/null +++ b/target/debug/.fingerprint/petgraph-9d9e3f363101af8d/lib-petgraph.json @@ -0,0 +1 @@ +{"rustc":18276270781310494267,"features":"[\"default\", \"graphmap\", \"matrix_graph\", \"stable_graph\"]","declared_features":"[\"all\", \"default\", \"generate\", \"graphmap\", \"matrix_graph\", \"quickcheck\", \"rayon\", \"serde\", \"serde-1\", \"serde_derive\", \"stable_graph\", \"unstable\"]","target":16670801973687532141,"profile":15657897354478470176,"path":16451362667304741920,"deps":[[12821780872552529316,"indexmap",false,15185433027023330183],[18312645897321731715,"fixedbitset",false,10998617308100636957]],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/petgraph-9d9e3f363101af8d/dep-lib-petgraph","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/target/debug/build/libc-3871bc5681dc8fd0/root-output b/target/debug/build/libc-3871bc5681dc8fd0/root-output index 99e83f6..033dda3 100644 --- a/target/debug/build/libc-3871bc5681dc8fd0/root-output +++ b/target/debug/build/libc-3871bc5681dc8fd0/root-output @@ -1 +1,5 @@ -/home/simon/.openclaw/workspace/rustvx/target/debug/build/libc-3871bc5681dc8fd0/out \ No newline at end of file +<<<<<<< HEAD +/home/simon/.openclaw/workspace/rustVX/target/debug/build/libc-3871bc5681dc8fd0/out +======= +/home/simon/.openclaw/workspace/rustvx/target/debug/build/libc-3871bc5681dc8fd0/out +>>>>>>> origin/master diff --git a/target/debug/build/libc-c5f1dd3bf733624d/build_script_build-c5f1dd3bf733624d.d b/target/debug/build/libc-c5f1dd3bf733624d/build_script_build-c5f1dd3bf733624d.d index 27c3e35..ed149ac 100644 --- a/target/debug/build/libc-c5f1dd3bf733624d/build_script_build-c5f1dd3bf733624d.d +++ b/target/debug/build/libc-c5f1dd3bf733624d/build_script_build-c5f1dd3bf733624d.d @@ -1,5 +1,11 @@ +<<<<<<< HEAD +/home/simon/.openclaw/workspace/rustVX/target/debug/build/libc-c5f1dd3bf733624d/build_script_build-c5f1dd3bf733624d.d: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/build.rs + +/home/simon/.openclaw/workspace/rustVX/target/debug/build/libc-c5f1dd3bf733624d/build_script_build-c5f1dd3bf733624d: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/build.rs +======= /home/simon/.openclaw/workspace/rustvx/target/debug/build/libc-c5f1dd3bf733624d/build_script_build-c5f1dd3bf733624d.d: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/build.rs /home/simon/.openclaw/workspace/rustvx/target/debug/build/libc-c5f1dd3bf733624d/build_script_build-c5f1dd3bf733624d: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/build.rs +>>>>>>> origin/master /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/build.rs: diff --git a/target/debug/build/parking_lot_core-0b9c9b58b128f550/root-output b/target/debug/build/parking_lot_core-0b9c9b58b128f550/root-output index c0055e8..034957d 100644 --- a/target/debug/build/parking_lot_core-0b9c9b58b128f550/root-output +++ b/target/debug/build/parking_lot_core-0b9c9b58b128f550/root-output @@ -1 +1,5 @@ -/home/simon/.openclaw/workspace/rustvx/target/debug/build/parking_lot_core-0b9c9b58b128f550/out \ No newline at end of file +<<<<<<< HEAD +/home/simon/.openclaw/workspace/rustVX/target/debug/build/parking_lot_core-0b9c9b58b128f550/out +======= +/home/simon/.openclaw/workspace/rustvx/target/debug/build/parking_lot_core-0b9c9b58b128f550/out +>>>>>>> origin/master diff --git a/target/debug/build/parking_lot_core-d8b900c1eeb10f02/build_script_build-d8b900c1eeb10f02.d b/target/debug/build/parking_lot_core-d8b900c1eeb10f02/build_script_build-d8b900c1eeb10f02.d index 55665c5..9584870 100644 --- a/target/debug/build/parking_lot_core-d8b900c1eeb10f02/build_script_build-d8b900c1eeb10f02.d +++ b/target/debug/build/parking_lot_core-d8b900c1eeb10f02/build_script_build-d8b900c1eeb10f02.d @@ -1,5 +1,11 @@ +<<<<<<< HEAD +/home/simon/.openclaw/workspace/rustVX/target/debug/build/parking_lot_core-d8b900c1eeb10f02/build_script_build-d8b900c1eeb10f02.d: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.12/build.rs + +/home/simon/.openclaw/workspace/rustVX/target/debug/build/parking_lot_core-d8b900c1eeb10f02/build_script_build-d8b900c1eeb10f02: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.12/build.rs +======= /home/simon/.openclaw/workspace/rustvx/target/debug/build/parking_lot_core-d8b900c1eeb10f02/build_script_build-d8b900c1eeb10f02.d: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.12/build.rs /home/simon/.openclaw/workspace/rustvx/target/debug/build/parking_lot_core-d8b900c1eeb10f02/build_script_build-d8b900c1eeb10f02: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.12/build.rs +>>>>>>> origin/master /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.12/build.rs: diff --git a/target/debug/build/proc-macro2-59fb65d883d68442/build_script_build-59fb65d883d68442.d b/target/debug/build/proc-macro2-59fb65d883d68442/build_script_build-59fb65d883d68442.d index 15cb819..71324a3 100644 --- a/target/debug/build/proc-macro2-59fb65d883d68442/build_script_build-59fb65d883d68442.d +++ b/target/debug/build/proc-macro2-59fb65d883d68442/build_script_build-59fb65d883d68442.d @@ -1,5 +1,11 @@ +<<<<<<< HEAD +/home/simon/.openclaw/workspace/rustVX/target/debug/build/proc-macro2-59fb65d883d68442/build_script_build-59fb65d883d68442.d: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/build.rs + +/home/simon/.openclaw/workspace/rustVX/target/debug/build/proc-macro2-59fb65d883d68442/build_script_build-59fb65d883d68442: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/build.rs +======= /home/simon/.openclaw/workspace/rustvx/target/debug/build/proc-macro2-59fb65d883d68442/build_script_build-59fb65d883d68442.d: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/build.rs /home/simon/.openclaw/workspace/rustvx/target/debug/build/proc-macro2-59fb65d883d68442/build_script_build-59fb65d883d68442: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/build.rs +>>>>>>> origin/master /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/build.rs: diff --git a/target/debug/build/proc-macro2-eca6b6b3659d092d/root-output b/target/debug/build/proc-macro2-eca6b6b3659d092d/root-output index 3633d49..7d1fd8c 100644 --- a/target/debug/build/proc-macro2-eca6b6b3659d092d/root-output +++ b/target/debug/build/proc-macro2-eca6b6b3659d092d/root-output @@ -1 +1,5 @@ -/home/simon/.openclaw/workspace/rustvx/target/debug/build/proc-macro2-eca6b6b3659d092d/out \ No newline at end of file +<<<<<<< HEAD +/home/simon/.openclaw/workspace/rustVX/target/debug/build/proc-macro2-eca6b6b3659d092d/out +======= +/home/simon/.openclaw/workspace/rustvx/target/debug/build/proc-macro2-eca6b6b3659d092d/out +>>>>>>> origin/master diff --git a/target/debug/build/quote-522f3ff9ee457532/build_script_build-522f3ff9ee457532.d b/target/debug/build/quote-522f3ff9ee457532/build_script_build-522f3ff9ee457532.d index ae2b01c..a1efed2 100644 --- a/target/debug/build/quote-522f3ff9ee457532/build_script_build-522f3ff9ee457532.d +++ b/target/debug/build/quote-522f3ff9ee457532/build_script_build-522f3ff9ee457532.d @@ -1,5 +1,11 @@ +<<<<<<< HEAD +/home/simon/.openclaw/workspace/rustVX/target/debug/build/quote-522f3ff9ee457532/build_script_build-522f3ff9ee457532.d: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.45/build.rs + +/home/simon/.openclaw/workspace/rustVX/target/debug/build/quote-522f3ff9ee457532/build_script_build-522f3ff9ee457532: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.45/build.rs +======= /home/simon/.openclaw/workspace/rustvx/target/debug/build/quote-522f3ff9ee457532/build_script_build-522f3ff9ee457532.d: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.45/build.rs /home/simon/.openclaw/workspace/rustvx/target/debug/build/quote-522f3ff9ee457532/build_script_build-522f3ff9ee457532: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.45/build.rs +>>>>>>> origin/master /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.45/build.rs: diff --git a/target/debug/build/quote-e7e3cb3fa7dec76d/root-output b/target/debug/build/quote-e7e3cb3fa7dec76d/root-output index ba0d19e..8a81fa1 100644 --- a/target/debug/build/quote-e7e3cb3fa7dec76d/root-output +++ b/target/debug/build/quote-e7e3cb3fa7dec76d/root-output @@ -1 +1,5 @@ -/home/simon/.openclaw/workspace/rustvx/target/debug/build/quote-e7e3cb3fa7dec76d/out \ No newline at end of file +<<<<<<< HEAD +/home/simon/.openclaw/workspace/rustVX/target/debug/build/quote-e7e3cb3fa7dec76d/out +======= +/home/simon/.openclaw/workspace/rustvx/target/debug/build/quote-e7e3cb3fa7dec76d/out +>>>>>>> origin/master diff --git a/target/debug/build/thiserror-68b386c88d53b475/build_script_build-68b386c88d53b475.d b/target/debug/build/thiserror-68b386c88d53b475/build_script_build-68b386c88d53b475.d index 57fe7de..914d2b8 100644 --- a/target/debug/build/thiserror-68b386c88d53b475/build_script_build-68b386c88d53b475.d +++ b/target/debug/build/thiserror-68b386c88d53b475/build_script_build-68b386c88d53b475.d @@ -1,5 +1,11 @@ +<<<<<<< HEAD +/home/simon/.openclaw/workspace/rustVX/target/debug/build/thiserror-68b386c88d53b475/build_script_build-68b386c88d53b475.d: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/build.rs + +/home/simon/.openclaw/workspace/rustVX/target/debug/build/thiserror-68b386c88d53b475/build_script_build-68b386c88d53b475: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/build.rs +======= /home/simon/.openclaw/workspace/rustvx/target/debug/build/thiserror-68b386c88d53b475/build_script_build-68b386c88d53b475.d: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/build.rs /home/simon/.openclaw/workspace/rustvx/target/debug/build/thiserror-68b386c88d53b475/build_script_build-68b386c88d53b475: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/build.rs +>>>>>>> origin/master /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/build.rs: diff --git a/target/debug/build/thiserror-d1efd4102e41cb4c/root-output b/target/debug/build/thiserror-d1efd4102e41cb4c/root-output index 2f61a3c..ad7e79c 100644 --- a/target/debug/build/thiserror-d1efd4102e41cb4c/root-output +++ b/target/debug/build/thiserror-d1efd4102e41cb4c/root-output @@ -1 +1,5 @@ -/home/simon/.openclaw/workspace/rustvx/target/debug/build/thiserror-d1efd4102e41cb4c/out \ No newline at end of file +<<<<<<< HEAD +/home/simon/.openclaw/workspace/rustVX/target/debug/build/thiserror-d1efd4102e41cb4c/out +======= +/home/simon/.openclaw/workspace/rustvx/target/debug/build/thiserror-d1efd4102e41cb4c/out +>>>>>>> origin/master diff --git a/target/debug/deps/cfg_if-9d8e838b3d041728.d b/target/debug/deps/cfg_if-9d8e838b3d041728.d index 44f498f..1e28f1d 100644 --- a/target/debug/deps/cfg_if-9d8e838b3d041728.d +++ b/target/debug/deps/cfg_if-9d8e838b3d041728.d @@ -1,7 +1,15 @@ +<<<<<<< HEAD +/home/simon/.openclaw/workspace/rustVX/target/debug/deps/cfg_if-9d8e838b3d041728.d: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cfg-if-1.0.4/src/lib.rs + +/home/simon/.openclaw/workspace/rustVX/target/debug/deps/libcfg_if-9d8e838b3d041728.rlib: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cfg-if-1.0.4/src/lib.rs + +/home/simon/.openclaw/workspace/rustVX/target/debug/deps/libcfg_if-9d8e838b3d041728.rmeta: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cfg-if-1.0.4/src/lib.rs +======= /home/simon/.openclaw/workspace/rustvx/target/debug/deps/cfg_if-9d8e838b3d041728.d: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cfg-if-1.0.4/src/lib.rs /home/simon/.openclaw/workspace/rustvx/target/debug/deps/libcfg_if-9d8e838b3d041728.rlib: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cfg-if-1.0.4/src/lib.rs /home/simon/.openclaw/workspace/rustvx/target/debug/deps/libcfg_if-9d8e838b3d041728.rmeta: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cfg-if-1.0.4/src/lib.rs +>>>>>>> origin/master /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cfg-if-1.0.4/src/lib.rs: diff --git a/target/debug/deps/equivalent-e7ca67f7d85e4db3.d b/target/debug/deps/equivalent-e7ca67f7d85e4db3.d index 1be6fb1..bbc163b 100644 --- a/target/debug/deps/equivalent-e7ca67f7d85e4db3.d +++ b/target/debug/deps/equivalent-e7ca67f7d85e4db3.d @@ -1,7 +1,15 @@ +<<<<<<< HEAD +/home/simon/.openclaw/workspace/rustVX/target/debug/deps/equivalent-e7ca67f7d85e4db3.d: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/equivalent-1.0.2/src/lib.rs + +/home/simon/.openclaw/workspace/rustVX/target/debug/deps/libequivalent-e7ca67f7d85e4db3.rlib: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/equivalent-1.0.2/src/lib.rs + +/home/simon/.openclaw/workspace/rustVX/target/debug/deps/libequivalent-e7ca67f7d85e4db3.rmeta: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/equivalent-1.0.2/src/lib.rs +======= /home/simon/.openclaw/workspace/rustvx/target/debug/deps/equivalent-e7ca67f7d85e4db3.d: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/equivalent-1.0.2/src/lib.rs /home/simon/.openclaw/workspace/rustvx/target/debug/deps/libequivalent-e7ca67f7d85e4db3.rlib: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/equivalent-1.0.2/src/lib.rs /home/simon/.openclaw/workspace/rustvx/target/debug/deps/libequivalent-e7ca67f7d85e4db3.rmeta: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/equivalent-1.0.2/src/lib.rs +>>>>>>> origin/master /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/equivalent-1.0.2/src/lib.rs: diff --git a/target/debug/deps/fixedbitset-ac0d67c031434435.d b/target/debug/deps/fixedbitset-ac0d67c031434435.d index 7b6a3fb..b3f12e4 100644 --- a/target/debug/deps/fixedbitset-ac0d67c031434435.d +++ b/target/debug/deps/fixedbitset-ac0d67c031434435.d @@ -1,8 +1,16 @@ +<<<<<<< HEAD +/home/simon/.openclaw/workspace/rustVX/target/debug/deps/fixedbitset-ac0d67c031434435.d: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/fixedbitset-0.4.2/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/fixedbitset-0.4.2/src/range.rs + +/home/simon/.openclaw/workspace/rustVX/target/debug/deps/libfixedbitset-ac0d67c031434435.rlib: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/fixedbitset-0.4.2/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/fixedbitset-0.4.2/src/range.rs + +/home/simon/.openclaw/workspace/rustVX/target/debug/deps/libfixedbitset-ac0d67c031434435.rmeta: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/fixedbitset-0.4.2/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/fixedbitset-0.4.2/src/range.rs +======= /home/simon/.openclaw/workspace/rustvx/target/debug/deps/fixedbitset-ac0d67c031434435.d: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/fixedbitset-0.4.2/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/fixedbitset-0.4.2/src/range.rs /home/simon/.openclaw/workspace/rustvx/target/debug/deps/libfixedbitset-ac0d67c031434435.rlib: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/fixedbitset-0.4.2/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/fixedbitset-0.4.2/src/range.rs /home/simon/.openclaw/workspace/rustvx/target/debug/deps/libfixedbitset-ac0d67c031434435.rmeta: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/fixedbitset-0.4.2/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/fixedbitset-0.4.2/src/range.rs +>>>>>>> origin/master /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/fixedbitset-0.4.2/src/lib.rs: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/fixedbitset-0.4.2/src/range.rs: diff --git a/target/debug/deps/hashbrown-eea4c2e66e2bab6e.d b/target/debug/deps/hashbrown-eea4c2e66e2bab6e.d index 8156520..950443b 100644 --- a/target/debug/deps/hashbrown-eea4c2e66e2bab6e.d +++ b/target/debug/deps/hashbrown-eea4c2e66e2bab6e.d @@ -1,8 +1,16 @@ +<<<<<<< HEAD +/home/simon/.openclaw/workspace/rustVX/target/debug/deps/hashbrown-eea4c2e66e2bab6e.d: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/macros.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/control/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/control/bitmask.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/control/group/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/control/tag.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/hasher.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/raw/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/raw/alloc.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/util.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/external_trait_impls/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/map.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/scopeguard.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/set.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/table.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/control/group/sse2.rs + +/home/simon/.openclaw/workspace/rustVX/target/debug/deps/libhashbrown-eea4c2e66e2bab6e.rlib: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/macros.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/control/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/control/bitmask.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/control/group/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/control/tag.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/hasher.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/raw/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/raw/alloc.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/util.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/external_trait_impls/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/map.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/scopeguard.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/set.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/table.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/control/group/sse2.rs + +/home/simon/.openclaw/workspace/rustVX/target/debug/deps/libhashbrown-eea4c2e66e2bab6e.rmeta: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/macros.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/control/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/control/bitmask.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/control/group/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/control/tag.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/hasher.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/raw/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/raw/alloc.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/util.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/external_trait_impls/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/map.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/scopeguard.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/set.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/table.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/control/group/sse2.rs +======= /home/simon/.openclaw/workspace/rustvx/target/debug/deps/hashbrown-eea4c2e66e2bab6e.d: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/macros.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/control/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/control/bitmask.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/control/group/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/control/tag.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/hasher.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/raw/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/raw/alloc.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/util.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/external_trait_impls/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/map.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/scopeguard.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/set.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/table.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/control/group/sse2.rs /home/simon/.openclaw/workspace/rustvx/target/debug/deps/libhashbrown-eea4c2e66e2bab6e.rlib: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/macros.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/control/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/control/bitmask.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/control/group/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/control/tag.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/hasher.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/raw/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/raw/alloc.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/util.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/external_trait_impls/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/map.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/scopeguard.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/set.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/table.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/control/group/sse2.rs /home/simon/.openclaw/workspace/rustvx/target/debug/deps/libhashbrown-eea4c2e66e2bab6e.rmeta: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/macros.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/control/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/control/bitmask.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/control/group/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/control/tag.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/hasher.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/raw/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/raw/alloc.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/util.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/external_trait_impls/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/map.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/scopeguard.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/set.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/table.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/control/group/sse2.rs +>>>>>>> origin/master /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/lib.rs: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/macros.rs: diff --git a/target/debug/deps/indexmap-5e45f313593e9b16.d b/target/debug/deps/indexmap-5e45f313593e9b16.d new file mode 100644 index 0000000..26e9709 --- /dev/null +++ b/target/debug/deps/indexmap-5e45f313593e9b16.d @@ -0,0 +1,23 @@ +/home/simon/.openclaw/workspace/rustVX/target/debug/deps/indexmap-5e45f313593e9b16.d: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/arbitrary.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/inner.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/inner/entry.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/inner/extract.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/macros.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/util.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/map.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/map/entry.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/map/iter.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/map/mutable.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/map/slice.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/map/raw_entry_v1.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/set.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/set/iter.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/set/mutable.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/set/slice.rs + +/home/simon/.openclaw/workspace/rustVX/target/debug/deps/libindexmap-5e45f313593e9b16.rlib: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/arbitrary.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/inner.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/inner/entry.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/inner/extract.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/macros.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/util.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/map.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/map/entry.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/map/iter.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/map/mutable.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/map/slice.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/map/raw_entry_v1.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/set.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/set/iter.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/set/mutable.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/set/slice.rs + +/home/simon/.openclaw/workspace/rustVX/target/debug/deps/libindexmap-5e45f313593e9b16.rmeta: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/arbitrary.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/inner.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/inner/entry.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/inner/extract.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/macros.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/util.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/map.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/map/entry.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/map/iter.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/map/mutable.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/map/slice.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/map/raw_entry_v1.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/set.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/set/iter.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/set/mutable.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/set/slice.rs + +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/lib.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/arbitrary.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/inner.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/inner/entry.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/inner/extract.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/macros.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/util.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/map.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/map/entry.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/map/iter.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/map/mutable.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/map/slice.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/map/raw_entry_v1.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/set.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/set/iter.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/set/mutable.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/set/slice.rs: diff --git a/target/debug/deps/libc-3a1e456fed0d9fcc.d b/target/debug/deps/libc-3a1e456fed0d9fcc.d index b2571a0..3780983 100644 --- a/target/debug/deps/libc-3a1e456fed0d9fcc.d +++ b/target/debug/deps/libc-3a1e456fed0d9fcc.d @@ -1,8 +1,16 @@ +<<<<<<< HEAD +/home/simon/.openclaw/workspace/rustVX/target/debug/deps/libc-3a1e456fed0d9fcc.d: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/macros.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/common/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/common/linux_like/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/common/linux_like/pthread.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/common/posix/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/common/posix/pthread.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/common/posix/unistd.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/linux_uapi/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/linux_uapi/linux/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/linux_uapi/linux/can.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/linux_uapi/linux/can/bcm.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/linux_uapi/linux/can/error.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/linux_uapi/linux/can/j1939.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/linux_uapi/linux/can/raw.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/linux_uapi/linux/keyctl.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/linux_uapi/linux/membarrier.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/linux_uapi/linux/netlink.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/linux_uapi/linux/pidfd.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/glibc/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/glibc/posix/unistd.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/glibc/sysdeps/nptl/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/glibc/sysdeps/nptl/pthread.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/glibc/sysdeps/unix/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/glibc/sysdeps/unix/linux/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/glibc/sysdeps/unix/linux/net/route.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/primitives.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/unix/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/unix/linux_like/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/unix/linux_like/linux/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/unix/linux_like/linux/arch/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/unix/linux_like/linux_l4re_shared.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/unix/linux_like/linux/gnu/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/unix/linux_like/linux/gnu/b64/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/unix/linux_like/linux/gnu/b64/x86_64/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/unix/linux_like/linux/gnu/b64/x86_64/not_x32.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/unix/linux_like/linux/arch/generic/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/types.rs + +/home/simon/.openclaw/workspace/rustVX/target/debug/deps/liblibc-3a1e456fed0d9fcc.rlib: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/macros.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/common/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/common/linux_like/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/common/linux_like/pthread.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/common/posix/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/common/posix/pthread.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/common/posix/unistd.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/linux_uapi/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/linux_uapi/linux/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/linux_uapi/linux/can.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/linux_uapi/linux/can/bcm.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/linux_uapi/linux/can/error.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/linux_uapi/linux/can/j1939.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/linux_uapi/linux/can/raw.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/linux_uapi/linux/keyctl.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/linux_uapi/linux/membarrier.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/linux_uapi/linux/netlink.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/linux_uapi/linux/pidfd.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/glibc/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/glibc/posix/unistd.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/glibc/sysdeps/nptl/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/glibc/sysdeps/nptl/pthread.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/glibc/sysdeps/unix/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/glibc/sysdeps/unix/linux/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/glibc/sysdeps/unix/linux/net/route.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/primitives.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/unix/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/unix/linux_like/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/unix/linux_like/linux/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/unix/linux_like/linux/arch/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/unix/linux_like/linux_l4re_shared.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/unix/linux_like/linux/gnu/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/unix/linux_like/linux/gnu/b64/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/unix/linux_like/linux/gnu/b64/x86_64/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/unix/linux_like/linux/gnu/b64/x86_64/not_x32.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/unix/linux_like/linux/arch/generic/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/types.rs + +/home/simon/.openclaw/workspace/rustVX/target/debug/deps/liblibc-3a1e456fed0d9fcc.rmeta: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/macros.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/common/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/common/linux_like/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/common/linux_like/pthread.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/common/posix/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/common/posix/pthread.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/common/posix/unistd.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/linux_uapi/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/linux_uapi/linux/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/linux_uapi/linux/can.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/linux_uapi/linux/can/bcm.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/linux_uapi/linux/can/error.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/linux_uapi/linux/can/j1939.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/linux_uapi/linux/can/raw.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/linux_uapi/linux/keyctl.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/linux_uapi/linux/membarrier.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/linux_uapi/linux/netlink.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/linux_uapi/linux/pidfd.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/glibc/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/glibc/posix/unistd.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/glibc/sysdeps/nptl/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/glibc/sysdeps/nptl/pthread.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/glibc/sysdeps/unix/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/glibc/sysdeps/unix/linux/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/glibc/sysdeps/unix/linux/net/route.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/primitives.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/unix/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/unix/linux_like/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/unix/linux_like/linux/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/unix/linux_like/linux/arch/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/unix/linux_like/linux_l4re_shared.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/unix/linux_like/linux/gnu/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/unix/linux_like/linux/gnu/b64/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/unix/linux_like/linux/gnu/b64/x86_64/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/unix/linux_like/linux/gnu/b64/x86_64/not_x32.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/unix/linux_like/linux/arch/generic/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/types.rs +======= /home/simon/.openclaw/workspace/rustvx/target/debug/deps/libc-3a1e456fed0d9fcc.d: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/macros.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/common/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/common/linux_like/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/common/linux_like/pthread.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/common/posix/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/common/posix/pthread.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/common/posix/unistd.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/linux_uapi/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/linux_uapi/linux/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/linux_uapi/linux/can.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/linux_uapi/linux/can/bcm.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/linux_uapi/linux/can/error.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/linux_uapi/linux/can/j1939.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/linux_uapi/linux/can/raw.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/linux_uapi/linux/keyctl.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/linux_uapi/linux/membarrier.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/linux_uapi/linux/netlink.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/linux_uapi/linux/pidfd.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/glibc/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/glibc/posix/unistd.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/glibc/sysdeps/nptl/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/glibc/sysdeps/nptl/pthread.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/glibc/sysdeps/unix/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/glibc/sysdeps/unix/linux/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/glibc/sysdeps/unix/linux/net/route.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/primitives.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/unix/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/unix/linux_like/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/unix/linux_like/linux/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/unix/linux_like/linux/arch/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/unix/linux_like/linux_l4re_shared.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/unix/linux_like/linux/gnu/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/unix/linux_like/linux/gnu/b64/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/unix/linux_like/linux/gnu/b64/x86_64/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/unix/linux_like/linux/gnu/b64/x86_64/not_x32.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/unix/linux_like/linux/arch/generic/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/types.rs /home/simon/.openclaw/workspace/rustvx/target/debug/deps/liblibc-3a1e456fed0d9fcc.rlib: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/macros.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/common/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/common/linux_like/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/common/linux_like/pthread.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/common/posix/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/common/posix/pthread.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/common/posix/unistd.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/linux_uapi/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/linux_uapi/linux/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/linux_uapi/linux/can.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/linux_uapi/linux/can/bcm.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/linux_uapi/linux/can/error.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/linux_uapi/linux/can/j1939.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/linux_uapi/linux/can/raw.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/linux_uapi/linux/keyctl.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/linux_uapi/linux/membarrier.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/linux_uapi/linux/netlink.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/linux_uapi/linux/pidfd.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/glibc/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/glibc/posix/unistd.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/glibc/sysdeps/nptl/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/glibc/sysdeps/nptl/pthread.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/glibc/sysdeps/unix/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/glibc/sysdeps/unix/linux/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/glibc/sysdeps/unix/linux/net/route.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/primitives.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/unix/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/unix/linux_like/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/unix/linux_like/linux/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/unix/linux_like/linux/arch/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/unix/linux_like/linux_l4re_shared.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/unix/linux_like/linux/gnu/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/unix/linux_like/linux/gnu/b64/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/unix/linux_like/linux/gnu/b64/x86_64/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/unix/linux_like/linux/gnu/b64/x86_64/not_x32.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/unix/linux_like/linux/arch/generic/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/types.rs /home/simon/.openclaw/workspace/rustvx/target/debug/deps/liblibc-3a1e456fed0d9fcc.rmeta: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/macros.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/common/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/common/linux_like/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/common/linux_like/pthread.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/common/posix/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/common/posix/pthread.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/common/posix/unistd.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/linux_uapi/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/linux_uapi/linux/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/linux_uapi/linux/can.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/linux_uapi/linux/can/bcm.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/linux_uapi/linux/can/error.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/linux_uapi/linux/can/j1939.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/linux_uapi/linux/can/raw.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/linux_uapi/linux/keyctl.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/linux_uapi/linux/membarrier.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/linux_uapi/linux/netlink.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/linux_uapi/linux/pidfd.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/glibc/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/glibc/posix/unistd.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/glibc/sysdeps/nptl/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/glibc/sysdeps/nptl/pthread.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/glibc/sysdeps/unix/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/glibc/sysdeps/unix/linux/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/glibc/sysdeps/unix/linux/net/route.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/primitives.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/unix/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/unix/linux_like/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/unix/linux_like/linux/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/unix/linux_like/linux/arch/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/unix/linux_like/linux_l4re_shared.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/unix/linux_like/linux/gnu/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/unix/linux_like/linux/gnu/b64/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/unix/linux_like/linux/gnu/b64/x86_64/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/unix/linux_like/linux/gnu/b64/x86_64/not_x32.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/unix/linux_like/linux/arch/generic/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/types.rs +>>>>>>> origin/master /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/lib.rs: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/macros.rs: diff --git a/target/debug/deps/libindexmap-5e45f313593e9b16.rlib b/target/debug/deps/libindexmap-5e45f313593e9b16.rlib new file mode 100644 index 0000000..59776ce Binary files /dev/null and b/target/debug/deps/libindexmap-5e45f313593e9b16.rlib differ diff --git a/target/debug/deps/libindexmap-5e45f313593e9b16.rmeta b/target/debug/deps/libindexmap-5e45f313593e9b16.rmeta new file mode 100644 index 0000000..f07eb75 Binary files /dev/null and b/target/debug/deps/libindexmap-5e45f313593e9b16.rmeta differ diff --git a/target/debug/deps/libopenvx_buffer-af9d7813295718d6.rlib b/target/debug/deps/libopenvx_buffer-af9d7813295718d6.rlib new file mode 100644 index 0000000..895ea44 Binary files /dev/null and b/target/debug/deps/libopenvx_buffer-af9d7813295718d6.rlib differ diff --git a/target/debug/deps/libopenvx_buffer-af9d7813295718d6.rmeta b/target/debug/deps/libopenvx_buffer-af9d7813295718d6.rmeta new file mode 100644 index 0000000..c8f7866 Binary files /dev/null and b/target/debug/deps/libopenvx_buffer-af9d7813295718d6.rmeta differ diff --git a/target/debug/deps/libopenvx_core.a b/target/debug/deps/libopenvx_core.a new file mode 100644 index 0000000..3e1b013 Binary files /dev/null and b/target/debug/deps/libopenvx_core.a differ diff --git a/target/debug/deps/libopenvx_core.rlib b/target/debug/deps/libopenvx_core.rlib new file mode 100644 index 0000000..a9f69f0 Binary files /dev/null and b/target/debug/deps/libopenvx_core.rlib differ diff --git a/target/debug/deps/libopenvx_core.so b/target/debug/deps/libopenvx_core.so new file mode 100755 index 0000000..5559dc2 Binary files /dev/null and b/target/debug/deps/libopenvx_core.so differ diff --git a/target/debug/deps/libopenvx_ffi.a b/target/debug/deps/libopenvx_ffi.a new file mode 100644 index 0000000..90f22b5 Binary files /dev/null and b/target/debug/deps/libopenvx_ffi.a differ diff --git a/target/debug/deps/libopenvx_ffi.so b/target/debug/deps/libopenvx_ffi.so new file mode 100755 index 0000000..67029fe Binary files /dev/null and b/target/debug/deps/libopenvx_ffi.so differ diff --git a/target/debug/deps/libopenvx_image-5d0fce7a4e2b78c6.rlib b/target/debug/deps/libopenvx_image-5d0fce7a4e2b78c6.rlib new file mode 100644 index 0000000..55d880a Binary files /dev/null and b/target/debug/deps/libopenvx_image-5d0fce7a4e2b78c6.rlib differ diff --git a/target/debug/deps/libopenvx_image-5d0fce7a4e2b78c6.rmeta b/target/debug/deps/libopenvx_image-5d0fce7a4e2b78c6.rmeta new file mode 100644 index 0000000..116dcdc Binary files /dev/null and b/target/debug/deps/libopenvx_image-5d0fce7a4e2b78c6.rmeta differ diff --git a/target/debug/deps/libopenvx_vision-337e24938845868e.rlib b/target/debug/deps/libopenvx_vision-337e24938845868e.rlib new file mode 100644 index 0000000..da2f4a0 Binary files /dev/null and b/target/debug/deps/libopenvx_vision-337e24938845868e.rlib differ diff --git a/target/debug/deps/libopenvx_vision-337e24938845868e.rmeta b/target/debug/deps/libopenvx_vision-337e24938845868e.rmeta new file mode 100644 index 0000000..8bc5c7d Binary files /dev/null and b/target/debug/deps/libopenvx_vision-337e24938845868e.rmeta differ diff --git a/target/debug/deps/libpetgraph-9d9e3f363101af8d.rlib b/target/debug/deps/libpetgraph-9d9e3f363101af8d.rlib new file mode 100644 index 0000000..fd5acf2 Binary files /dev/null and b/target/debug/deps/libpetgraph-9d9e3f363101af8d.rlib differ diff --git a/target/debug/deps/libpetgraph-9d9e3f363101af8d.rmeta b/target/debug/deps/libpetgraph-9d9e3f363101af8d.rmeta new file mode 100644 index 0000000..47c4493 Binary files /dev/null and b/target/debug/deps/libpetgraph-9d9e3f363101af8d.rmeta differ diff --git a/target/debug/deps/lock_api-ff7515981521d845.d b/target/debug/deps/lock_api-ff7515981521d845.d index 87c6708..8ef27eb 100644 --- a/target/debug/deps/lock_api-ff7515981521d845.d +++ b/target/debug/deps/lock_api-ff7515981521d845.d @@ -1,8 +1,16 @@ +<<<<<<< HEAD +/home/simon/.openclaw/workspace/rustVX/target/debug/deps/lock_api-ff7515981521d845.d: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lock_api-0.4.14/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lock_api-0.4.14/src/mutex.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lock_api-0.4.14/src/remutex.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lock_api-0.4.14/src/rwlock.rs + +/home/simon/.openclaw/workspace/rustVX/target/debug/deps/liblock_api-ff7515981521d845.rlib: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lock_api-0.4.14/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lock_api-0.4.14/src/mutex.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lock_api-0.4.14/src/remutex.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lock_api-0.4.14/src/rwlock.rs + +/home/simon/.openclaw/workspace/rustVX/target/debug/deps/liblock_api-ff7515981521d845.rmeta: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lock_api-0.4.14/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lock_api-0.4.14/src/mutex.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lock_api-0.4.14/src/remutex.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lock_api-0.4.14/src/rwlock.rs +======= /home/simon/.openclaw/workspace/rustvx/target/debug/deps/lock_api-ff7515981521d845.d: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lock_api-0.4.14/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lock_api-0.4.14/src/mutex.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lock_api-0.4.14/src/remutex.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lock_api-0.4.14/src/rwlock.rs /home/simon/.openclaw/workspace/rustvx/target/debug/deps/liblock_api-ff7515981521d845.rlib: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lock_api-0.4.14/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lock_api-0.4.14/src/mutex.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lock_api-0.4.14/src/remutex.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lock_api-0.4.14/src/rwlock.rs /home/simon/.openclaw/workspace/rustvx/target/debug/deps/liblock_api-ff7515981521d845.rmeta: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lock_api-0.4.14/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lock_api-0.4.14/src/mutex.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lock_api-0.4.14/src/remutex.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lock_api-0.4.14/src/rwlock.rs +>>>>>>> origin/master /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lock_api-0.4.14/src/lib.rs: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lock_api-0.4.14/src/mutex.rs: diff --git a/target/debug/deps/log-408c38338ce1a0e5.d b/target/debug/deps/log-408c38338ce1a0e5.d index a58cf9e..51c1339 100644 --- a/target/debug/deps/log-408c38338ce1a0e5.d +++ b/target/debug/deps/log-408c38338ce1a0e5.d @@ -1,8 +1,16 @@ +<<<<<<< HEAD +/home/simon/.openclaw/workspace/rustVX/target/debug/deps/log-408c38338ce1a0e5.d: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/log-0.4.29/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/log-0.4.29/src/macros.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/log-0.4.29/src/serde.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/log-0.4.29/src/__private_api.rs + +/home/simon/.openclaw/workspace/rustVX/target/debug/deps/liblog-408c38338ce1a0e5.rlib: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/log-0.4.29/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/log-0.4.29/src/macros.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/log-0.4.29/src/serde.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/log-0.4.29/src/__private_api.rs + +/home/simon/.openclaw/workspace/rustVX/target/debug/deps/liblog-408c38338ce1a0e5.rmeta: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/log-0.4.29/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/log-0.4.29/src/macros.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/log-0.4.29/src/serde.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/log-0.4.29/src/__private_api.rs +======= /home/simon/.openclaw/workspace/rustvx/target/debug/deps/log-408c38338ce1a0e5.d: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/log-0.4.29/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/log-0.4.29/src/macros.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/log-0.4.29/src/serde.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/log-0.4.29/src/__private_api.rs /home/simon/.openclaw/workspace/rustvx/target/debug/deps/liblog-408c38338ce1a0e5.rlib: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/log-0.4.29/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/log-0.4.29/src/macros.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/log-0.4.29/src/serde.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/log-0.4.29/src/__private_api.rs /home/simon/.openclaw/workspace/rustvx/target/debug/deps/liblog-408c38338ce1a0e5.rmeta: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/log-0.4.29/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/log-0.4.29/src/macros.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/log-0.4.29/src/serde.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/log-0.4.29/src/__private_api.rs +>>>>>>> origin/master /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/log-0.4.29/src/lib.rs: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/log-0.4.29/src/macros.rs: diff --git a/target/debug/deps/once_cell-62dad8624c32d39d.d b/target/debug/deps/once_cell-62dad8624c32d39d.d index aa2d373..43eb626 100644 --- a/target/debug/deps/once_cell-62dad8624c32d39d.d +++ b/target/debug/deps/once_cell-62dad8624c32d39d.d @@ -1,8 +1,16 @@ +<<<<<<< HEAD +/home/simon/.openclaw/workspace/rustVX/target/debug/deps/once_cell-62dad8624c32d39d.d: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/once_cell-1.21.4/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/once_cell-1.21.4/src/imp_std.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/once_cell-1.21.4/src/race.rs + +/home/simon/.openclaw/workspace/rustVX/target/debug/deps/libonce_cell-62dad8624c32d39d.rlib: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/once_cell-1.21.4/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/once_cell-1.21.4/src/imp_std.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/once_cell-1.21.4/src/race.rs + +/home/simon/.openclaw/workspace/rustVX/target/debug/deps/libonce_cell-62dad8624c32d39d.rmeta: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/once_cell-1.21.4/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/once_cell-1.21.4/src/imp_std.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/once_cell-1.21.4/src/race.rs +======= /home/simon/.openclaw/workspace/rustvx/target/debug/deps/once_cell-62dad8624c32d39d.d: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/once_cell-1.21.4/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/once_cell-1.21.4/src/imp_std.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/once_cell-1.21.4/src/race.rs /home/simon/.openclaw/workspace/rustvx/target/debug/deps/libonce_cell-62dad8624c32d39d.rlib: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/once_cell-1.21.4/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/once_cell-1.21.4/src/imp_std.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/once_cell-1.21.4/src/race.rs /home/simon/.openclaw/workspace/rustvx/target/debug/deps/libonce_cell-62dad8624c32d39d.rmeta: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/once_cell-1.21.4/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/once_cell-1.21.4/src/imp_std.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/once_cell-1.21.4/src/race.rs +>>>>>>> origin/master /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/once_cell-1.21.4/src/lib.rs: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/once_cell-1.21.4/src/imp_std.rs: diff --git a/target/debug/deps/openvx_buffer-af9d7813295718d6.d b/target/debug/deps/openvx_buffer-af9d7813295718d6.d new file mode 100644 index 0000000..dfcaaa2 --- /dev/null +++ b/target/debug/deps/openvx_buffer-af9d7813295718d6.d @@ -0,0 +1,8 @@ +/home/simon/.openclaw/workspace/rustVX/target/debug/deps/openvx_buffer-af9d7813295718d6.d: openvx-buffer/src/lib.rs openvx-buffer/src/c_api.rs + +/home/simon/.openclaw/workspace/rustVX/target/debug/deps/libopenvx_buffer-af9d7813295718d6.rlib: openvx-buffer/src/lib.rs openvx-buffer/src/c_api.rs + +/home/simon/.openclaw/workspace/rustVX/target/debug/deps/libopenvx_buffer-af9d7813295718d6.rmeta: openvx-buffer/src/lib.rs openvx-buffer/src/c_api.rs + +openvx-buffer/src/lib.rs: +openvx-buffer/src/c_api.rs: diff --git a/target/debug/deps/openvx_core.d b/target/debug/deps/openvx_core.d index fe638ad..3e482a1 100644 --- a/target/debug/deps/openvx_core.d +++ b/target/debug/deps/openvx_core.d @@ -1,3 +1,12 @@ +<<<<<<< HEAD +/home/simon/.openclaw/workspace/rustVX/target/debug/deps/openvx_core.d: openvx-core/src/lib.rs openvx-core/src/types.rs openvx-core/src/reference.rs openvx-core/src/context.rs openvx-core/src/c_api.rs openvx-core/src/c_api_data.rs openvx-core/src/unified_c_api.rs openvx-core/src/vxu_impl.rs + +/home/simon/.openclaw/workspace/rustVX/target/debug/deps/libopenvx_core.so: openvx-core/src/lib.rs openvx-core/src/types.rs openvx-core/src/reference.rs openvx-core/src/context.rs openvx-core/src/c_api.rs openvx-core/src/c_api_data.rs openvx-core/src/unified_c_api.rs openvx-core/src/vxu_impl.rs + +/home/simon/.openclaw/workspace/rustVX/target/debug/deps/libopenvx_core.a: openvx-core/src/lib.rs openvx-core/src/types.rs openvx-core/src/reference.rs openvx-core/src/context.rs openvx-core/src/c_api.rs openvx-core/src/c_api_data.rs openvx-core/src/unified_c_api.rs openvx-core/src/vxu_impl.rs + +/home/simon/.openclaw/workspace/rustVX/target/debug/deps/libopenvx_core.rlib: openvx-core/src/lib.rs openvx-core/src/types.rs openvx-core/src/reference.rs openvx-core/src/context.rs openvx-core/src/c_api.rs openvx-core/src/c_api_data.rs openvx-core/src/unified_c_api.rs openvx-core/src/vxu_impl.rs +======= /home/simon/.openclaw/workspace/rustvx/target/debug/deps/openvx_core.d: openvx-core/src/lib.rs openvx-core/src/types.rs openvx-core/src/reference.rs openvx-core/src/context.rs openvx-core/src/c_api.rs openvx-core/src/c_api_data.rs openvx-core/src/unified_c_api.rs openvx-core/src/vxu_impl.rs /home/simon/.openclaw/workspace/rustvx/target/debug/deps/libopenvx_core.so: openvx-core/src/lib.rs openvx-core/src/types.rs openvx-core/src/reference.rs openvx-core/src/context.rs openvx-core/src/c_api.rs openvx-core/src/c_api_data.rs openvx-core/src/unified_c_api.rs openvx-core/src/vxu_impl.rs @@ -5,6 +14,7 @@ /home/simon/.openclaw/workspace/rustvx/target/debug/deps/libopenvx_core.a: openvx-core/src/lib.rs openvx-core/src/types.rs openvx-core/src/reference.rs openvx-core/src/context.rs openvx-core/src/c_api.rs openvx-core/src/c_api_data.rs openvx-core/src/unified_c_api.rs openvx-core/src/vxu_impl.rs /home/simon/.openclaw/workspace/rustvx/target/debug/deps/libopenvx_core.rlib: openvx-core/src/lib.rs openvx-core/src/types.rs openvx-core/src/reference.rs openvx-core/src/context.rs openvx-core/src/c_api.rs openvx-core/src/c_api_data.rs openvx-core/src/unified_c_api.rs openvx-core/src/vxu_impl.rs +>>>>>>> origin/master openvx-core/src/lib.rs: openvx-core/src/types.rs: diff --git a/target/debug/deps/openvx_ffi.d b/target/debug/deps/openvx_ffi.d new file mode 100644 index 0000000..5059947 --- /dev/null +++ b/target/debug/deps/openvx_ffi.d @@ -0,0 +1,7 @@ +/home/simon/.openclaw/workspace/rustVX/target/debug/deps/openvx_ffi.d: openvx-ffi/src/lib.rs + +/home/simon/.openclaw/workspace/rustVX/target/debug/deps/libopenvx_ffi.so: openvx-ffi/src/lib.rs + +/home/simon/.openclaw/workspace/rustVX/target/debug/deps/libopenvx_ffi.a: openvx-ffi/src/lib.rs + +openvx-ffi/src/lib.rs: diff --git a/target/debug/deps/openvx_image-5d0fce7a4e2b78c6.d b/target/debug/deps/openvx_image-5d0fce7a4e2b78c6.d new file mode 100644 index 0000000..ba39667 --- /dev/null +++ b/target/debug/deps/openvx_image-5d0fce7a4e2b78c6.d @@ -0,0 +1,9 @@ +/home/simon/.openclaw/workspace/rustVX/target/debug/deps/openvx_image-5d0fce7a4e2b78c6.d: openvx-image/src/lib.rs openvx-image/src/c_api.rs openvx-image/src/ct_image.rs + +/home/simon/.openclaw/workspace/rustVX/target/debug/deps/libopenvx_image-5d0fce7a4e2b78c6.rlib: openvx-image/src/lib.rs openvx-image/src/c_api.rs openvx-image/src/ct_image.rs + +/home/simon/.openclaw/workspace/rustVX/target/debug/deps/libopenvx_image-5d0fce7a4e2b78c6.rmeta: openvx-image/src/lib.rs openvx-image/src/c_api.rs openvx-image/src/ct_image.rs + +openvx-image/src/lib.rs: +openvx-image/src/c_api.rs: +openvx-image/src/ct_image.rs: diff --git a/target/debug/deps/openvx_vision-337e24938845868e.d b/target/debug/deps/openvx_vision-337e24938845868e.d new file mode 100644 index 0000000..cc2f0fa --- /dev/null +++ b/target/debug/deps/openvx_vision-337e24938845868e.d @@ -0,0 +1,19 @@ +/home/simon/.openclaw/workspace/rustVX/target/debug/deps/openvx_vision-337e24938845868e.d: openvx-vision/src/lib.rs openvx-vision/src/color.rs openvx-vision/src/filter.rs openvx-vision/src/gradient.rs openvx-vision/src/arithmetic.rs openvx-vision/src/morphology.rs openvx-vision/src/geometric.rs openvx-vision/src/optical_flow.rs openvx-vision/src/features.rs openvx-vision/src/statistics.rs openvx-vision/src/object_detection.rs openvx-vision/src/utils.rs openvx-vision/src/simd_utils.rs + +/home/simon/.openclaw/workspace/rustVX/target/debug/deps/libopenvx_vision-337e24938845868e.rlib: openvx-vision/src/lib.rs openvx-vision/src/color.rs openvx-vision/src/filter.rs openvx-vision/src/gradient.rs openvx-vision/src/arithmetic.rs openvx-vision/src/morphology.rs openvx-vision/src/geometric.rs openvx-vision/src/optical_flow.rs openvx-vision/src/features.rs openvx-vision/src/statistics.rs openvx-vision/src/object_detection.rs openvx-vision/src/utils.rs openvx-vision/src/simd_utils.rs + +/home/simon/.openclaw/workspace/rustVX/target/debug/deps/libopenvx_vision-337e24938845868e.rmeta: openvx-vision/src/lib.rs openvx-vision/src/color.rs openvx-vision/src/filter.rs openvx-vision/src/gradient.rs openvx-vision/src/arithmetic.rs openvx-vision/src/morphology.rs openvx-vision/src/geometric.rs openvx-vision/src/optical_flow.rs openvx-vision/src/features.rs openvx-vision/src/statistics.rs openvx-vision/src/object_detection.rs openvx-vision/src/utils.rs openvx-vision/src/simd_utils.rs + +openvx-vision/src/lib.rs: +openvx-vision/src/color.rs: +openvx-vision/src/filter.rs: +openvx-vision/src/gradient.rs: +openvx-vision/src/arithmetic.rs: +openvx-vision/src/morphology.rs: +openvx-vision/src/geometric.rs: +openvx-vision/src/optical_flow.rs: +openvx-vision/src/features.rs: +openvx-vision/src/statistics.rs: +openvx-vision/src/object_detection.rs: +openvx-vision/src/utils.rs: +openvx-vision/src/simd_utils.rs: diff --git a/target/debug/deps/parking_lot-08d3d38374afc3f7.d b/target/debug/deps/parking_lot-08d3d38374afc3f7.d index a7f4729..7cc8977 100644 --- a/target/debug/deps/parking_lot-08d3d38374afc3f7.d +++ b/target/debug/deps/parking_lot-08d3d38374afc3f7.d @@ -1,8 +1,16 @@ +<<<<<<< HEAD +/home/simon/.openclaw/workspace/rustVX/target/debug/deps/parking_lot-08d3d38374afc3f7.d: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/condvar.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/elision.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/fair_mutex.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/mutex.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/once.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/raw_fair_mutex.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/raw_mutex.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/raw_rwlock.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/remutex.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/rwlock.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/util.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/deadlock.rs + +/home/simon/.openclaw/workspace/rustVX/target/debug/deps/libparking_lot-08d3d38374afc3f7.rlib: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/condvar.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/elision.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/fair_mutex.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/mutex.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/once.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/raw_fair_mutex.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/raw_mutex.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/raw_rwlock.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/remutex.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/rwlock.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/util.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/deadlock.rs + +/home/simon/.openclaw/workspace/rustVX/target/debug/deps/libparking_lot-08d3d38374afc3f7.rmeta: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/condvar.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/elision.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/fair_mutex.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/mutex.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/once.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/raw_fair_mutex.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/raw_mutex.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/raw_rwlock.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/remutex.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/rwlock.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/util.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/deadlock.rs +======= /home/simon/.openclaw/workspace/rustvx/target/debug/deps/parking_lot-08d3d38374afc3f7.d: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/condvar.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/elision.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/fair_mutex.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/mutex.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/once.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/raw_fair_mutex.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/raw_mutex.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/raw_rwlock.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/remutex.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/rwlock.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/util.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/deadlock.rs /home/simon/.openclaw/workspace/rustvx/target/debug/deps/libparking_lot-08d3d38374afc3f7.rlib: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/condvar.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/elision.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/fair_mutex.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/mutex.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/once.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/raw_fair_mutex.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/raw_mutex.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/raw_rwlock.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/remutex.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/rwlock.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/util.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/deadlock.rs /home/simon/.openclaw/workspace/rustvx/target/debug/deps/libparking_lot-08d3d38374afc3f7.rmeta: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/condvar.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/elision.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/fair_mutex.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/mutex.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/once.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/raw_fair_mutex.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/raw_mutex.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/raw_rwlock.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/remutex.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/rwlock.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/util.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/deadlock.rs +>>>>>>> origin/master /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/lib.rs: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/condvar.rs: diff --git a/target/debug/deps/parking_lot_core-aa34fc54d0722a89.d b/target/debug/deps/parking_lot_core-aa34fc54d0722a89.d index 6229dd0..52e6cfc 100644 --- a/target/debug/deps/parking_lot_core-aa34fc54d0722a89.d +++ b/target/debug/deps/parking_lot_core-aa34fc54d0722a89.d @@ -1,8 +1,16 @@ +<<<<<<< HEAD +/home/simon/.openclaw/workspace/rustVX/target/debug/deps/parking_lot_core-aa34fc54d0722a89.d: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.12/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.12/src/parking_lot.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.12/src/spinwait.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.12/src/thread_parker/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.12/src/util.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.12/src/word_lock.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.12/src/thread_parker/linux.rs + +/home/simon/.openclaw/workspace/rustVX/target/debug/deps/libparking_lot_core-aa34fc54d0722a89.rlib: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.12/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.12/src/parking_lot.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.12/src/spinwait.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.12/src/thread_parker/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.12/src/util.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.12/src/word_lock.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.12/src/thread_parker/linux.rs + +/home/simon/.openclaw/workspace/rustVX/target/debug/deps/libparking_lot_core-aa34fc54d0722a89.rmeta: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.12/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.12/src/parking_lot.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.12/src/spinwait.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.12/src/thread_parker/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.12/src/util.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.12/src/word_lock.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.12/src/thread_parker/linux.rs +======= /home/simon/.openclaw/workspace/rustvx/target/debug/deps/parking_lot_core-aa34fc54d0722a89.d: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.12/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.12/src/parking_lot.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.12/src/spinwait.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.12/src/thread_parker/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.12/src/util.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.12/src/word_lock.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.12/src/thread_parker/linux.rs /home/simon/.openclaw/workspace/rustvx/target/debug/deps/libparking_lot_core-aa34fc54d0722a89.rlib: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.12/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.12/src/parking_lot.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.12/src/spinwait.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.12/src/thread_parker/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.12/src/util.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.12/src/word_lock.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.12/src/thread_parker/linux.rs /home/simon/.openclaw/workspace/rustvx/target/debug/deps/libparking_lot_core-aa34fc54d0722a89.rmeta: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.12/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.12/src/parking_lot.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.12/src/spinwait.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.12/src/thread_parker/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.12/src/util.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.12/src/word_lock.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.12/src/thread_parker/linux.rs +>>>>>>> origin/master /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.12/src/lib.rs: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.12/src/parking_lot.rs: diff --git a/target/debug/deps/petgraph-9d9e3f363101af8d.d b/target/debug/deps/petgraph-9d9e3f363101af8d.d new file mode 100644 index 0000000..979fc63 --- /dev/null +++ b/target/debug/deps/petgraph-9d9e3f363101af8d.d @@ -0,0 +1,46 @@ +/home/simon/.openclaw/workspace/rustVX/target/debug/deps/petgraph-9d9e3f363101af8d.d: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/macros.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/scored.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/visit/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/visit/macros.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/visit/dfsvisit.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/visit/traversal.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/visit/filter.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/visit/reversed.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/data.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/adj.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/algo/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/algo/astar.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/algo/bellman_ford.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/algo/dijkstra.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/algo/dominators.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/algo/feedback_arc_set.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/algo/floyd_warshall.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/algo/ford_fulkerson.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/algo/isomorphism.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/algo/k_shortest_path.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/algo/matching.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/algo/min_spanning_tree.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/algo/page_rank.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/algo/simple_paths.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/algo/tred.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/csr.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/dot.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/graph_impl/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/graph_impl/frozen.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/graph_impl/stable_graph/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/graphmap.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/iter_format.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/iter_utils.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/matrix_graph.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/traits_graph.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/unionfind.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/util.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/operator.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/prelude.rs + +/home/simon/.openclaw/workspace/rustVX/target/debug/deps/libpetgraph-9d9e3f363101af8d.rlib: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/macros.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/scored.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/visit/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/visit/macros.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/visit/dfsvisit.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/visit/traversal.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/visit/filter.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/visit/reversed.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/data.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/adj.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/algo/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/algo/astar.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/algo/bellman_ford.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/algo/dijkstra.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/algo/dominators.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/algo/feedback_arc_set.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/algo/floyd_warshall.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/algo/ford_fulkerson.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/algo/isomorphism.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/algo/k_shortest_path.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/algo/matching.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/algo/min_spanning_tree.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/algo/page_rank.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/algo/simple_paths.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/algo/tred.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/csr.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/dot.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/graph_impl/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/graph_impl/frozen.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/graph_impl/stable_graph/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/graphmap.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/iter_format.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/iter_utils.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/matrix_graph.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/traits_graph.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/unionfind.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/util.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/operator.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/prelude.rs + +/home/simon/.openclaw/workspace/rustVX/target/debug/deps/libpetgraph-9d9e3f363101af8d.rmeta: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/macros.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/scored.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/visit/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/visit/macros.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/visit/dfsvisit.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/visit/traversal.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/visit/filter.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/visit/reversed.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/data.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/adj.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/algo/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/algo/astar.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/algo/bellman_ford.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/algo/dijkstra.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/algo/dominators.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/algo/feedback_arc_set.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/algo/floyd_warshall.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/algo/ford_fulkerson.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/algo/isomorphism.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/algo/k_shortest_path.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/algo/matching.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/algo/min_spanning_tree.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/algo/page_rank.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/algo/simple_paths.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/algo/tred.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/csr.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/dot.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/graph_impl/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/graph_impl/frozen.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/graph_impl/stable_graph/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/graphmap.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/iter_format.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/iter_utils.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/matrix_graph.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/traits_graph.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/unionfind.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/util.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/operator.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/prelude.rs + +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/lib.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/macros.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/scored.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/visit/mod.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/visit/macros.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/visit/dfsvisit.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/visit/traversal.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/visit/filter.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/visit/reversed.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/data.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/adj.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/algo/mod.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/algo/astar.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/algo/bellman_ford.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/algo/dijkstra.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/algo/dominators.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/algo/feedback_arc_set.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/algo/floyd_warshall.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/algo/ford_fulkerson.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/algo/isomorphism.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/algo/k_shortest_path.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/algo/matching.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/algo/min_spanning_tree.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/algo/page_rank.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/algo/simple_paths.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/algo/tred.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/csr.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/dot.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/graph_impl/mod.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/graph_impl/frozen.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/graph_impl/stable_graph/mod.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/graphmap.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/iter_format.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/iter_utils.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/matrix_graph.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/traits_graph.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/unionfind.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/util.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/operator.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/prelude.rs: diff --git a/target/debug/deps/proc_macro2-0454c554b14b2896.d b/target/debug/deps/proc_macro2-0454c554b14b2896.d index 2ee2438..b59293f 100644 --- a/target/debug/deps/proc_macro2-0454c554b14b2896.d +++ b/target/debug/deps/proc_macro2-0454c554b14b2896.d @@ -1,8 +1,16 @@ +<<<<<<< HEAD +/home/simon/.openclaw/workspace/rustVX/target/debug/deps/proc_macro2-0454c554b14b2896.d: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/marker.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/parse.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/probe.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/probe/proc_macro_span_file.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/probe/proc_macro_span_location.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/rcvec.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/detection.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/fallback.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/extra.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/wrapper.rs + +/home/simon/.openclaw/workspace/rustVX/target/debug/deps/libproc_macro2-0454c554b14b2896.rlib: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/marker.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/parse.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/probe.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/probe/proc_macro_span_file.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/probe/proc_macro_span_location.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/rcvec.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/detection.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/fallback.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/extra.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/wrapper.rs + +/home/simon/.openclaw/workspace/rustVX/target/debug/deps/libproc_macro2-0454c554b14b2896.rmeta: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/marker.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/parse.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/probe.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/probe/proc_macro_span_file.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/probe/proc_macro_span_location.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/rcvec.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/detection.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/fallback.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/extra.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/wrapper.rs +======= /home/simon/.openclaw/workspace/rustvx/target/debug/deps/proc_macro2-0454c554b14b2896.d: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/marker.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/parse.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/probe.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/probe/proc_macro_span_file.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/probe/proc_macro_span_location.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/rcvec.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/detection.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/fallback.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/extra.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/wrapper.rs /home/simon/.openclaw/workspace/rustvx/target/debug/deps/libproc_macro2-0454c554b14b2896.rlib: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/marker.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/parse.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/probe.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/probe/proc_macro_span_file.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/probe/proc_macro_span_location.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/rcvec.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/detection.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/fallback.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/extra.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/wrapper.rs /home/simon/.openclaw/workspace/rustvx/target/debug/deps/libproc_macro2-0454c554b14b2896.rmeta: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/marker.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/parse.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/probe.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/probe/proc_macro_span_file.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/probe/proc_macro_span_location.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/rcvec.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/detection.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/fallback.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/extra.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/wrapper.rs +>>>>>>> origin/master /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/lib.rs: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/marker.rs: diff --git a/target/debug/deps/quote-ca0183ca5fc2f7d2.d b/target/debug/deps/quote-ca0183ca5fc2f7d2.d index a33c523..b892088 100644 --- a/target/debug/deps/quote-ca0183ca5fc2f7d2.d +++ b/target/debug/deps/quote-ca0183ca5fc2f7d2.d @@ -1,8 +1,16 @@ +<<<<<<< HEAD +/home/simon/.openclaw/workspace/rustVX/target/debug/deps/quote-ca0183ca5fc2f7d2.d: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.45/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.45/src/ext.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.45/src/format.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.45/src/ident_fragment.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.45/src/to_tokens.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.45/src/runtime.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.45/src/spanned.rs + +/home/simon/.openclaw/workspace/rustVX/target/debug/deps/libquote-ca0183ca5fc2f7d2.rlib: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.45/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.45/src/ext.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.45/src/format.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.45/src/ident_fragment.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.45/src/to_tokens.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.45/src/runtime.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.45/src/spanned.rs + +/home/simon/.openclaw/workspace/rustVX/target/debug/deps/libquote-ca0183ca5fc2f7d2.rmeta: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.45/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.45/src/ext.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.45/src/format.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.45/src/ident_fragment.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.45/src/to_tokens.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.45/src/runtime.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.45/src/spanned.rs +======= /home/simon/.openclaw/workspace/rustvx/target/debug/deps/quote-ca0183ca5fc2f7d2.d: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.45/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.45/src/ext.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.45/src/format.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.45/src/ident_fragment.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.45/src/to_tokens.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.45/src/runtime.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.45/src/spanned.rs /home/simon/.openclaw/workspace/rustvx/target/debug/deps/libquote-ca0183ca5fc2f7d2.rlib: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.45/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.45/src/ext.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.45/src/format.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.45/src/ident_fragment.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.45/src/to_tokens.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.45/src/runtime.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.45/src/spanned.rs /home/simon/.openclaw/workspace/rustvx/target/debug/deps/libquote-ca0183ca5fc2f7d2.rmeta: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.45/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.45/src/ext.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.45/src/format.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.45/src/ident_fragment.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.45/src/to_tokens.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.45/src/runtime.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.45/src/spanned.rs +>>>>>>> origin/master /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.45/src/lib.rs: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.45/src/ext.rs: diff --git a/target/debug/deps/scopeguard-eb27cf17e2db02c5.d b/target/debug/deps/scopeguard-eb27cf17e2db02c5.d index 9d8ea73..618ee7a 100644 --- a/target/debug/deps/scopeguard-eb27cf17e2db02c5.d +++ b/target/debug/deps/scopeguard-eb27cf17e2db02c5.d @@ -1,7 +1,15 @@ +<<<<<<< HEAD +/home/simon/.openclaw/workspace/rustVX/target/debug/deps/scopeguard-eb27cf17e2db02c5.d: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/scopeguard-1.2.0/src/lib.rs + +/home/simon/.openclaw/workspace/rustVX/target/debug/deps/libscopeguard-eb27cf17e2db02c5.rlib: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/scopeguard-1.2.0/src/lib.rs + +/home/simon/.openclaw/workspace/rustVX/target/debug/deps/libscopeguard-eb27cf17e2db02c5.rmeta: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/scopeguard-1.2.0/src/lib.rs +======= /home/simon/.openclaw/workspace/rustvx/target/debug/deps/scopeguard-eb27cf17e2db02c5.d: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/scopeguard-1.2.0/src/lib.rs /home/simon/.openclaw/workspace/rustvx/target/debug/deps/libscopeguard-eb27cf17e2db02c5.rlib: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/scopeguard-1.2.0/src/lib.rs /home/simon/.openclaw/workspace/rustvx/target/debug/deps/libscopeguard-eb27cf17e2db02c5.rmeta: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/scopeguard-1.2.0/src/lib.rs +>>>>>>> origin/master /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/scopeguard-1.2.0/src/lib.rs: diff --git a/target/debug/deps/smallvec-4134d6d51255d118.d b/target/debug/deps/smallvec-4134d6d51255d118.d index 5ab6bd0..9390c8a 100644 --- a/target/debug/deps/smallvec-4134d6d51255d118.d +++ b/target/debug/deps/smallvec-4134d6d51255d118.d @@ -1,7 +1,15 @@ +<<<<<<< HEAD +/home/simon/.openclaw/workspace/rustVX/target/debug/deps/smallvec-4134d6d51255d118.d: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/smallvec-1.15.1/src/lib.rs + +/home/simon/.openclaw/workspace/rustVX/target/debug/deps/libsmallvec-4134d6d51255d118.rlib: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/smallvec-1.15.1/src/lib.rs + +/home/simon/.openclaw/workspace/rustVX/target/debug/deps/libsmallvec-4134d6d51255d118.rmeta: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/smallvec-1.15.1/src/lib.rs +======= /home/simon/.openclaw/workspace/rustvx/target/debug/deps/smallvec-4134d6d51255d118.d: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/smallvec-1.15.1/src/lib.rs /home/simon/.openclaw/workspace/rustvx/target/debug/deps/libsmallvec-4134d6d51255d118.rlib: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/smallvec-1.15.1/src/lib.rs /home/simon/.openclaw/workspace/rustvx/target/debug/deps/libsmallvec-4134d6d51255d118.rmeta: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/smallvec-1.15.1/src/lib.rs +>>>>>>> origin/master /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/smallvec-1.15.1/src/lib.rs: diff --git a/target/debug/deps/syn-24f6ccf389adcd33.d b/target/debug/deps/syn-24f6ccf389adcd33.d index 8209124..b4f56b4 100644 --- a/target/debug/deps/syn-24f6ccf389adcd33.d +++ b/target/debug/deps/syn-24f6ccf389adcd33.d @@ -1,8 +1,16 @@ +<<<<<<< HEAD +/home/simon/.openclaw/workspace/rustVX/target/debug/deps/syn-24f6ccf389adcd33.d: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/macros.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/group.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/token.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/attr.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/bigint.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/buffer.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/classify.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/custom_keyword.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/custom_punctuation.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/data.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/derive.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/drops.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/error.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/expr.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/ext.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/fixup.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/generics.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/ident.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/lifetime.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/lit.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/lookahead.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/mac.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/meta.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/op.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/parse.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/discouraged.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/parse_macro_input.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/parse_quote.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/path.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/precedence.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/print.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/punctuated.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/restriction.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/sealed.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/scan_expr.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/span.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/spanned.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/thread.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/ty.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/verbatim.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/export.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/gen/clone.rs + +/home/simon/.openclaw/workspace/rustVX/target/debug/deps/libsyn-24f6ccf389adcd33.rlib: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/macros.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/group.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/token.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/attr.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/bigint.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/buffer.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/classify.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/custom_keyword.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/custom_punctuation.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/data.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/derive.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/drops.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/error.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/expr.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/ext.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/fixup.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/generics.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/ident.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/lifetime.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/lit.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/lookahead.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/mac.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/meta.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/op.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/parse.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/discouraged.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/parse_macro_input.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/parse_quote.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/path.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/precedence.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/print.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/punctuated.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/restriction.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/sealed.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/scan_expr.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/span.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/spanned.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/thread.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/ty.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/verbatim.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/export.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/gen/clone.rs + +/home/simon/.openclaw/workspace/rustVX/target/debug/deps/libsyn-24f6ccf389adcd33.rmeta: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/macros.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/group.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/token.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/attr.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/bigint.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/buffer.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/classify.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/custom_keyword.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/custom_punctuation.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/data.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/derive.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/drops.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/error.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/expr.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/ext.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/fixup.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/generics.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/ident.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/lifetime.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/lit.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/lookahead.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/mac.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/meta.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/op.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/parse.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/discouraged.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/parse_macro_input.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/parse_quote.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/path.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/precedence.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/print.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/punctuated.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/restriction.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/sealed.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/scan_expr.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/span.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/spanned.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/thread.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/ty.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/verbatim.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/export.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/gen/clone.rs +======= /home/simon/.openclaw/workspace/rustvx/target/debug/deps/syn-24f6ccf389adcd33.d: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/macros.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/group.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/token.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/attr.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/bigint.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/buffer.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/classify.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/custom_keyword.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/custom_punctuation.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/data.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/derive.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/drops.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/error.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/expr.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/ext.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/fixup.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/generics.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/ident.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/lifetime.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/lit.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/lookahead.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/mac.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/meta.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/op.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/parse.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/discouraged.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/parse_macro_input.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/parse_quote.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/path.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/precedence.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/print.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/punctuated.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/restriction.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/sealed.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/scan_expr.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/span.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/spanned.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/thread.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/ty.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/verbatim.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/export.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/gen/clone.rs /home/simon/.openclaw/workspace/rustvx/target/debug/deps/libsyn-24f6ccf389adcd33.rlib: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/macros.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/group.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/token.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/attr.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/bigint.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/buffer.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/classify.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/custom_keyword.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/custom_punctuation.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/data.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/derive.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/drops.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/error.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/expr.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/ext.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/fixup.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/generics.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/ident.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/lifetime.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/lit.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/lookahead.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/mac.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/meta.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/op.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/parse.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/discouraged.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/parse_macro_input.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/parse_quote.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/path.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/precedence.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/print.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/punctuated.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/restriction.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/sealed.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/scan_expr.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/span.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/spanned.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/thread.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/ty.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/verbatim.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/export.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/gen/clone.rs /home/simon/.openclaw/workspace/rustvx/target/debug/deps/libsyn-24f6ccf389adcd33.rmeta: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/macros.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/group.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/token.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/attr.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/bigint.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/buffer.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/classify.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/custom_keyword.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/custom_punctuation.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/data.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/derive.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/drops.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/error.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/expr.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/ext.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/fixup.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/generics.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/ident.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/lifetime.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/lit.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/lookahead.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/mac.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/meta.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/op.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/parse.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/discouraged.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/parse_macro_input.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/parse_quote.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/path.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/precedence.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/print.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/punctuated.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/restriction.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/sealed.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/scan_expr.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/span.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/spanned.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/thread.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/ty.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/verbatim.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/export.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/gen/clone.rs +>>>>>>> origin/master /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/lib.rs: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/macros.rs: diff --git a/target/debug/deps/thiserror-cd4f18081aae5774.d b/target/debug/deps/thiserror-cd4f18081aae5774.d index 300f371..a2145ed 100644 --- a/target/debug/deps/thiserror-cd4f18081aae5774.d +++ b/target/debug/deps/thiserror-cd4f18081aae5774.d @@ -1,8 +1,16 @@ +<<<<<<< HEAD +/home/simon/.openclaw/workspace/rustVX/target/debug/deps/thiserror-cd4f18081aae5774.d: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/src/aserror.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/src/display.rs + +/home/simon/.openclaw/workspace/rustVX/target/debug/deps/libthiserror-cd4f18081aae5774.rlib: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/src/aserror.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/src/display.rs + +/home/simon/.openclaw/workspace/rustVX/target/debug/deps/libthiserror-cd4f18081aae5774.rmeta: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/src/aserror.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/src/display.rs +======= /home/simon/.openclaw/workspace/rustvx/target/debug/deps/thiserror-cd4f18081aae5774.d: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/src/aserror.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/src/display.rs /home/simon/.openclaw/workspace/rustvx/target/debug/deps/libthiserror-cd4f18081aae5774.rlib: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/src/aserror.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/src/display.rs /home/simon/.openclaw/workspace/rustvx/target/debug/deps/libthiserror-cd4f18081aae5774.rmeta: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/src/aserror.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/src/display.rs +>>>>>>> origin/master /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/src/lib.rs: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/src/aserror.rs: diff --git a/target/debug/deps/thiserror_impl-29fd9f6d4fc8991f.d b/target/debug/deps/thiserror_impl-29fd9f6d4fc8991f.d index 83dcadd..c658a03 100644 --- a/target/debug/deps/thiserror_impl-29fd9f6d4fc8991f.d +++ b/target/debug/deps/thiserror_impl-29fd9f6d4fc8991f.d @@ -1,6 +1,12 @@ +<<<<<<< HEAD +/home/simon/.openclaw/workspace/rustVX/target/debug/deps/thiserror_impl-29fd9f6d4fc8991f.d: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/ast.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/attr.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/expand.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/fmt.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/generics.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/prop.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/scan_expr.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/span.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/valid.rs + +/home/simon/.openclaw/workspace/rustVX/target/debug/deps/libthiserror_impl-29fd9f6d4fc8991f.so: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/ast.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/attr.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/expand.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/fmt.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/generics.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/prop.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/scan_expr.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/span.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/valid.rs +======= /home/simon/.openclaw/workspace/rustvx/target/debug/deps/thiserror_impl-29fd9f6d4fc8991f.d: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/ast.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/attr.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/expand.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/fmt.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/generics.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/prop.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/scan_expr.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/span.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/valid.rs /home/simon/.openclaw/workspace/rustvx/target/debug/deps/libthiserror_impl-29fd9f6d4fc8991f.so: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/ast.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/attr.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/expand.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/fmt.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/generics.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/prop.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/scan_expr.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/span.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/valid.rs +>>>>>>> origin/master /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/lib.rs: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/ast.rs: diff --git a/target/debug/deps/unicode_ident-2046154b3dc3f7c4.d b/target/debug/deps/unicode_ident-2046154b3dc3f7c4.d index fd58852..18c5abd 100644 --- a/target/debug/deps/unicode_ident-2046154b3dc3f7c4.d +++ b/target/debug/deps/unicode_ident-2046154b3dc3f7c4.d @@ -1,8 +1,16 @@ +<<<<<<< HEAD +/home/simon/.openclaw/workspace/rustVX/target/debug/deps/unicode_ident-2046154b3dc3f7c4.d: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-ident-1.0.24/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-ident-1.0.24/src/tables.rs + +/home/simon/.openclaw/workspace/rustVX/target/debug/deps/libunicode_ident-2046154b3dc3f7c4.rlib: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-ident-1.0.24/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-ident-1.0.24/src/tables.rs + +/home/simon/.openclaw/workspace/rustVX/target/debug/deps/libunicode_ident-2046154b3dc3f7c4.rmeta: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-ident-1.0.24/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-ident-1.0.24/src/tables.rs +======= /home/simon/.openclaw/workspace/rustvx/target/debug/deps/unicode_ident-2046154b3dc3f7c4.d: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-ident-1.0.24/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-ident-1.0.24/src/tables.rs /home/simon/.openclaw/workspace/rustvx/target/debug/deps/libunicode_ident-2046154b3dc3f7c4.rlib: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-ident-1.0.24/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-ident-1.0.24/src/tables.rs /home/simon/.openclaw/workspace/rustvx/target/debug/deps/libunicode_ident-2046154b3dc3f7c4.rmeta: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-ident-1.0.24/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-ident-1.0.24/src/tables.rs +>>>>>>> origin/master /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-ident-1.0.24/src/lib.rs: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-ident-1.0.24/src/tables.rs: diff --git a/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafprtj4t-0w8ikfd-etqd2bsqlwl8phzp2age5b15c/09zeysz9ls0fozygi8lwfmuy1.o b/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafprtj4t-0w8ikfd-etqd2bsqlwl8phzp2age5b15c/09zeysz9ls0fozygi8lwfmuy1.o new file mode 100644 index 0000000..a90f47f Binary files /dev/null and b/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafprtj4t-0w8ikfd-etqd2bsqlwl8phzp2age5b15c/09zeysz9ls0fozygi8lwfmuy1.o differ diff --git a/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafprtj4t-0w8ikfd-etqd2bsqlwl8phzp2age5b15c/244py2znu8zwfqs2lzk69o808.o b/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafprtj4t-0w8ikfd-etqd2bsqlwl8phzp2age5b15c/244py2znu8zwfqs2lzk69o808.o new file mode 100644 index 0000000..57d8504 Binary files /dev/null and b/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafprtj4t-0w8ikfd-etqd2bsqlwl8phzp2age5b15c/244py2znu8zwfqs2lzk69o808.o differ diff --git a/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafprtj4t-0w8ikfd-etqd2bsqlwl8phzp2age5b15c/28zfo39l14tpw23cy3mllxqrw.o b/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafprtj4t-0w8ikfd-etqd2bsqlwl8phzp2age5b15c/28zfo39l14tpw23cy3mllxqrw.o new file mode 100644 index 0000000..9d0b30c Binary files /dev/null and b/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafprtj4t-0w8ikfd-etqd2bsqlwl8phzp2age5b15c/28zfo39l14tpw23cy3mllxqrw.o differ diff --git a/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafprtj4t-0w8ikfd-etqd2bsqlwl8phzp2age5b15c/2cyg11gw8j5ssjjism7ojugs6.o b/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafprtj4t-0w8ikfd-etqd2bsqlwl8phzp2age5b15c/2cyg11gw8j5ssjjism7ojugs6.o new file mode 100644 index 0000000..00cbc06 Binary files /dev/null and b/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafprtj4t-0w8ikfd-etqd2bsqlwl8phzp2age5b15c/2cyg11gw8j5ssjjism7ojugs6.o differ diff --git a/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafprtj4t-0w8ikfd-etqd2bsqlwl8phzp2age5b15c/2tavuxyyv9m0n06d9fp45aqyp.o b/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafprtj4t-0w8ikfd-etqd2bsqlwl8phzp2age5b15c/2tavuxyyv9m0n06d9fp45aqyp.o new file mode 100644 index 0000000..a8ba8e8 Binary files /dev/null and b/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafprtj4t-0w8ikfd-etqd2bsqlwl8phzp2age5b15c/2tavuxyyv9m0n06d9fp45aqyp.o differ diff --git a/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafprtj4t-0w8ikfd-etqd2bsqlwl8phzp2age5b15c/34n4tb8b6av109elyxzv0runt.o b/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafprtj4t-0w8ikfd-etqd2bsqlwl8phzp2age5b15c/34n4tb8b6av109elyxzv0runt.o new file mode 100644 index 0000000..5a1fe21 Binary files /dev/null and b/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafprtj4t-0w8ikfd-etqd2bsqlwl8phzp2age5b15c/34n4tb8b6av109elyxzv0runt.o differ diff --git a/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafprtj4t-0w8ikfd-etqd2bsqlwl8phzp2age5b15c/3q5cw6plqbeumkfpaclhmytpr.o b/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafprtj4t-0w8ikfd-etqd2bsqlwl8phzp2age5b15c/3q5cw6plqbeumkfpaclhmytpr.o new file mode 100644 index 0000000..8555b06 Binary files /dev/null and b/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafprtj4t-0w8ikfd-etqd2bsqlwl8phzp2age5b15c/3q5cw6plqbeumkfpaclhmytpr.o differ diff --git a/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafprtj4t-0w8ikfd-etqd2bsqlwl8phzp2age5b15c/43fmps9mhr3ggl2zsd8lzk6so.o b/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafprtj4t-0w8ikfd-etqd2bsqlwl8phzp2age5b15c/43fmps9mhr3ggl2zsd8lzk6so.o new file mode 100644 index 0000000..e471f68 Binary files /dev/null and b/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafprtj4t-0w8ikfd-etqd2bsqlwl8phzp2age5b15c/43fmps9mhr3ggl2zsd8lzk6so.o differ diff --git a/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafprtj4t-0w8ikfd-etqd2bsqlwl8phzp2age5b15c/4h9enhpyhu84gk3dfdgcajj9w.o b/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafprtj4t-0w8ikfd-etqd2bsqlwl8phzp2age5b15c/4h9enhpyhu84gk3dfdgcajj9w.o new file mode 100644 index 0000000..f194c27 Binary files /dev/null and b/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafprtj4t-0w8ikfd-etqd2bsqlwl8phzp2age5b15c/4h9enhpyhu84gk3dfdgcajj9w.o differ diff --git a/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafprtj4t-0w8ikfd-etqd2bsqlwl8phzp2age5b15c/4jh1c267nszohifttet7uui80.o b/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafprtj4t-0w8ikfd-etqd2bsqlwl8phzp2age5b15c/4jh1c267nszohifttet7uui80.o new file mode 100644 index 0000000..f8240b5 Binary files /dev/null and b/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafprtj4t-0w8ikfd-etqd2bsqlwl8phzp2age5b15c/4jh1c267nszohifttet7uui80.o differ diff --git a/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafprtj4t-0w8ikfd-etqd2bsqlwl8phzp2age5b15c/4v3av8dqevjrhqgrgqg9q78z0.o b/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafprtj4t-0w8ikfd-etqd2bsqlwl8phzp2age5b15c/4v3av8dqevjrhqgrgqg9q78z0.o new file mode 100644 index 0000000..f6624ae Binary files /dev/null and b/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafprtj4t-0w8ikfd-etqd2bsqlwl8phzp2age5b15c/4v3av8dqevjrhqgrgqg9q78z0.o differ diff --git a/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafprtj4t-0w8ikfd-etqd2bsqlwl8phzp2age5b15c/4x88sxry9q1059k5jhbyak6wt.o b/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafprtj4t-0w8ikfd-etqd2bsqlwl8phzp2age5b15c/4x88sxry9q1059k5jhbyak6wt.o new file mode 100644 index 0000000..fb254c1 Binary files /dev/null and b/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafprtj4t-0w8ikfd-etqd2bsqlwl8phzp2age5b15c/4x88sxry9q1059k5jhbyak6wt.o differ diff --git a/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafprtj4t-0w8ikfd-etqd2bsqlwl8phzp2age5b15c/5825qx35ttr0swliljh8l0vi6.o b/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafprtj4t-0w8ikfd-etqd2bsqlwl8phzp2age5b15c/5825qx35ttr0swliljh8l0vi6.o new file mode 100644 index 0000000..afa5648 Binary files /dev/null and b/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafprtj4t-0w8ikfd-etqd2bsqlwl8phzp2age5b15c/5825qx35ttr0swliljh8l0vi6.o differ diff --git a/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafprtj4t-0w8ikfd-etqd2bsqlwl8phzp2age5b15c/5ltyg0ck10vf2czu9158ul0tb.o b/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafprtj4t-0w8ikfd-etqd2bsqlwl8phzp2age5b15c/5ltyg0ck10vf2czu9158ul0tb.o new file mode 100644 index 0000000..9ee4e38 Binary files /dev/null and b/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafprtj4t-0w8ikfd-etqd2bsqlwl8phzp2age5b15c/5ltyg0ck10vf2czu9158ul0tb.o differ diff --git a/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafprtj4t-0w8ikfd-etqd2bsqlwl8phzp2age5b15c/5teqzsde9gnp2mgche9v56a1m.o b/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafprtj4t-0w8ikfd-etqd2bsqlwl8phzp2age5b15c/5teqzsde9gnp2mgche9v56a1m.o new file mode 100644 index 0000000..b9f3c15 Binary files /dev/null and b/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafprtj4t-0w8ikfd-etqd2bsqlwl8phzp2age5b15c/5teqzsde9gnp2mgche9v56a1m.o differ diff --git a/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafprtj4t-0w8ikfd-etqd2bsqlwl8phzp2age5b15c/668yd9635x4j6udz080mos6f4.o b/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafprtj4t-0w8ikfd-etqd2bsqlwl8phzp2age5b15c/668yd9635x4j6udz080mos6f4.o new file mode 100644 index 0000000..dedbfeb Binary files /dev/null and b/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafprtj4t-0w8ikfd-etqd2bsqlwl8phzp2age5b15c/668yd9635x4j6udz080mos6f4.o differ diff --git a/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafprtj4t-0w8ikfd-etqd2bsqlwl8phzp2age5b15c/717oc6m98iw7gtsxuupfufeo1.o b/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafprtj4t-0w8ikfd-etqd2bsqlwl8phzp2age5b15c/717oc6m98iw7gtsxuupfufeo1.o new file mode 100644 index 0000000..4c11e11 Binary files /dev/null and b/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafprtj4t-0w8ikfd-etqd2bsqlwl8phzp2age5b15c/717oc6m98iw7gtsxuupfufeo1.o differ diff --git a/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafprtj4t-0w8ikfd-etqd2bsqlwl8phzp2age5b15c/78frp4kacant986aiecevhmcu.o b/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafprtj4t-0w8ikfd-etqd2bsqlwl8phzp2age5b15c/78frp4kacant986aiecevhmcu.o new file mode 100644 index 0000000..089882f Binary files /dev/null and b/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafprtj4t-0w8ikfd-etqd2bsqlwl8phzp2age5b15c/78frp4kacant986aiecevhmcu.o differ diff --git a/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafprtj4t-0w8ikfd-etqd2bsqlwl8phzp2age5b15c/7qpuu02eg5d5k7om5fcge9nnn.o b/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafprtj4t-0w8ikfd-etqd2bsqlwl8phzp2age5b15c/7qpuu02eg5d5k7om5fcge9nnn.o new file mode 100644 index 0000000..44ea086 Binary files /dev/null and b/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafprtj4t-0w8ikfd-etqd2bsqlwl8phzp2age5b15c/7qpuu02eg5d5k7om5fcge9nnn.o differ diff --git a/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafprtj4t-0w8ikfd-etqd2bsqlwl8phzp2age5b15c/80c0344dk3nuzzi1cn8oppwej.o b/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafprtj4t-0w8ikfd-etqd2bsqlwl8phzp2age5b15c/80c0344dk3nuzzi1cn8oppwej.o new file mode 100644 index 0000000..2498ce3 Binary files /dev/null and b/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafprtj4t-0w8ikfd-etqd2bsqlwl8phzp2age5b15c/80c0344dk3nuzzi1cn8oppwej.o differ diff --git a/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafprtj4t-0w8ikfd-etqd2bsqlwl8phzp2age5b15c/82tlb6l5ygi8obssq142jjdab.o b/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafprtj4t-0w8ikfd-etqd2bsqlwl8phzp2age5b15c/82tlb6l5ygi8obssq142jjdab.o new file mode 100644 index 0000000..aba02ac Binary files /dev/null and b/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafprtj4t-0w8ikfd-etqd2bsqlwl8phzp2age5b15c/82tlb6l5ygi8obssq142jjdab.o differ diff --git a/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafprtj4t-0w8ikfd-etqd2bsqlwl8phzp2age5b15c/83tzyl6g4n6ivt7vnp4jptz6v.o b/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafprtj4t-0w8ikfd-etqd2bsqlwl8phzp2age5b15c/83tzyl6g4n6ivt7vnp4jptz6v.o new file mode 100644 index 0000000..ca9c388 Binary files /dev/null and b/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafprtj4t-0w8ikfd-etqd2bsqlwl8phzp2age5b15c/83tzyl6g4n6ivt7vnp4jptz6v.o differ diff --git a/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafprtj4t-0w8ikfd-etqd2bsqlwl8phzp2age5b15c/8y3vg7jhf9gq7a6t7jyxdgjah.o b/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafprtj4t-0w8ikfd-etqd2bsqlwl8phzp2age5b15c/8y3vg7jhf9gq7a6t7jyxdgjah.o new file mode 100644 index 0000000..726b1ee Binary files /dev/null and b/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafprtj4t-0w8ikfd-etqd2bsqlwl8phzp2age5b15c/8y3vg7jhf9gq7a6t7jyxdgjah.o differ diff --git a/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafprtj4t-0w8ikfd-etqd2bsqlwl8phzp2age5b15c/9lqd11gb5fiw42are1w5hm6c9.o b/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafprtj4t-0w8ikfd-etqd2bsqlwl8phzp2age5b15c/9lqd11gb5fiw42are1w5hm6c9.o new file mode 100644 index 0000000..4e82bfd Binary files /dev/null and b/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafprtj4t-0w8ikfd-etqd2bsqlwl8phzp2age5b15c/9lqd11gb5fiw42are1w5hm6c9.o differ diff --git a/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafprtj4t-0w8ikfd-etqd2bsqlwl8phzp2age5b15c/9ro45vx5ig5ivvdndd42su6lw.o b/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafprtj4t-0w8ikfd-etqd2bsqlwl8phzp2age5b15c/9ro45vx5ig5ivvdndd42su6lw.o new file mode 100644 index 0000000..f929f45 Binary files /dev/null and b/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafprtj4t-0w8ikfd-etqd2bsqlwl8phzp2age5b15c/9ro45vx5ig5ivvdndd42su6lw.o differ diff --git a/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafprtj4t-0w8ikfd-etqd2bsqlwl8phzp2age5b15c/a2jpb4gnq4dnch0lc3mnu6bzw.o b/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafprtj4t-0w8ikfd-etqd2bsqlwl8phzp2age5b15c/a2jpb4gnq4dnch0lc3mnu6bzw.o new file mode 100644 index 0000000..924c2cb Binary files /dev/null and b/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafprtj4t-0w8ikfd-etqd2bsqlwl8phzp2age5b15c/a2jpb4gnq4dnch0lc3mnu6bzw.o differ diff --git a/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafprtj4t-0w8ikfd-etqd2bsqlwl8phzp2age5b15c/aky51ogkh4135v4valef6ehuh.o b/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafprtj4t-0w8ikfd-etqd2bsqlwl8phzp2age5b15c/aky51ogkh4135v4valef6ehuh.o new file mode 100644 index 0000000..db8282e Binary files /dev/null and b/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafprtj4t-0w8ikfd-etqd2bsqlwl8phzp2age5b15c/aky51ogkh4135v4valef6ehuh.o differ diff --git a/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafprtj4t-0w8ikfd-etqd2bsqlwl8phzp2age5b15c/b5jalweayupx3uxh5lu2hrf1w.o b/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafprtj4t-0w8ikfd-etqd2bsqlwl8phzp2age5b15c/b5jalweayupx3uxh5lu2hrf1w.o new file mode 100644 index 0000000..fb7eca7 Binary files /dev/null and b/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafprtj4t-0w8ikfd-etqd2bsqlwl8phzp2age5b15c/b5jalweayupx3uxh5lu2hrf1w.o differ diff --git a/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafprtj4t-0w8ikfd-etqd2bsqlwl8phzp2age5b15c/c1nkwpo363w6vztbs22hjsa6c.o b/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafprtj4t-0w8ikfd-etqd2bsqlwl8phzp2age5b15c/c1nkwpo363w6vztbs22hjsa6c.o new file mode 100644 index 0000000..c505c49 Binary files /dev/null and b/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafprtj4t-0w8ikfd-etqd2bsqlwl8phzp2age5b15c/c1nkwpo363w6vztbs22hjsa6c.o differ diff --git a/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafprtj4t-0w8ikfd-etqd2bsqlwl8phzp2age5b15c/c5s7w97xmvzq345ebumiip6un.o b/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafprtj4t-0w8ikfd-etqd2bsqlwl8phzp2age5b15c/c5s7w97xmvzq345ebumiip6un.o new file mode 100644 index 0000000..17c1488 Binary files /dev/null and b/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafprtj4t-0w8ikfd-etqd2bsqlwl8phzp2age5b15c/c5s7w97xmvzq345ebumiip6un.o differ diff --git a/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafprtj4t-0w8ikfd-etqd2bsqlwl8phzp2age5b15c/cb5u8xxben8u2xuazxeb6slh7.o b/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafprtj4t-0w8ikfd-etqd2bsqlwl8phzp2age5b15c/cb5u8xxben8u2xuazxeb6slh7.o new file mode 100644 index 0000000..2296971 Binary files /dev/null and b/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafprtj4t-0w8ikfd-etqd2bsqlwl8phzp2age5b15c/cb5u8xxben8u2xuazxeb6slh7.o differ diff --git a/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafprtj4t-0w8ikfd-etqd2bsqlwl8phzp2age5b15c/cfyrfjjh9t7d8zu7va77fctnp.o b/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafprtj4t-0w8ikfd-etqd2bsqlwl8phzp2age5b15c/cfyrfjjh9t7d8zu7va77fctnp.o new file mode 100644 index 0000000..81c1ad4 Binary files /dev/null and b/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafprtj4t-0w8ikfd-etqd2bsqlwl8phzp2age5b15c/cfyrfjjh9t7d8zu7va77fctnp.o differ diff --git a/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafprtj4t-0w8ikfd-etqd2bsqlwl8phzp2age5b15c/dcs3155aj6hhe1229r6hh9kwo.o b/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafprtj4t-0w8ikfd-etqd2bsqlwl8phzp2age5b15c/dcs3155aj6hhe1229r6hh9kwo.o new file mode 100644 index 0000000..59ec238 Binary files /dev/null and b/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafprtj4t-0w8ikfd-etqd2bsqlwl8phzp2age5b15c/dcs3155aj6hhe1229r6hh9kwo.o differ diff --git a/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafprtj4t-0w8ikfd-etqd2bsqlwl8phzp2age5b15c/dep-graph.bin b/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafprtj4t-0w8ikfd-etqd2bsqlwl8phzp2age5b15c/dep-graph.bin new file mode 100644 index 0000000..bcc8165 Binary files /dev/null and b/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafprtj4t-0w8ikfd-etqd2bsqlwl8phzp2age5b15c/dep-graph.bin differ diff --git a/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafprtj4t-0w8ikfd-etqd2bsqlwl8phzp2age5b15c/dvpu5elhkryo61kbc98q7lrdg.o b/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafprtj4t-0w8ikfd-etqd2bsqlwl8phzp2age5b15c/dvpu5elhkryo61kbc98q7lrdg.o new file mode 100644 index 0000000..8e71624 Binary files /dev/null and b/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafprtj4t-0w8ikfd-etqd2bsqlwl8phzp2age5b15c/dvpu5elhkryo61kbc98q7lrdg.o differ diff --git a/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafprtj4t-0w8ikfd-etqd2bsqlwl8phzp2age5b15c/eik8wkar7nc0qmm1dyiup1y9g.o b/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafprtj4t-0w8ikfd-etqd2bsqlwl8phzp2age5b15c/eik8wkar7nc0qmm1dyiup1y9g.o new file mode 100644 index 0000000..c2d8dd4 Binary files /dev/null and b/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafprtj4t-0w8ikfd-etqd2bsqlwl8phzp2age5b15c/eik8wkar7nc0qmm1dyiup1y9g.o differ diff --git a/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafprtj4t-0w8ikfd-etqd2bsqlwl8phzp2age5b15c/metadata.rmeta b/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafprtj4t-0w8ikfd-etqd2bsqlwl8phzp2age5b15c/metadata.rmeta new file mode 100644 index 0000000..7dc6e84 Binary files /dev/null and b/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafprtj4t-0w8ikfd-etqd2bsqlwl8phzp2age5b15c/metadata.rmeta differ diff --git a/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafprtj4t-0w8ikfd-etqd2bsqlwl8phzp2age5b15c/query-cache.bin b/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafprtj4t-0w8ikfd-etqd2bsqlwl8phzp2age5b15c/query-cache.bin new file mode 100644 index 0000000..0776d9b Binary files /dev/null and b/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafprtj4t-0w8ikfd-etqd2bsqlwl8phzp2age5b15c/query-cache.bin differ diff --git a/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafprtj4t-0w8ikfd-etqd2bsqlwl8phzp2age5b15c/work-products.bin b/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafprtj4t-0w8ikfd-etqd2bsqlwl8phzp2age5b15c/work-products.bin new file mode 100644 index 0000000..33bc516 Binary files /dev/null and b/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafprtj4t-0w8ikfd-etqd2bsqlwl8phzp2age5b15c/work-products.bin differ diff --git a/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafprtj4t-0w8ikfd.lock b/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafprtj4t-0w8ikfd.lock new file mode 100644 index 0000000..e69de29 diff --git a/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafqbqolv-09epjdi-0ir6duzom4ps9dohsb2rov1qs/09zeysz9ls0fozygi8lwfmuy1.o b/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafqbqolv-09epjdi-0ir6duzom4ps9dohsb2rov1qs/09zeysz9ls0fozygi8lwfmuy1.o new file mode 100644 index 0000000..a90f47f Binary files /dev/null and b/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafqbqolv-09epjdi-0ir6duzom4ps9dohsb2rov1qs/09zeysz9ls0fozygi8lwfmuy1.o differ diff --git a/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafqbqolv-09epjdi-0ir6duzom4ps9dohsb2rov1qs/244py2znu8zwfqs2lzk69o808.o b/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafqbqolv-09epjdi-0ir6duzom4ps9dohsb2rov1qs/244py2znu8zwfqs2lzk69o808.o new file mode 100644 index 0000000..57d8504 Binary files /dev/null and b/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafqbqolv-09epjdi-0ir6duzom4ps9dohsb2rov1qs/244py2znu8zwfqs2lzk69o808.o differ diff --git a/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafqbqolv-09epjdi-0ir6duzom4ps9dohsb2rov1qs/28zfo39l14tpw23cy3mllxqrw.o b/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafqbqolv-09epjdi-0ir6duzom4ps9dohsb2rov1qs/28zfo39l14tpw23cy3mllxqrw.o new file mode 100644 index 0000000..9d0b30c Binary files /dev/null and b/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafqbqolv-09epjdi-0ir6duzom4ps9dohsb2rov1qs/28zfo39l14tpw23cy3mllxqrw.o differ diff --git a/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafqbqolv-09epjdi-0ir6duzom4ps9dohsb2rov1qs/2cyg11gw8j5ssjjism7ojugs6.o b/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafqbqolv-09epjdi-0ir6duzom4ps9dohsb2rov1qs/2cyg11gw8j5ssjjism7ojugs6.o new file mode 100644 index 0000000..00cbc06 Binary files /dev/null and b/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafqbqolv-09epjdi-0ir6duzom4ps9dohsb2rov1qs/2cyg11gw8j5ssjjism7ojugs6.o differ diff --git a/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafqbqolv-09epjdi-0ir6duzom4ps9dohsb2rov1qs/2tavuxyyv9m0n06d9fp45aqyp.o b/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafqbqolv-09epjdi-0ir6duzom4ps9dohsb2rov1qs/2tavuxyyv9m0n06d9fp45aqyp.o new file mode 100644 index 0000000..a8ba8e8 Binary files /dev/null and b/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafqbqolv-09epjdi-0ir6duzom4ps9dohsb2rov1qs/2tavuxyyv9m0n06d9fp45aqyp.o differ diff --git a/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafqbqolv-09epjdi-0ir6duzom4ps9dohsb2rov1qs/34n4tb8b6av109elyxzv0runt.o b/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafqbqolv-09epjdi-0ir6duzom4ps9dohsb2rov1qs/34n4tb8b6av109elyxzv0runt.o new file mode 100644 index 0000000..5a1fe21 Binary files /dev/null and b/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafqbqolv-09epjdi-0ir6duzom4ps9dohsb2rov1qs/34n4tb8b6av109elyxzv0runt.o differ diff --git a/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafqbqolv-09epjdi-0ir6duzom4ps9dohsb2rov1qs/3q5cw6plqbeumkfpaclhmytpr.o b/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafqbqolv-09epjdi-0ir6duzom4ps9dohsb2rov1qs/3q5cw6plqbeumkfpaclhmytpr.o new file mode 100644 index 0000000..8555b06 Binary files /dev/null and b/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafqbqolv-09epjdi-0ir6duzom4ps9dohsb2rov1qs/3q5cw6plqbeumkfpaclhmytpr.o differ diff --git a/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafqbqolv-09epjdi-0ir6duzom4ps9dohsb2rov1qs/43fmps9mhr3ggl2zsd8lzk6so.o b/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafqbqolv-09epjdi-0ir6duzom4ps9dohsb2rov1qs/43fmps9mhr3ggl2zsd8lzk6so.o new file mode 100644 index 0000000..e471f68 Binary files /dev/null and b/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafqbqolv-09epjdi-0ir6duzom4ps9dohsb2rov1qs/43fmps9mhr3ggl2zsd8lzk6so.o differ diff --git a/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafqbqolv-09epjdi-0ir6duzom4ps9dohsb2rov1qs/4h9enhpyhu84gk3dfdgcajj9w.o b/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafqbqolv-09epjdi-0ir6duzom4ps9dohsb2rov1qs/4h9enhpyhu84gk3dfdgcajj9w.o new file mode 100644 index 0000000..f194c27 Binary files /dev/null and b/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafqbqolv-09epjdi-0ir6duzom4ps9dohsb2rov1qs/4h9enhpyhu84gk3dfdgcajj9w.o differ diff --git a/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafqbqolv-09epjdi-0ir6duzom4ps9dohsb2rov1qs/4jh1c267nszohifttet7uui80.o b/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafqbqolv-09epjdi-0ir6duzom4ps9dohsb2rov1qs/4jh1c267nszohifttet7uui80.o new file mode 100644 index 0000000..f8240b5 Binary files /dev/null and b/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafqbqolv-09epjdi-0ir6duzom4ps9dohsb2rov1qs/4jh1c267nszohifttet7uui80.o differ diff --git a/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafqbqolv-09epjdi-0ir6duzom4ps9dohsb2rov1qs/4v3av8dqevjrhqgrgqg9q78z0.o b/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafqbqolv-09epjdi-0ir6duzom4ps9dohsb2rov1qs/4v3av8dqevjrhqgrgqg9q78z0.o new file mode 100644 index 0000000..f6624ae Binary files /dev/null and b/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafqbqolv-09epjdi-0ir6duzom4ps9dohsb2rov1qs/4v3av8dqevjrhqgrgqg9q78z0.o differ diff --git a/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafqbqolv-09epjdi-0ir6duzom4ps9dohsb2rov1qs/4x88sxry9q1059k5jhbyak6wt.o b/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafqbqolv-09epjdi-0ir6duzom4ps9dohsb2rov1qs/4x88sxry9q1059k5jhbyak6wt.o new file mode 100644 index 0000000..fb254c1 Binary files /dev/null and b/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafqbqolv-09epjdi-0ir6duzom4ps9dohsb2rov1qs/4x88sxry9q1059k5jhbyak6wt.o differ diff --git a/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafqbqolv-09epjdi-0ir6duzom4ps9dohsb2rov1qs/5825qx35ttr0swliljh8l0vi6.o b/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafqbqolv-09epjdi-0ir6duzom4ps9dohsb2rov1qs/5825qx35ttr0swliljh8l0vi6.o new file mode 100644 index 0000000..afa5648 Binary files /dev/null and b/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafqbqolv-09epjdi-0ir6duzom4ps9dohsb2rov1qs/5825qx35ttr0swliljh8l0vi6.o differ diff --git a/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafqbqolv-09epjdi-0ir6duzom4ps9dohsb2rov1qs/5ltyg0ck10vf2czu9158ul0tb.o b/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafqbqolv-09epjdi-0ir6duzom4ps9dohsb2rov1qs/5ltyg0ck10vf2czu9158ul0tb.o new file mode 100644 index 0000000..9ee4e38 Binary files /dev/null and b/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafqbqolv-09epjdi-0ir6duzom4ps9dohsb2rov1qs/5ltyg0ck10vf2czu9158ul0tb.o differ diff --git a/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafqbqolv-09epjdi-0ir6duzom4ps9dohsb2rov1qs/5teqzsde9gnp2mgche9v56a1m.o b/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafqbqolv-09epjdi-0ir6duzom4ps9dohsb2rov1qs/5teqzsde9gnp2mgche9v56a1m.o new file mode 100644 index 0000000..b9f3c15 Binary files /dev/null and b/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafqbqolv-09epjdi-0ir6duzom4ps9dohsb2rov1qs/5teqzsde9gnp2mgche9v56a1m.o differ diff --git a/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafqbqolv-09epjdi-0ir6duzom4ps9dohsb2rov1qs/668yd9635x4j6udz080mos6f4.o b/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafqbqolv-09epjdi-0ir6duzom4ps9dohsb2rov1qs/668yd9635x4j6udz080mos6f4.o new file mode 100644 index 0000000..dedbfeb Binary files /dev/null and b/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafqbqolv-09epjdi-0ir6duzom4ps9dohsb2rov1qs/668yd9635x4j6udz080mos6f4.o differ diff --git a/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafqbqolv-09epjdi-0ir6duzom4ps9dohsb2rov1qs/717oc6m98iw7gtsxuupfufeo1.o b/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafqbqolv-09epjdi-0ir6duzom4ps9dohsb2rov1qs/717oc6m98iw7gtsxuupfufeo1.o new file mode 100644 index 0000000..4c11e11 Binary files /dev/null and b/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafqbqolv-09epjdi-0ir6duzom4ps9dohsb2rov1qs/717oc6m98iw7gtsxuupfufeo1.o differ diff --git a/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafqbqolv-09epjdi-0ir6duzom4ps9dohsb2rov1qs/78frp4kacant986aiecevhmcu.o b/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafqbqolv-09epjdi-0ir6duzom4ps9dohsb2rov1qs/78frp4kacant986aiecevhmcu.o new file mode 100644 index 0000000..089882f Binary files /dev/null and b/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafqbqolv-09epjdi-0ir6duzom4ps9dohsb2rov1qs/78frp4kacant986aiecevhmcu.o differ diff --git a/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafqbqolv-09epjdi-0ir6duzom4ps9dohsb2rov1qs/7qpuu02eg5d5k7om5fcge9nnn.o b/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafqbqolv-09epjdi-0ir6duzom4ps9dohsb2rov1qs/7qpuu02eg5d5k7om5fcge9nnn.o new file mode 100644 index 0000000..44ea086 Binary files /dev/null and b/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafqbqolv-09epjdi-0ir6duzom4ps9dohsb2rov1qs/7qpuu02eg5d5k7om5fcge9nnn.o differ diff --git a/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafqbqolv-09epjdi-0ir6duzom4ps9dohsb2rov1qs/80c0344dk3nuzzi1cn8oppwej.o b/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafqbqolv-09epjdi-0ir6duzom4ps9dohsb2rov1qs/80c0344dk3nuzzi1cn8oppwej.o new file mode 100644 index 0000000..2498ce3 Binary files /dev/null and b/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafqbqolv-09epjdi-0ir6duzom4ps9dohsb2rov1qs/80c0344dk3nuzzi1cn8oppwej.o differ diff --git a/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafqbqolv-09epjdi-0ir6duzom4ps9dohsb2rov1qs/82tlb6l5ygi8obssq142jjdab.o b/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafqbqolv-09epjdi-0ir6duzom4ps9dohsb2rov1qs/82tlb6l5ygi8obssq142jjdab.o new file mode 100644 index 0000000..aba02ac Binary files /dev/null and b/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafqbqolv-09epjdi-0ir6duzom4ps9dohsb2rov1qs/82tlb6l5ygi8obssq142jjdab.o differ diff --git a/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafqbqolv-09epjdi-0ir6duzom4ps9dohsb2rov1qs/83tzyl6g4n6ivt7vnp4jptz6v.o b/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafqbqolv-09epjdi-0ir6duzom4ps9dohsb2rov1qs/83tzyl6g4n6ivt7vnp4jptz6v.o new file mode 100644 index 0000000..ca9c388 Binary files /dev/null and b/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafqbqolv-09epjdi-0ir6duzom4ps9dohsb2rov1qs/83tzyl6g4n6ivt7vnp4jptz6v.o differ diff --git a/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafqbqolv-09epjdi-0ir6duzom4ps9dohsb2rov1qs/8y3vg7jhf9gq7a6t7jyxdgjah.o b/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafqbqolv-09epjdi-0ir6duzom4ps9dohsb2rov1qs/8y3vg7jhf9gq7a6t7jyxdgjah.o new file mode 100644 index 0000000..726b1ee Binary files /dev/null and b/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafqbqolv-09epjdi-0ir6duzom4ps9dohsb2rov1qs/8y3vg7jhf9gq7a6t7jyxdgjah.o differ diff --git a/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafqbqolv-09epjdi-0ir6duzom4ps9dohsb2rov1qs/9lqd11gb5fiw42are1w5hm6c9.o b/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafqbqolv-09epjdi-0ir6duzom4ps9dohsb2rov1qs/9lqd11gb5fiw42are1w5hm6c9.o new file mode 100644 index 0000000..4e82bfd Binary files /dev/null and b/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafqbqolv-09epjdi-0ir6duzom4ps9dohsb2rov1qs/9lqd11gb5fiw42are1w5hm6c9.o differ diff --git a/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafqbqolv-09epjdi-0ir6duzom4ps9dohsb2rov1qs/9ro45vx5ig5ivvdndd42su6lw.o b/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafqbqolv-09epjdi-0ir6duzom4ps9dohsb2rov1qs/9ro45vx5ig5ivvdndd42su6lw.o new file mode 100644 index 0000000..f929f45 Binary files /dev/null and b/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafqbqolv-09epjdi-0ir6duzom4ps9dohsb2rov1qs/9ro45vx5ig5ivvdndd42su6lw.o differ diff --git a/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafqbqolv-09epjdi-0ir6duzom4ps9dohsb2rov1qs/a2jpb4gnq4dnch0lc3mnu6bzw.o b/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafqbqolv-09epjdi-0ir6duzom4ps9dohsb2rov1qs/a2jpb4gnq4dnch0lc3mnu6bzw.o new file mode 100644 index 0000000..924c2cb Binary files /dev/null and b/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafqbqolv-09epjdi-0ir6duzom4ps9dohsb2rov1qs/a2jpb4gnq4dnch0lc3mnu6bzw.o differ diff --git a/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafqbqolv-09epjdi-0ir6duzom4ps9dohsb2rov1qs/aky51ogkh4135v4valef6ehuh.o b/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafqbqolv-09epjdi-0ir6duzom4ps9dohsb2rov1qs/aky51ogkh4135v4valef6ehuh.o new file mode 100644 index 0000000..db8282e Binary files /dev/null and b/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafqbqolv-09epjdi-0ir6duzom4ps9dohsb2rov1qs/aky51ogkh4135v4valef6ehuh.o differ diff --git a/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafqbqolv-09epjdi-0ir6duzom4ps9dohsb2rov1qs/b5jalweayupx3uxh5lu2hrf1w.o b/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafqbqolv-09epjdi-0ir6duzom4ps9dohsb2rov1qs/b5jalweayupx3uxh5lu2hrf1w.o new file mode 100644 index 0000000..fb7eca7 Binary files /dev/null and b/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafqbqolv-09epjdi-0ir6duzom4ps9dohsb2rov1qs/b5jalweayupx3uxh5lu2hrf1w.o differ diff --git a/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafqbqolv-09epjdi-0ir6duzom4ps9dohsb2rov1qs/c1nkwpo363w6vztbs22hjsa6c.o b/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafqbqolv-09epjdi-0ir6duzom4ps9dohsb2rov1qs/c1nkwpo363w6vztbs22hjsa6c.o new file mode 100644 index 0000000..c505c49 Binary files /dev/null and b/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafqbqolv-09epjdi-0ir6duzom4ps9dohsb2rov1qs/c1nkwpo363w6vztbs22hjsa6c.o differ diff --git a/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafqbqolv-09epjdi-0ir6duzom4ps9dohsb2rov1qs/c5s7w97xmvzq345ebumiip6un.o b/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafqbqolv-09epjdi-0ir6duzom4ps9dohsb2rov1qs/c5s7w97xmvzq345ebumiip6un.o new file mode 100644 index 0000000..17c1488 Binary files /dev/null and b/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafqbqolv-09epjdi-0ir6duzom4ps9dohsb2rov1qs/c5s7w97xmvzq345ebumiip6un.o differ diff --git a/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafqbqolv-09epjdi-0ir6duzom4ps9dohsb2rov1qs/cb5u8xxben8u2xuazxeb6slh7.o b/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafqbqolv-09epjdi-0ir6duzom4ps9dohsb2rov1qs/cb5u8xxben8u2xuazxeb6slh7.o new file mode 100644 index 0000000..2296971 Binary files /dev/null and b/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafqbqolv-09epjdi-0ir6duzom4ps9dohsb2rov1qs/cb5u8xxben8u2xuazxeb6slh7.o differ diff --git a/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafqbqolv-09epjdi-0ir6duzom4ps9dohsb2rov1qs/cfyrfjjh9t7d8zu7va77fctnp.o b/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafqbqolv-09epjdi-0ir6duzom4ps9dohsb2rov1qs/cfyrfjjh9t7d8zu7va77fctnp.o new file mode 100644 index 0000000..81c1ad4 Binary files /dev/null and b/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafqbqolv-09epjdi-0ir6duzom4ps9dohsb2rov1qs/cfyrfjjh9t7d8zu7va77fctnp.o differ diff --git a/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafqbqolv-09epjdi-0ir6duzom4ps9dohsb2rov1qs/dcs3155aj6hhe1229r6hh9kwo.o b/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafqbqolv-09epjdi-0ir6duzom4ps9dohsb2rov1qs/dcs3155aj6hhe1229r6hh9kwo.o new file mode 100644 index 0000000..59ec238 Binary files /dev/null and b/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafqbqolv-09epjdi-0ir6duzom4ps9dohsb2rov1qs/dcs3155aj6hhe1229r6hh9kwo.o differ diff --git a/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafqbqolv-09epjdi-0ir6duzom4ps9dohsb2rov1qs/dep-graph.bin b/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafqbqolv-09epjdi-0ir6duzom4ps9dohsb2rov1qs/dep-graph.bin new file mode 100644 index 0000000..9842801 Binary files /dev/null and b/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafqbqolv-09epjdi-0ir6duzom4ps9dohsb2rov1qs/dep-graph.bin differ diff --git a/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafqbqolv-09epjdi-0ir6duzom4ps9dohsb2rov1qs/dvpu5elhkryo61kbc98q7lrdg.o b/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafqbqolv-09epjdi-0ir6duzom4ps9dohsb2rov1qs/dvpu5elhkryo61kbc98q7lrdg.o new file mode 100644 index 0000000..8e71624 Binary files /dev/null and b/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafqbqolv-09epjdi-0ir6duzom4ps9dohsb2rov1qs/dvpu5elhkryo61kbc98q7lrdg.o differ diff --git a/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafqbqolv-09epjdi-0ir6duzom4ps9dohsb2rov1qs/eik8wkar7nc0qmm1dyiup1y9g.o b/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafqbqolv-09epjdi-0ir6duzom4ps9dohsb2rov1qs/eik8wkar7nc0qmm1dyiup1y9g.o new file mode 100644 index 0000000..c2d8dd4 Binary files /dev/null and b/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafqbqolv-09epjdi-0ir6duzom4ps9dohsb2rov1qs/eik8wkar7nc0qmm1dyiup1y9g.o differ diff --git a/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafqbqolv-09epjdi-0ir6duzom4ps9dohsb2rov1qs/metadata.rmeta b/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafqbqolv-09epjdi-0ir6duzom4ps9dohsb2rov1qs/metadata.rmeta new file mode 100644 index 0000000..c8f7866 Binary files /dev/null and b/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafqbqolv-09epjdi-0ir6duzom4ps9dohsb2rov1qs/metadata.rmeta differ diff --git a/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafqbqolv-09epjdi-0ir6duzom4ps9dohsb2rov1qs/query-cache.bin b/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafqbqolv-09epjdi-0ir6duzom4ps9dohsb2rov1qs/query-cache.bin new file mode 100644 index 0000000..ad504d7 Binary files /dev/null and b/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafqbqolv-09epjdi-0ir6duzom4ps9dohsb2rov1qs/query-cache.bin differ diff --git a/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafqbqolv-09epjdi-0ir6duzom4ps9dohsb2rov1qs/work-products.bin b/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafqbqolv-09epjdi-0ir6duzom4ps9dohsb2rov1qs/work-products.bin new file mode 100644 index 0000000..33bc516 Binary files /dev/null and b/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafqbqolv-09epjdi-0ir6duzom4ps9dohsb2rov1qs/work-products.bin differ diff --git a/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafqbqolv-09epjdi.lock b/target/debug/incremental/openvx_buffer-3hdr16bb7n53j/s-hhafqbqolv-09epjdi.lock new file mode 100644 index 0000000..e69de29 diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/01gcguzfpjbi1o1j2nrlpli3b.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/01gcguzfpjbi1o1j2nrlpli3b.o new file mode 100644 index 0000000..7f423a5 Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/01gcguzfpjbi1o1j2nrlpli3b.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/02j3mm6509doyl6fjel005kxo.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/02j3mm6509doyl6fjel005kxo.o new file mode 100644 index 0000000..64346e9 Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/02j3mm6509doyl6fjel005kxo.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/05qruq178vua9ve45s0u88jf4.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/05qruq178vua9ve45s0u88jf4.o new file mode 100644 index 0000000..a44b75e Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/05qruq178vua9ve45s0u88jf4.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/09vxfi8g2yfi60jt44ac1m22u.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/09vxfi8g2yfi60jt44ac1m22u.o new file mode 100644 index 0000000..9da219f Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/09vxfi8g2yfi60jt44ac1m22u.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/0b070moq3ig3li9769dftwmt7.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/0b070moq3ig3li9769dftwmt7.o new file mode 100644 index 0000000..0a41f48 Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/0b070moq3ig3li9769dftwmt7.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/0j6ngjzca9k37j4q5ugvdwvrf.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/0j6ngjzca9k37j4q5ugvdwvrf.o new file mode 100644 index 0000000..b4e1ebb Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/0j6ngjzca9k37j4q5ugvdwvrf.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/0joy4b6kzw1e70qu0upwitsx6.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/0joy4b6kzw1e70qu0upwitsx6.o new file mode 100644 index 0000000..fe5205e Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/0joy4b6kzw1e70qu0upwitsx6.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/0k50r8s90i8bpnuq695busqkf.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/0k50r8s90i8bpnuq695busqkf.o new file mode 100644 index 0000000..ef1a8b5 Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/0k50r8s90i8bpnuq695busqkf.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/0kbi93qd3qt24tprhriw2gqx6.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/0kbi93qd3qt24tprhriw2gqx6.o new file mode 100644 index 0000000..1e3fb87 Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/0kbi93qd3qt24tprhriw2gqx6.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/0tlqh3qniwv6x40nm6x6dml5f.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/0tlqh3qniwv6x40nm6x6dml5f.o new file mode 100644 index 0000000..38e4b68 Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/0tlqh3qniwv6x40nm6x6dml5f.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/0wj7evljitd0o66hzpnc3gd9n.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/0wj7evljitd0o66hzpnc3gd9n.o new file mode 100644 index 0000000..b6dc061 Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/0wj7evljitd0o66hzpnc3gd9n.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/10n8dbo2l1njcafefr6vxk8s5.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/10n8dbo2l1njcafefr6vxk8s5.o new file mode 100644 index 0000000..12269c8 Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/10n8dbo2l1njcafefr6vxk8s5.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/17ltaiq2ri9nsjj03bjmamrew.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/17ltaiq2ri9nsjj03bjmamrew.o new file mode 100644 index 0000000..0a994ef Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/17ltaiq2ri9nsjj03bjmamrew.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/1bhkq5pxugo10jn1i59zvft1w.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/1bhkq5pxugo10jn1i59zvft1w.o new file mode 100644 index 0000000..2b6a95f Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/1bhkq5pxugo10jn1i59zvft1w.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/1d8m801yiqawh6uevhfegplnb.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/1d8m801yiqawh6uevhfegplnb.o new file mode 100644 index 0000000..f01ca52 Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/1d8m801yiqawh6uevhfegplnb.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/1eu8grl2y9z5w1aqjprfcailv.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/1eu8grl2y9z5w1aqjprfcailv.o new file mode 100644 index 0000000..74348e9 Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/1eu8grl2y9z5w1aqjprfcailv.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/1i2r5i9js8ug0xqcuy7mb1v2c.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/1i2r5i9js8ug0xqcuy7mb1v2c.o new file mode 100644 index 0000000..9d03e78 Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/1i2r5i9js8ug0xqcuy7mb1v2c.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/1lpr2n1rp3cfcg5hw3ixgqypq.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/1lpr2n1rp3cfcg5hw3ixgqypq.o new file mode 100644 index 0000000..3062ec3 Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/1lpr2n1rp3cfcg5hw3ixgqypq.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/1lvo7gn7tzi2osfthftz3vjnp.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/1lvo7gn7tzi2osfthftz3vjnp.o new file mode 100644 index 0000000..08611b1 Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/1lvo7gn7tzi2osfthftz3vjnp.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/1mfbrgbhbfrytmrlx93rb9h6u.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/1mfbrgbhbfrytmrlx93rb9h6u.o new file mode 100644 index 0000000..2e59534 Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/1mfbrgbhbfrytmrlx93rb9h6u.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/1oruto7qq8g3pvq9c36s8qr74.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/1oruto7qq8g3pvq9c36s8qr74.o new file mode 100644 index 0000000..586abf4 Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/1oruto7qq8g3pvq9c36s8qr74.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/1txm0u5ygvdo0wg83ua6tlqo4.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/1txm0u5ygvdo0wg83ua6tlqo4.o new file mode 100644 index 0000000..0e7e79c Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/1txm0u5ygvdo0wg83ua6tlqo4.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/1wpn1vjeo5dzy7kvt5kdmbiyl.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/1wpn1vjeo5dzy7kvt5kdmbiyl.o new file mode 100644 index 0000000..28fe8ed Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/1wpn1vjeo5dzy7kvt5kdmbiyl.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/21qupzglqppzqs1eohpz25eq4.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/21qupzglqppzqs1eohpz25eq4.o new file mode 100644 index 0000000..7c99305 Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/21qupzglqppzqs1eohpz25eq4.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/26gjcno0vifgsfytql2dpy3w1.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/26gjcno0vifgsfytql2dpy3w1.o new file mode 100644 index 0000000..36fdaf6 Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/26gjcno0vifgsfytql2dpy3w1.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/29hby3hzm1zdq0w504id8xucd.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/29hby3hzm1zdq0w504id8xucd.o new file mode 100644 index 0000000..db53ba8 Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/29hby3hzm1zdq0w504id8xucd.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/2g94yyd1pdikqedrfk4tqkny3.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/2g94yyd1pdikqedrfk4tqkny3.o new file mode 100644 index 0000000..189bed9 Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/2g94yyd1pdikqedrfk4tqkny3.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/2j4ksfdo3r1x6izotvwzlc6zi.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/2j4ksfdo3r1x6izotvwzlc6zi.o new file mode 100644 index 0000000..e0e3655 Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/2j4ksfdo3r1x6izotvwzlc6zi.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/2jx36jr9xq9rkjgnsjmzmvcab.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/2jx36jr9xq9rkjgnsjmzmvcab.o new file mode 100644 index 0000000..722f42f Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/2jx36jr9xq9rkjgnsjmzmvcab.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/2k59gey1ba8y3xb1xwzcj2rxd.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/2k59gey1ba8y3xb1xwzcj2rxd.o new file mode 100644 index 0000000..e9fe7b2 Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/2k59gey1ba8y3xb1xwzcj2rxd.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/2o47563ab0jhdt5vxahs1ouf1.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/2o47563ab0jhdt5vxahs1ouf1.o new file mode 100644 index 0000000..2dc9c0a Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/2o47563ab0jhdt5vxahs1ouf1.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/36m3fdqlflj6navtbrb8knp7h.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/36m3fdqlflj6navtbrb8knp7h.o new file mode 100644 index 0000000..acc89d6 Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/36m3fdqlflj6navtbrb8knp7h.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/37e0qitbctu37nyz9wu4w04if.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/37e0qitbctu37nyz9wu4w04if.o new file mode 100644 index 0000000..85d16d6 Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/37e0qitbctu37nyz9wu4w04if.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/3iwxtv25agwgkfrpl1dn8hr5t.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/3iwxtv25agwgkfrpl1dn8hr5t.o new file mode 100644 index 0000000..817163e Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/3iwxtv25agwgkfrpl1dn8hr5t.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/3kg17baakdbno2mfx56ygnrpo.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/3kg17baakdbno2mfx56ygnrpo.o new file mode 100644 index 0000000..c83fb04 Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/3kg17baakdbno2mfx56ygnrpo.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/3lignjzk45hln4vcpphrrwsu3.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/3lignjzk45hln4vcpphrrwsu3.o new file mode 100644 index 0000000..b495e0e Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/3lignjzk45hln4vcpphrrwsu3.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/3mvqh686kxnrlbvgo2di8gkyc.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/3mvqh686kxnrlbvgo2di8gkyc.o new file mode 100644 index 0000000..ef58f95 Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/3mvqh686kxnrlbvgo2di8gkyc.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/3qs9qwhcgqzxnd47wg353xutv.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/3qs9qwhcgqzxnd47wg353xutv.o new file mode 100644 index 0000000..0caff44 Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/3qs9qwhcgqzxnd47wg353xutv.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/3wohavl29qbge1ohoez7hi1p5.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/3wohavl29qbge1ohoez7hi1p5.o new file mode 100644 index 0000000..8fc64d2 Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/3wohavl29qbge1ohoez7hi1p5.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/455bk6z971zx8lzjv89igkyer.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/455bk6z971zx8lzjv89igkyer.o new file mode 100644 index 0000000..3350a65 Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/455bk6z971zx8lzjv89igkyer.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/461lhm3wnohon7mmifo4roacx.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/461lhm3wnohon7mmifo4roacx.o new file mode 100644 index 0000000..b0e2b04 Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/461lhm3wnohon7mmifo4roacx.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/4bimoaa9cpue3e18j882q8vdn.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/4bimoaa9cpue3e18j882q8vdn.o new file mode 100644 index 0000000..df01f1d Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/4bimoaa9cpue3e18j882q8vdn.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/4ibm3j65uqq2g4mbcmd62hhlq.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/4ibm3j65uqq2g4mbcmd62hhlq.o new file mode 100644 index 0000000..ba89fc8 Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/4ibm3j65uqq2g4mbcmd62hhlq.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/4kmn5ljlbpqpwxcxg5ms1e7nv.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/4kmn5ljlbpqpwxcxg5ms1e7nv.o new file mode 100644 index 0000000..8ccb6ca Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/4kmn5ljlbpqpwxcxg5ms1e7nv.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/4mz3cr1wz1ugbh0d9o9pb1hyn.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/4mz3cr1wz1ugbh0d9o9pb1hyn.o new file mode 100644 index 0000000..ac4bfa8 Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/4mz3cr1wz1ugbh0d9o9pb1hyn.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/4pra3rnadch7v54uoat2btnxk.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/4pra3rnadch7v54uoat2btnxk.o new file mode 100644 index 0000000..e8e514d Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/4pra3rnadch7v54uoat2btnxk.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/4r1yth1az1zsidi8as0w0ayx7.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/4r1yth1az1zsidi8as0w0ayx7.o new file mode 100644 index 0000000..19b0856 Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/4r1yth1az1zsidi8as0w0ayx7.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/4siqvk874pwjoyttye107t877.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/4siqvk874pwjoyttye107t877.o new file mode 100644 index 0000000..f5abfcb Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/4siqvk874pwjoyttye107t877.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/4vtk46r3mtfsd09ko006czv3e.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/4vtk46r3mtfsd09ko006czv3e.o new file mode 100644 index 0000000..a96442d Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/4vtk46r3mtfsd09ko006czv3e.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/51w5n1kbr58y7ge6vvousjgmo.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/51w5n1kbr58y7ge6vvousjgmo.o new file mode 100644 index 0000000..d9f87bc Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/51w5n1kbr58y7ge6vvousjgmo.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/52rqike04umfhcnvqxhsn6ier.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/52rqike04umfhcnvqxhsn6ier.o new file mode 100644 index 0000000..4788e8a Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/52rqike04umfhcnvqxhsn6ier.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/541eisgwgtvblzo9i2cxu7vvx.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/541eisgwgtvblzo9i2cxu7vvx.o new file mode 100644 index 0000000..cb0176c Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/541eisgwgtvblzo9i2cxu7vvx.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/5dajeussvhtfaf9uyovlf3wa0.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/5dajeussvhtfaf9uyovlf3wa0.o new file mode 100644 index 0000000..2bedd68 Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/5dajeussvhtfaf9uyovlf3wa0.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/5g9q90b10odmeo85a9nu3yo0q.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/5g9q90b10odmeo85a9nu3yo0q.o new file mode 100644 index 0000000..992a865 Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/5g9q90b10odmeo85a9nu3yo0q.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/5kvn25felnefuifpnqams6sxg.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/5kvn25felnefuifpnqams6sxg.o new file mode 100644 index 0000000..de6ad1f Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/5kvn25felnefuifpnqams6sxg.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/5rflc1eo9gpfx7h3d2zl0af03.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/5rflc1eo9gpfx7h3d2zl0af03.o new file mode 100644 index 0000000..c807587 Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/5rflc1eo9gpfx7h3d2zl0af03.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/5yo0uk2xvy2nkai2r7gl66jmv.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/5yo0uk2xvy2nkai2r7gl66jmv.o new file mode 100644 index 0000000..c3162d0 Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/5yo0uk2xvy2nkai2r7gl66jmv.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/6ae5pundnaw5rqobgulyyinrl.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/6ae5pundnaw5rqobgulyyinrl.o new file mode 100644 index 0000000..332fd8b Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/6ae5pundnaw5rqobgulyyinrl.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/6ed7deynng5zqdrorvmhrdbou.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/6ed7deynng5zqdrorvmhrdbou.o new file mode 100644 index 0000000..b2f19d2 Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/6ed7deynng5zqdrorvmhrdbou.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/6f8jrlt22wo9ey6yu2sq3p7t0.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/6f8jrlt22wo9ey6yu2sq3p7t0.o new file mode 100644 index 0000000..939800b Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/6f8jrlt22wo9ey6yu2sq3p7t0.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/6furvsh1jc50ogxzotc6p95zz.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/6furvsh1jc50ogxzotc6p95zz.o new file mode 100644 index 0000000..cb1a0af Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/6furvsh1jc50ogxzotc6p95zz.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/6k7fnklm9iynkmjp7u27i1mb5.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/6k7fnklm9iynkmjp7u27i1mb5.o new file mode 100644 index 0000000..3a12483 Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/6k7fnklm9iynkmjp7u27i1mb5.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/6nha5rnr64vpsvre8uwqwgfs9.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/6nha5rnr64vpsvre8uwqwgfs9.o new file mode 100644 index 0000000..3682544 Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/6nha5rnr64vpsvre8uwqwgfs9.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/6tdarso4yhswnqfg2djeleiaq.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/6tdarso4yhswnqfg2djeleiaq.o new file mode 100644 index 0000000..c548b40 Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/6tdarso4yhswnqfg2djeleiaq.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/6wzn7d9z2x8qpddqwky6i2l1v.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/6wzn7d9z2x8qpddqwky6i2l1v.o new file mode 100644 index 0000000..7a0c7cd Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/6wzn7d9z2x8qpddqwky6i2l1v.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/6xgo9ulhmwr27sy8wd9bngq9a.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/6xgo9ulhmwr27sy8wd9bngq9a.o new file mode 100644 index 0000000..ea1ea73 Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/6xgo9ulhmwr27sy8wd9bngq9a.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/6zrwsvx6agydv954fbprygrs0.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/6zrwsvx6agydv954fbprygrs0.o new file mode 100644 index 0000000..e1c5547 Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/6zrwsvx6agydv954fbprygrs0.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/70gfvf01o4tcyrxv0jwovdjww.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/70gfvf01o4tcyrxv0jwovdjww.o new file mode 100644 index 0000000..4b48aca Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/70gfvf01o4tcyrxv0jwovdjww.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/71srcxcprhl3y8q9qu73orw46.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/71srcxcprhl3y8q9qu73orw46.o new file mode 100644 index 0000000..11e325d Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/71srcxcprhl3y8q9qu73orw46.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/77h17m8nx4fc7csgwfre7ju6w.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/77h17m8nx4fc7csgwfre7ju6w.o new file mode 100644 index 0000000..cfbe97d Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/77h17m8nx4fc7csgwfre7ju6w.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/7a2gj63tov5h50if42qm4pcnr.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/7a2gj63tov5h50if42qm4pcnr.o new file mode 100644 index 0000000..616a788 Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/7a2gj63tov5h50if42qm4pcnr.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/7dp4rxl7sbvsyevri25djen3e.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/7dp4rxl7sbvsyevri25djen3e.o new file mode 100644 index 0000000..09dc807 Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/7dp4rxl7sbvsyevri25djen3e.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/7k6rgh9my29pvkqw902e4pecp.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/7k6rgh9my29pvkqw902e4pecp.o new file mode 100644 index 0000000..a1ac9c1 Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/7k6rgh9my29pvkqw902e4pecp.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/7pqr8rj40a8dfgeq8tm7ocz80.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/7pqr8rj40a8dfgeq8tm7ocz80.o new file mode 100644 index 0000000..1fcd014 Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/7pqr8rj40a8dfgeq8tm7ocz80.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/7qfxezppzi1bryx87iq0chvc2.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/7qfxezppzi1bryx87iq0chvc2.o new file mode 100644 index 0000000..75ff3e5 Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/7qfxezppzi1bryx87iq0chvc2.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/7rc4cf5doxe8fqd8z0xzr97dz.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/7rc4cf5doxe8fqd8z0xzr97dz.o new file mode 100644 index 0000000..fd714fa Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/7rc4cf5doxe8fqd8z0xzr97dz.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/7sr51klk6el6s7jyvhr8vua8l.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/7sr51klk6el6s7jyvhr8vua8l.o new file mode 100644 index 0000000..cdd1895 Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/7sr51klk6el6s7jyvhr8vua8l.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/84souq1ysbbn171jt7d08mlc1.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/84souq1ysbbn171jt7d08mlc1.o new file mode 100644 index 0000000..aef025a Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/84souq1ysbbn171jt7d08mlc1.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/8by65ztmmjktr2op60raie3fl.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/8by65ztmmjktr2op60raie3fl.o new file mode 100644 index 0000000..b63abcb Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/8by65ztmmjktr2op60raie3fl.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/8hl86dqeurbq71tum4goe7kes.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/8hl86dqeurbq71tum4goe7kes.o new file mode 100644 index 0000000..4474b58 Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/8hl86dqeurbq71tum4goe7kes.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/8jxnjtohb2h2ci5jwb84dpyzq.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/8jxnjtohb2h2ci5jwb84dpyzq.o new file mode 100644 index 0000000..ccd06a8 Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/8jxnjtohb2h2ci5jwb84dpyzq.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/8mg6jocuh5s5rqi929vz578v2.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/8mg6jocuh5s5rqi929vz578v2.o new file mode 100644 index 0000000..cb18f4a Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/8mg6jocuh5s5rqi929vz578v2.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/8rig8g4901qw1oflzrir9r9wn.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/8rig8g4901qw1oflzrir9r9wn.o new file mode 100644 index 0000000..29c8383 Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/8rig8g4901qw1oflzrir9r9wn.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/8sih8l4ih0hzskbydjcr8s66b.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/8sih8l4ih0hzskbydjcr8s66b.o new file mode 100644 index 0000000..612dccb Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/8sih8l4ih0hzskbydjcr8s66b.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/8t8aoe198hntf3y04i9069s8v.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/8t8aoe198hntf3y04i9069s8v.o new file mode 100644 index 0000000..4fdc839 Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/8t8aoe198hntf3y04i9069s8v.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/8wl1qdlr8bxnctrlb8cahnrng.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/8wl1qdlr8bxnctrlb8cahnrng.o new file mode 100644 index 0000000..b3113c1 Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/8wl1qdlr8bxnctrlb8cahnrng.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/9b286gzuck4n5er7rppp4v44c.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/9b286gzuck4n5er7rppp4v44c.o new file mode 100644 index 0000000..daa7e88 Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/9b286gzuck4n5er7rppp4v44c.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/9euzke4mw4njqe6q7i0il6u5a.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/9euzke4mw4njqe6q7i0il6u5a.o new file mode 100644 index 0000000..0ecd7f0 Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/9euzke4mw4njqe6q7i0il6u5a.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/9h73mnkzk87czpdv1xatkoj5s.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/9h73mnkzk87czpdv1xatkoj5s.o new file mode 100644 index 0000000..adfaa6b Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/9h73mnkzk87czpdv1xatkoj5s.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/9jn9zib0qr5vvbs2gtwlp15ic.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/9jn9zib0qr5vvbs2gtwlp15ic.o new file mode 100644 index 0000000..618eb56 Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/9jn9zib0qr5vvbs2gtwlp15ic.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/9lts5lgp7bzgpk7cq4fv1c9ts.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/9lts5lgp7bzgpk7cq4fv1c9ts.o new file mode 100644 index 0000000..23ad88f Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/9lts5lgp7bzgpk7cq4fv1c9ts.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/9mhzx0xhf31wpvk5m19065vl0.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/9mhzx0xhf31wpvk5m19065vl0.o new file mode 100644 index 0000000..5396d9c Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/9mhzx0xhf31wpvk5m19065vl0.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/9w2ehjm8n5w740eiw0we9u8a3.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/9w2ehjm8n5w740eiw0we9u8a3.o new file mode 100644 index 0000000..1a47f91 Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/9w2ehjm8n5w740eiw0we9u8a3.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/9zs3srvjj1nwf6yt1d5uuwfgq.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/9zs3srvjj1nwf6yt1d5uuwfgq.o new file mode 100644 index 0000000..a46c532 Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/9zs3srvjj1nwf6yt1d5uuwfgq.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/aeaso6palh9t1eejt47nmnlxj.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/aeaso6palh9t1eejt47nmnlxj.o new file mode 100644 index 0000000..51a8212 Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/aeaso6palh9t1eejt47nmnlxj.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/ajzmjhu1un8846nome3iun7nj.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/ajzmjhu1un8846nome3iun7nj.o new file mode 100644 index 0000000..f115bbc Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/ajzmjhu1un8846nome3iun7nj.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/avxh8unynp6abpt52qfs9i1bp.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/avxh8unynp6abpt52qfs9i1bp.o new file mode 100644 index 0000000..4f17ea2 Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/avxh8unynp6abpt52qfs9i1bp.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/b044e04czw7cw2slfgbgz1xtj.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/b044e04czw7cw2slfgbgz1xtj.o new file mode 100644 index 0000000..a5b1e54 Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/b044e04czw7cw2slfgbgz1xtj.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/b0zw8dm4h16rstlz8q5lte1mj.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/b0zw8dm4h16rstlz8q5lte1mj.o new file mode 100644 index 0000000..20419cc Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/b0zw8dm4h16rstlz8q5lte1mj.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/b1lor735l5qv6ii39vlbk6dsa.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/b1lor735l5qv6ii39vlbk6dsa.o new file mode 100644 index 0000000..786e73f Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/b1lor735l5qv6ii39vlbk6dsa.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/bdvq8zwmhp9untz1n9xy4kmqi.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/bdvq8zwmhp9untz1n9xy4kmqi.o new file mode 100644 index 0000000..43a5134 Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/bdvq8zwmhp9untz1n9xy4kmqi.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/bfpc0dc8f8e5qusl7l2ir5ks9.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/bfpc0dc8f8e5qusl7l2ir5ks9.o new file mode 100644 index 0000000..be43ede Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/bfpc0dc8f8e5qusl7l2ir5ks9.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/bl8cp9kqar52knziiknb06bnj.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/bl8cp9kqar52knziiknb06bnj.o new file mode 100644 index 0000000..cd6cb6e Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/bl8cp9kqar52knziiknb06bnj.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/brfgcxxeogvm4299u19i6lrgm.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/brfgcxxeogvm4299u19i6lrgm.o new file mode 100644 index 0000000..25808b1 Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/brfgcxxeogvm4299u19i6lrgm.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/bu2exf5v82u9aql76oq2sw5eg.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/bu2exf5v82u9aql76oq2sw5eg.o new file mode 100644 index 0000000..53a0e27 Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/bu2exf5v82u9aql76oq2sw5eg.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/bvg37navf643fxkvh89w6ajpu.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/bvg37navf643fxkvh89w6ajpu.o new file mode 100644 index 0000000..e2cece4 Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/bvg37navf643fxkvh89w6ajpu.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/c92zwbe7fhcqqk7job7r35bww.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/c92zwbe7fhcqqk7job7r35bww.o new file mode 100644 index 0000000..02a44d6 Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/c92zwbe7fhcqqk7job7r35bww.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/cbuffuif7699comxg3v9uq0ju.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/cbuffuif7699comxg3v9uq0ju.o new file mode 100644 index 0000000..3790609 Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/cbuffuif7699comxg3v9uq0ju.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/cjyuhwn6i4h5xeyxxjdoq743m.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/cjyuhwn6i4h5xeyxxjdoq743m.o new file mode 100644 index 0000000..0dcf0dc Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/cjyuhwn6i4h5xeyxxjdoq743m.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/cvjpc5eb7koohbcidoa95loa3.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/cvjpc5eb7koohbcidoa95loa3.o new file mode 100644 index 0000000..d97eed9 Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/cvjpc5eb7koohbcidoa95loa3.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/d659e90aaltj8klvzgdr4jw8z.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/d659e90aaltj8klvzgdr4jw8z.o new file mode 100644 index 0000000..94dbc80 Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/d659e90aaltj8klvzgdr4jw8z.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/dbf779ehf7clpfesg963umgj3.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/dbf779ehf7clpfesg963umgj3.o new file mode 100644 index 0000000..4920af1 Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/dbf779ehf7clpfesg963umgj3.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/dep-graph.bin b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/dep-graph.bin new file mode 100644 index 0000000..baecdb2 Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/dep-graph.bin differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/dlwe323f78rsnlq8eo9zadmpt.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/dlwe323f78rsnlq8eo9zadmpt.o new file mode 100644 index 0000000..2cdc8f5 Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/dlwe323f78rsnlq8eo9zadmpt.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/dm4gp7bs3hnxpri2kx1l8d9ed.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/dm4gp7bs3hnxpri2kx1l8d9ed.o new file mode 100644 index 0000000..5915cc0 Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/dm4gp7bs3hnxpri2kx1l8d9ed.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/dnjnmg0gk47rceap5e707kw7o.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/dnjnmg0gk47rceap5e707kw7o.o new file mode 100644 index 0000000..a4b1b9c Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/dnjnmg0gk47rceap5e707kw7o.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/dp9rwdyy4jo5qm7egl4mqttd9.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/dp9rwdyy4jo5qm7egl4mqttd9.o new file mode 100644 index 0000000..0ece331 Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/dp9rwdyy4jo5qm7egl4mqttd9.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/dvazacn9wbapkunu46oafo70i.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/dvazacn9wbapkunu46oafo70i.o new file mode 100644 index 0000000..66b1a08 Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/dvazacn9wbapkunu46oafo70i.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/e1n16z7nh78dtl4fh00zkidcr.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/e1n16z7nh78dtl4fh00zkidcr.o new file mode 100644 index 0000000..b753eeb Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/e1n16z7nh78dtl4fh00zkidcr.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/e5v5pjpq11at83hjwqdk50cau.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/e5v5pjpq11at83hjwqdk50cau.o new file mode 100644 index 0000000..1863332 Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/e5v5pjpq11at83hjwqdk50cau.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/e9mnteljr53fhasfwdjuwu7t9.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/e9mnteljr53fhasfwdjuwu7t9.o new file mode 100644 index 0000000..060e71c Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/e9mnteljr53fhasfwdjuwu7t9.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/ed6deeyi7spwgasqeqrh1vxoi.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/ed6deeyi7spwgasqeqrh1vxoi.o new file mode 100644 index 0000000..87d6fa1 Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/ed6deeyi7spwgasqeqrh1vxoi.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/ej4f7f39598uxe6i7buiz6kyw.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/ej4f7f39598uxe6i7buiz6kyw.o new file mode 100644 index 0000000..0819fbb Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/ej4f7f39598uxe6i7buiz6kyw.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/ekcxa7th1k5a8277ag5ddkql3.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/ekcxa7th1k5a8277ag5ddkql3.o new file mode 100644 index 0000000..f0f0aa4 Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/ekcxa7th1k5a8277ag5ddkql3.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/eombsn0bhvc8osa7b0mwixe9j.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/eombsn0bhvc8osa7b0mwixe9j.o new file mode 100644 index 0000000..c53ec98 Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/eombsn0bhvc8osa7b0mwixe9j.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/ey6kc4cv271jkk484o9rtb4rw.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/ey6kc4cv271jkk484o9rtb4rw.o new file mode 100644 index 0000000..236bb99 Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/ey6kc4cv271jkk484o9rtb4rw.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/eynn5od91tnyfg91h4fkbsa15.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/eynn5od91tnyfg91h4fkbsa15.o new file mode 100644 index 0000000..7b7ad7a Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/eynn5od91tnyfg91h4fkbsa15.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/metadata.rmeta b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/metadata.rmeta new file mode 100644 index 0000000..26b9aea Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/metadata.rmeta differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/query-cache.bin b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/query-cache.bin new file mode 100644 index 0000000..7a27a32 Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/query-cache.bin differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/work-products.bin b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/work-products.bin new file mode 100644 index 0000000..ec56db4 Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd-ef94vogyx2ymdn1efskfndcf3/work-products.bin differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd.lock b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafprjbap-0n5xjgd.lock new file mode 100644 index 0000000..e69de29 diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/01gcguzfpjbi1o1j2nrlpli3b.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/01gcguzfpjbi1o1j2nrlpli3b.o new file mode 100644 index 0000000..7f423a5 Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/01gcguzfpjbi1o1j2nrlpli3b.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/02j3mm6509doyl6fjel005kxo.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/02j3mm6509doyl6fjel005kxo.o new file mode 100644 index 0000000..64346e9 Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/02j3mm6509doyl6fjel005kxo.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/05qruq178vua9ve45s0u88jf4.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/05qruq178vua9ve45s0u88jf4.o new file mode 100644 index 0000000..a44b75e Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/05qruq178vua9ve45s0u88jf4.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/09vxfi8g2yfi60jt44ac1m22u.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/09vxfi8g2yfi60jt44ac1m22u.o new file mode 100644 index 0000000..9da219f Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/09vxfi8g2yfi60jt44ac1m22u.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/0b070moq3ig3li9769dftwmt7.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/0b070moq3ig3li9769dftwmt7.o new file mode 100644 index 0000000..0a41f48 Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/0b070moq3ig3li9769dftwmt7.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/0j6ngjzca9k37j4q5ugvdwvrf.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/0j6ngjzca9k37j4q5ugvdwvrf.o new file mode 100644 index 0000000..b4e1ebb Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/0j6ngjzca9k37j4q5ugvdwvrf.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/0joy4b6kzw1e70qu0upwitsx6.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/0joy4b6kzw1e70qu0upwitsx6.o new file mode 100644 index 0000000..fe5205e Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/0joy4b6kzw1e70qu0upwitsx6.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/0k50r8s90i8bpnuq695busqkf.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/0k50r8s90i8bpnuq695busqkf.o new file mode 100644 index 0000000..ef1a8b5 Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/0k50r8s90i8bpnuq695busqkf.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/0kbi93qd3qt24tprhriw2gqx6.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/0kbi93qd3qt24tprhriw2gqx6.o new file mode 100644 index 0000000..1e3fb87 Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/0kbi93qd3qt24tprhriw2gqx6.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/0tlqh3qniwv6x40nm6x6dml5f.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/0tlqh3qniwv6x40nm6x6dml5f.o new file mode 100644 index 0000000..38e4b68 Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/0tlqh3qniwv6x40nm6x6dml5f.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/0wj7evljitd0o66hzpnc3gd9n.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/0wj7evljitd0o66hzpnc3gd9n.o new file mode 100644 index 0000000..b6dc061 Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/0wj7evljitd0o66hzpnc3gd9n.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/10n8dbo2l1njcafefr6vxk8s5.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/10n8dbo2l1njcafefr6vxk8s5.o new file mode 100644 index 0000000..12269c8 Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/10n8dbo2l1njcafefr6vxk8s5.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/17ltaiq2ri9nsjj03bjmamrew.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/17ltaiq2ri9nsjj03bjmamrew.o new file mode 100644 index 0000000..0a994ef Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/17ltaiq2ri9nsjj03bjmamrew.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/1bhkq5pxugo10jn1i59zvft1w.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/1bhkq5pxugo10jn1i59zvft1w.o new file mode 100644 index 0000000..2b6a95f Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/1bhkq5pxugo10jn1i59zvft1w.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/1d8m801yiqawh6uevhfegplnb.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/1d8m801yiqawh6uevhfegplnb.o new file mode 100644 index 0000000..f01ca52 Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/1d8m801yiqawh6uevhfegplnb.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/1eu8grl2y9z5w1aqjprfcailv.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/1eu8grl2y9z5w1aqjprfcailv.o new file mode 100644 index 0000000..74348e9 Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/1eu8grl2y9z5w1aqjprfcailv.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/1i2r5i9js8ug0xqcuy7mb1v2c.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/1i2r5i9js8ug0xqcuy7mb1v2c.o new file mode 100644 index 0000000..9d03e78 Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/1i2r5i9js8ug0xqcuy7mb1v2c.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/1lpr2n1rp3cfcg5hw3ixgqypq.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/1lpr2n1rp3cfcg5hw3ixgqypq.o new file mode 100644 index 0000000..3062ec3 Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/1lpr2n1rp3cfcg5hw3ixgqypq.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/1lvo7gn7tzi2osfthftz3vjnp.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/1lvo7gn7tzi2osfthftz3vjnp.o new file mode 100644 index 0000000..08611b1 Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/1lvo7gn7tzi2osfthftz3vjnp.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/1mfbrgbhbfrytmrlx93rb9h6u.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/1mfbrgbhbfrytmrlx93rb9h6u.o new file mode 100644 index 0000000..2e59534 Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/1mfbrgbhbfrytmrlx93rb9h6u.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/1oruto7qq8g3pvq9c36s8qr74.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/1oruto7qq8g3pvq9c36s8qr74.o new file mode 100644 index 0000000..586abf4 Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/1oruto7qq8g3pvq9c36s8qr74.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/1txm0u5ygvdo0wg83ua6tlqo4.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/1txm0u5ygvdo0wg83ua6tlqo4.o new file mode 100644 index 0000000..0e7e79c Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/1txm0u5ygvdo0wg83ua6tlqo4.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/1wpn1vjeo5dzy7kvt5kdmbiyl.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/1wpn1vjeo5dzy7kvt5kdmbiyl.o new file mode 100644 index 0000000..28fe8ed Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/1wpn1vjeo5dzy7kvt5kdmbiyl.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/21qupzglqppzqs1eohpz25eq4.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/21qupzglqppzqs1eohpz25eq4.o new file mode 100644 index 0000000..7c99305 Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/21qupzglqppzqs1eohpz25eq4.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/26gjcno0vifgsfytql2dpy3w1.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/26gjcno0vifgsfytql2dpy3w1.o new file mode 100644 index 0000000..36fdaf6 Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/26gjcno0vifgsfytql2dpy3w1.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/29hby3hzm1zdq0w504id8xucd.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/29hby3hzm1zdq0w504id8xucd.o new file mode 100644 index 0000000..db53ba8 Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/29hby3hzm1zdq0w504id8xucd.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/2g94yyd1pdikqedrfk4tqkny3.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/2g94yyd1pdikqedrfk4tqkny3.o new file mode 100644 index 0000000..189bed9 Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/2g94yyd1pdikqedrfk4tqkny3.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/2j4ksfdo3r1x6izotvwzlc6zi.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/2j4ksfdo3r1x6izotvwzlc6zi.o new file mode 100644 index 0000000..e0e3655 Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/2j4ksfdo3r1x6izotvwzlc6zi.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/2jx36jr9xq9rkjgnsjmzmvcab.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/2jx36jr9xq9rkjgnsjmzmvcab.o new file mode 100644 index 0000000..722f42f Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/2jx36jr9xq9rkjgnsjmzmvcab.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/2k59gey1ba8y3xb1xwzcj2rxd.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/2k59gey1ba8y3xb1xwzcj2rxd.o new file mode 100644 index 0000000..e9fe7b2 Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/2k59gey1ba8y3xb1xwzcj2rxd.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/2o47563ab0jhdt5vxahs1ouf1.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/2o47563ab0jhdt5vxahs1ouf1.o new file mode 100644 index 0000000..2dc9c0a Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/2o47563ab0jhdt5vxahs1ouf1.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/36m3fdqlflj6navtbrb8knp7h.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/36m3fdqlflj6navtbrb8knp7h.o new file mode 100644 index 0000000..acc89d6 Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/36m3fdqlflj6navtbrb8knp7h.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/37e0qitbctu37nyz9wu4w04if.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/37e0qitbctu37nyz9wu4w04if.o new file mode 100644 index 0000000..85d16d6 Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/37e0qitbctu37nyz9wu4w04if.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/3iwxtv25agwgkfrpl1dn8hr5t.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/3iwxtv25agwgkfrpl1dn8hr5t.o new file mode 100644 index 0000000..817163e Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/3iwxtv25agwgkfrpl1dn8hr5t.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/3kg17baakdbno2mfx56ygnrpo.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/3kg17baakdbno2mfx56ygnrpo.o new file mode 100644 index 0000000..c83fb04 Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/3kg17baakdbno2mfx56ygnrpo.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/3lignjzk45hln4vcpphrrwsu3.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/3lignjzk45hln4vcpphrrwsu3.o new file mode 100644 index 0000000..b495e0e Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/3lignjzk45hln4vcpphrrwsu3.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/3mvqh686kxnrlbvgo2di8gkyc.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/3mvqh686kxnrlbvgo2di8gkyc.o new file mode 100644 index 0000000..ef58f95 Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/3mvqh686kxnrlbvgo2di8gkyc.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/3qs9qwhcgqzxnd47wg353xutv.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/3qs9qwhcgqzxnd47wg353xutv.o new file mode 100644 index 0000000..0caff44 Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/3qs9qwhcgqzxnd47wg353xutv.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/3wohavl29qbge1ohoez7hi1p5.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/3wohavl29qbge1ohoez7hi1p5.o new file mode 100644 index 0000000..8fc64d2 Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/3wohavl29qbge1ohoez7hi1p5.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/455bk6z971zx8lzjv89igkyer.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/455bk6z971zx8lzjv89igkyer.o new file mode 100644 index 0000000..c0ce9be Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/455bk6z971zx8lzjv89igkyer.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/461lhm3wnohon7mmifo4roacx.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/461lhm3wnohon7mmifo4roacx.o new file mode 100644 index 0000000..b0e2b04 Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/461lhm3wnohon7mmifo4roacx.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/4bimoaa9cpue3e18j882q8vdn.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/4bimoaa9cpue3e18j882q8vdn.o new file mode 100644 index 0000000..df01f1d Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/4bimoaa9cpue3e18j882q8vdn.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/4ibm3j65uqq2g4mbcmd62hhlq.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/4ibm3j65uqq2g4mbcmd62hhlq.o new file mode 100644 index 0000000..ba89fc8 Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/4ibm3j65uqq2g4mbcmd62hhlq.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/4kmn5ljlbpqpwxcxg5ms1e7nv.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/4kmn5ljlbpqpwxcxg5ms1e7nv.o new file mode 100644 index 0000000..8ccb6ca Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/4kmn5ljlbpqpwxcxg5ms1e7nv.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/4mz3cr1wz1ugbh0d9o9pb1hyn.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/4mz3cr1wz1ugbh0d9o9pb1hyn.o new file mode 100644 index 0000000..ac4bfa8 Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/4mz3cr1wz1ugbh0d9o9pb1hyn.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/4pra3rnadch7v54uoat2btnxk.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/4pra3rnadch7v54uoat2btnxk.o new file mode 100644 index 0000000..e8e514d Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/4pra3rnadch7v54uoat2btnxk.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/4r1yth1az1zsidi8as0w0ayx7.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/4r1yth1az1zsidi8as0w0ayx7.o new file mode 100644 index 0000000..19b0856 Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/4r1yth1az1zsidi8as0w0ayx7.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/4siqvk874pwjoyttye107t877.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/4siqvk874pwjoyttye107t877.o new file mode 100644 index 0000000..f5abfcb Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/4siqvk874pwjoyttye107t877.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/4vtk46r3mtfsd09ko006czv3e.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/4vtk46r3mtfsd09ko006czv3e.o new file mode 100644 index 0000000..a96442d Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/4vtk46r3mtfsd09ko006czv3e.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/51w5n1kbr58y7ge6vvousjgmo.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/51w5n1kbr58y7ge6vvousjgmo.o new file mode 100644 index 0000000..d9f87bc Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/51w5n1kbr58y7ge6vvousjgmo.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/52rqike04umfhcnvqxhsn6ier.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/52rqike04umfhcnvqxhsn6ier.o new file mode 100644 index 0000000..4788e8a Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/52rqike04umfhcnvqxhsn6ier.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/541eisgwgtvblzo9i2cxu7vvx.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/541eisgwgtvblzo9i2cxu7vvx.o new file mode 100644 index 0000000..cb0176c Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/541eisgwgtvblzo9i2cxu7vvx.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/5dajeussvhtfaf9uyovlf3wa0.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/5dajeussvhtfaf9uyovlf3wa0.o new file mode 100644 index 0000000..2bedd68 Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/5dajeussvhtfaf9uyovlf3wa0.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/5g9q90b10odmeo85a9nu3yo0q.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/5g9q90b10odmeo85a9nu3yo0q.o new file mode 100644 index 0000000..992a865 Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/5g9q90b10odmeo85a9nu3yo0q.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/5kvn25felnefuifpnqams6sxg.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/5kvn25felnefuifpnqams6sxg.o new file mode 100644 index 0000000..de6ad1f Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/5kvn25felnefuifpnqams6sxg.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/5rflc1eo9gpfx7h3d2zl0af03.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/5rflc1eo9gpfx7h3d2zl0af03.o new file mode 100644 index 0000000..c807587 Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/5rflc1eo9gpfx7h3d2zl0af03.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/5yo0uk2xvy2nkai2r7gl66jmv.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/5yo0uk2xvy2nkai2r7gl66jmv.o new file mode 100644 index 0000000..c3162d0 Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/5yo0uk2xvy2nkai2r7gl66jmv.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/6ae5pundnaw5rqobgulyyinrl.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/6ae5pundnaw5rqobgulyyinrl.o new file mode 100644 index 0000000..332fd8b Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/6ae5pundnaw5rqobgulyyinrl.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/6ed7deynng5zqdrorvmhrdbou.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/6ed7deynng5zqdrorvmhrdbou.o new file mode 100644 index 0000000..b2f19d2 Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/6ed7deynng5zqdrorvmhrdbou.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/6f8jrlt22wo9ey6yu2sq3p7t0.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/6f8jrlt22wo9ey6yu2sq3p7t0.o new file mode 100644 index 0000000..939800b Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/6f8jrlt22wo9ey6yu2sq3p7t0.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/6furvsh1jc50ogxzotc6p95zz.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/6furvsh1jc50ogxzotc6p95zz.o new file mode 100644 index 0000000..cb1a0af Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/6furvsh1jc50ogxzotc6p95zz.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/6k7fnklm9iynkmjp7u27i1mb5.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/6k7fnklm9iynkmjp7u27i1mb5.o new file mode 100644 index 0000000..3a12483 Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/6k7fnklm9iynkmjp7u27i1mb5.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/6nha5rnr64vpsvre8uwqwgfs9.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/6nha5rnr64vpsvre8uwqwgfs9.o new file mode 100644 index 0000000..3682544 Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/6nha5rnr64vpsvre8uwqwgfs9.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/6tdarso4yhswnqfg2djeleiaq.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/6tdarso4yhswnqfg2djeleiaq.o new file mode 100644 index 0000000..c548b40 Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/6tdarso4yhswnqfg2djeleiaq.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/6wzn7d9z2x8qpddqwky6i2l1v.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/6wzn7d9z2x8qpddqwky6i2l1v.o new file mode 100644 index 0000000..7a0c7cd Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/6wzn7d9z2x8qpddqwky6i2l1v.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/6xgo9ulhmwr27sy8wd9bngq9a.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/6xgo9ulhmwr27sy8wd9bngq9a.o new file mode 100644 index 0000000..ea1ea73 Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/6xgo9ulhmwr27sy8wd9bngq9a.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/6zrwsvx6agydv954fbprygrs0.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/6zrwsvx6agydv954fbprygrs0.o new file mode 100644 index 0000000..e1c5547 Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/6zrwsvx6agydv954fbprygrs0.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/70gfvf01o4tcyrxv0jwovdjww.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/70gfvf01o4tcyrxv0jwovdjww.o new file mode 100644 index 0000000..4b48aca Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/70gfvf01o4tcyrxv0jwovdjww.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/71srcxcprhl3y8q9qu73orw46.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/71srcxcprhl3y8q9qu73orw46.o new file mode 100644 index 0000000..11e325d Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/71srcxcprhl3y8q9qu73orw46.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/77h17m8nx4fc7csgwfre7ju6w.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/77h17m8nx4fc7csgwfre7ju6w.o new file mode 100644 index 0000000..cfbe97d Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/77h17m8nx4fc7csgwfre7ju6w.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/7a2gj63tov5h50if42qm4pcnr.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/7a2gj63tov5h50if42qm4pcnr.o new file mode 100644 index 0000000..616a788 Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/7a2gj63tov5h50if42qm4pcnr.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/7dp4rxl7sbvsyevri25djen3e.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/7dp4rxl7sbvsyevri25djen3e.o new file mode 100644 index 0000000..09dc807 Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/7dp4rxl7sbvsyevri25djen3e.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/7k6rgh9my29pvkqw902e4pecp.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/7k6rgh9my29pvkqw902e4pecp.o new file mode 100644 index 0000000..a1ac9c1 Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/7k6rgh9my29pvkqw902e4pecp.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/7pqr8rj40a8dfgeq8tm7ocz80.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/7pqr8rj40a8dfgeq8tm7ocz80.o new file mode 100644 index 0000000..1fcd014 Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/7pqr8rj40a8dfgeq8tm7ocz80.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/7qfxezppzi1bryx87iq0chvc2.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/7qfxezppzi1bryx87iq0chvc2.o new file mode 100644 index 0000000..75ff3e5 Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/7qfxezppzi1bryx87iq0chvc2.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/7rc4cf5doxe8fqd8z0xzr97dz.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/7rc4cf5doxe8fqd8z0xzr97dz.o new file mode 100644 index 0000000..fd714fa Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/7rc4cf5doxe8fqd8z0xzr97dz.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/7sr51klk6el6s7jyvhr8vua8l.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/7sr51klk6el6s7jyvhr8vua8l.o new file mode 100644 index 0000000..8e8f605 Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/7sr51klk6el6s7jyvhr8vua8l.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/84souq1ysbbn171jt7d08mlc1.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/84souq1ysbbn171jt7d08mlc1.o new file mode 100644 index 0000000..aef025a Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/84souq1ysbbn171jt7d08mlc1.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/8by65ztmmjktr2op60raie3fl.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/8by65ztmmjktr2op60raie3fl.o new file mode 100644 index 0000000..b63abcb Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/8by65ztmmjktr2op60raie3fl.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/8hl86dqeurbq71tum4goe7kes.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/8hl86dqeurbq71tum4goe7kes.o new file mode 100644 index 0000000..4474b58 Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/8hl86dqeurbq71tum4goe7kes.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/8jxnjtohb2h2ci5jwb84dpyzq.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/8jxnjtohb2h2ci5jwb84dpyzq.o new file mode 100644 index 0000000..ccd06a8 Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/8jxnjtohb2h2ci5jwb84dpyzq.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/8mg6jocuh5s5rqi929vz578v2.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/8mg6jocuh5s5rqi929vz578v2.o new file mode 100644 index 0000000..cb18f4a Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/8mg6jocuh5s5rqi929vz578v2.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/8rig8g4901qw1oflzrir9r9wn.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/8rig8g4901qw1oflzrir9r9wn.o new file mode 100644 index 0000000..29c8383 Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/8rig8g4901qw1oflzrir9r9wn.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/8sih8l4ih0hzskbydjcr8s66b.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/8sih8l4ih0hzskbydjcr8s66b.o new file mode 100644 index 0000000..612dccb Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/8sih8l4ih0hzskbydjcr8s66b.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/8t8aoe198hntf3y04i9069s8v.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/8t8aoe198hntf3y04i9069s8v.o new file mode 100644 index 0000000..4fdc839 Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/8t8aoe198hntf3y04i9069s8v.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/8wl1qdlr8bxnctrlb8cahnrng.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/8wl1qdlr8bxnctrlb8cahnrng.o new file mode 100644 index 0000000..b3113c1 Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/8wl1qdlr8bxnctrlb8cahnrng.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/9b286gzuck4n5er7rppp4v44c.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/9b286gzuck4n5er7rppp4v44c.o new file mode 100644 index 0000000..daa7e88 Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/9b286gzuck4n5er7rppp4v44c.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/9euzke4mw4njqe6q7i0il6u5a.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/9euzke4mw4njqe6q7i0il6u5a.o new file mode 100644 index 0000000..0ecd7f0 Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/9euzke4mw4njqe6q7i0il6u5a.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/9h73mnkzk87czpdv1xatkoj5s.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/9h73mnkzk87czpdv1xatkoj5s.o new file mode 100644 index 0000000..adfaa6b Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/9h73mnkzk87czpdv1xatkoj5s.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/9jn9zib0qr5vvbs2gtwlp15ic.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/9jn9zib0qr5vvbs2gtwlp15ic.o new file mode 100644 index 0000000..618eb56 Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/9jn9zib0qr5vvbs2gtwlp15ic.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/9lts5lgp7bzgpk7cq4fv1c9ts.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/9lts5lgp7bzgpk7cq4fv1c9ts.o new file mode 100644 index 0000000..23ad88f Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/9lts5lgp7bzgpk7cq4fv1c9ts.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/9mhzx0xhf31wpvk5m19065vl0.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/9mhzx0xhf31wpvk5m19065vl0.o new file mode 100644 index 0000000..5396d9c Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/9mhzx0xhf31wpvk5m19065vl0.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/9w2ehjm8n5w740eiw0we9u8a3.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/9w2ehjm8n5w740eiw0we9u8a3.o new file mode 100644 index 0000000..1a47f91 Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/9w2ehjm8n5w740eiw0we9u8a3.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/9zs3srvjj1nwf6yt1d5uuwfgq.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/9zs3srvjj1nwf6yt1d5uuwfgq.o new file mode 100644 index 0000000..a46c532 Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/9zs3srvjj1nwf6yt1d5uuwfgq.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/aeaso6palh9t1eejt47nmnlxj.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/aeaso6palh9t1eejt47nmnlxj.o new file mode 100644 index 0000000..51a8212 Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/aeaso6palh9t1eejt47nmnlxj.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/ajzmjhu1un8846nome3iun7nj.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/ajzmjhu1un8846nome3iun7nj.o new file mode 100644 index 0000000..f115bbc Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/ajzmjhu1un8846nome3iun7nj.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/avxh8unynp6abpt52qfs9i1bp.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/avxh8unynp6abpt52qfs9i1bp.o new file mode 100644 index 0000000..4f17ea2 Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/avxh8unynp6abpt52qfs9i1bp.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/b044e04czw7cw2slfgbgz1xtj.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/b044e04czw7cw2slfgbgz1xtj.o new file mode 100644 index 0000000..a5b1e54 Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/b044e04czw7cw2slfgbgz1xtj.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/b0zw8dm4h16rstlz8q5lte1mj.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/b0zw8dm4h16rstlz8q5lte1mj.o new file mode 100644 index 0000000..20419cc Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/b0zw8dm4h16rstlz8q5lte1mj.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/b1lor735l5qv6ii39vlbk6dsa.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/b1lor735l5qv6ii39vlbk6dsa.o new file mode 100644 index 0000000..786e73f Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/b1lor735l5qv6ii39vlbk6dsa.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/bdvq8zwmhp9untz1n9xy4kmqi.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/bdvq8zwmhp9untz1n9xy4kmqi.o new file mode 100644 index 0000000..43a5134 Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/bdvq8zwmhp9untz1n9xy4kmqi.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/bfpc0dc8f8e5qusl7l2ir5ks9.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/bfpc0dc8f8e5qusl7l2ir5ks9.o new file mode 100644 index 0000000..be43ede Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/bfpc0dc8f8e5qusl7l2ir5ks9.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/bl8cp9kqar52knziiknb06bnj.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/bl8cp9kqar52knziiknb06bnj.o new file mode 100644 index 0000000..cd6cb6e Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/bl8cp9kqar52knziiknb06bnj.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/brfgcxxeogvm4299u19i6lrgm.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/brfgcxxeogvm4299u19i6lrgm.o new file mode 100644 index 0000000..25808b1 Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/brfgcxxeogvm4299u19i6lrgm.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/bu2exf5v82u9aql76oq2sw5eg.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/bu2exf5v82u9aql76oq2sw5eg.o new file mode 100644 index 0000000..53a0e27 Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/bu2exf5v82u9aql76oq2sw5eg.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/bvg37navf643fxkvh89w6ajpu.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/bvg37navf643fxkvh89w6ajpu.o new file mode 100644 index 0000000..e2cece4 Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/bvg37navf643fxkvh89w6ajpu.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/c92zwbe7fhcqqk7job7r35bww.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/c92zwbe7fhcqqk7job7r35bww.o new file mode 100644 index 0000000..02a44d6 Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/c92zwbe7fhcqqk7job7r35bww.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/cbuffuif7699comxg3v9uq0ju.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/cbuffuif7699comxg3v9uq0ju.o new file mode 100644 index 0000000..3790609 Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/cbuffuif7699comxg3v9uq0ju.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/cjyuhwn6i4h5xeyxxjdoq743m.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/cjyuhwn6i4h5xeyxxjdoq743m.o new file mode 100644 index 0000000..0dcf0dc Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/cjyuhwn6i4h5xeyxxjdoq743m.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/cvjpc5eb7koohbcidoa95loa3.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/cvjpc5eb7koohbcidoa95loa3.o new file mode 100644 index 0000000..d97eed9 Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/cvjpc5eb7koohbcidoa95loa3.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/d659e90aaltj8klvzgdr4jw8z.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/d659e90aaltj8klvzgdr4jw8z.o new file mode 100644 index 0000000..94dbc80 Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/d659e90aaltj8klvzgdr4jw8z.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/dbf779ehf7clpfesg963umgj3.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/dbf779ehf7clpfesg963umgj3.o new file mode 100644 index 0000000..4920af1 Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/dbf779ehf7clpfesg963umgj3.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/dep-graph.bin b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/dep-graph.bin new file mode 100644 index 0000000..44874a5 Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/dep-graph.bin differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/dlwe323f78rsnlq8eo9zadmpt.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/dlwe323f78rsnlq8eo9zadmpt.o new file mode 100644 index 0000000..2cdc8f5 Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/dlwe323f78rsnlq8eo9zadmpt.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/dm4gp7bs3hnxpri2kx1l8d9ed.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/dm4gp7bs3hnxpri2kx1l8d9ed.o new file mode 100644 index 0000000..5915cc0 Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/dm4gp7bs3hnxpri2kx1l8d9ed.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/dnjnmg0gk47rceap5e707kw7o.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/dnjnmg0gk47rceap5e707kw7o.o new file mode 100644 index 0000000..a4b1b9c Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/dnjnmg0gk47rceap5e707kw7o.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/dp9rwdyy4jo5qm7egl4mqttd9.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/dp9rwdyy4jo5qm7egl4mqttd9.o new file mode 100644 index 0000000..0ece331 Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/dp9rwdyy4jo5qm7egl4mqttd9.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/dvazacn9wbapkunu46oafo70i.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/dvazacn9wbapkunu46oafo70i.o new file mode 100644 index 0000000..66b1a08 Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/dvazacn9wbapkunu46oafo70i.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/e1n16z7nh78dtl4fh00zkidcr.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/e1n16z7nh78dtl4fh00zkidcr.o new file mode 100644 index 0000000..b753eeb Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/e1n16z7nh78dtl4fh00zkidcr.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/e5v5pjpq11at83hjwqdk50cau.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/e5v5pjpq11at83hjwqdk50cau.o new file mode 100644 index 0000000..1863332 Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/e5v5pjpq11at83hjwqdk50cau.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/e9mnteljr53fhasfwdjuwu7t9.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/e9mnteljr53fhasfwdjuwu7t9.o new file mode 100644 index 0000000..060e71c Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/e9mnteljr53fhasfwdjuwu7t9.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/ed6deeyi7spwgasqeqrh1vxoi.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/ed6deeyi7spwgasqeqrh1vxoi.o new file mode 100644 index 0000000..87d6fa1 Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/ed6deeyi7spwgasqeqrh1vxoi.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/ej4f7f39598uxe6i7buiz6kyw.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/ej4f7f39598uxe6i7buiz6kyw.o new file mode 100644 index 0000000..0819fbb Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/ej4f7f39598uxe6i7buiz6kyw.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/ekcxa7th1k5a8277ag5ddkql3.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/ekcxa7th1k5a8277ag5ddkql3.o new file mode 100644 index 0000000..f0f0aa4 Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/ekcxa7th1k5a8277ag5ddkql3.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/eombsn0bhvc8osa7b0mwixe9j.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/eombsn0bhvc8osa7b0mwixe9j.o new file mode 100644 index 0000000..c53ec98 Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/eombsn0bhvc8osa7b0mwixe9j.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/ey6kc4cv271jkk484o9rtb4rw.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/ey6kc4cv271jkk484o9rtb4rw.o new file mode 100644 index 0000000..236bb99 Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/ey6kc4cv271jkk484o9rtb4rw.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/eynn5od91tnyfg91h4fkbsa15.o b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/eynn5od91tnyfg91h4fkbsa15.o new file mode 100644 index 0000000..7b7ad7a Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/eynn5od91tnyfg91h4fkbsa15.o differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/metadata.rmeta b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/metadata.rmeta new file mode 100644 index 0000000..447e19b Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/metadata.rmeta differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/query-cache.bin b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/query-cache.bin new file mode 100644 index 0000000..bfced5a Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/query-cache.bin differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/work-products.bin b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/work-products.bin new file mode 100644 index 0000000..ec56db4 Binary files /dev/null and b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8-3ylfok6x1dbyufmb38fxu1o7h/work-products.bin differ diff --git a/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8.lock b/target/debug/incremental/openvx_core-3d8vgyvpslbb5/s-hhafqbh6wf-0ewhlw8.lock new file mode 100644 index 0000000..e69de29 diff --git a/target/debug/incremental/openvx_ffi-3lgo5ue8t6ufm/s-hhafprxggp-0cb46bd-7df0j9akgs6awcayq9jckkndp/5i75e8l7mie0d60zck9q5lzwa.o b/target/debug/incremental/openvx_ffi-3lgo5ue8t6ufm/s-hhafprxggp-0cb46bd-7df0j9akgs6awcayq9jckkndp/5i75e8l7mie0d60zck9q5lzwa.o new file mode 100644 index 0000000..27d10d9 Binary files /dev/null and b/target/debug/incremental/openvx_ffi-3lgo5ue8t6ufm/s-hhafprxggp-0cb46bd-7df0j9akgs6awcayq9jckkndp/5i75e8l7mie0d60zck9q5lzwa.o differ diff --git a/target/debug/incremental/openvx_ffi-3lgo5ue8t6ufm/s-hhafprxggp-0cb46bd-7df0j9akgs6awcayq9jckkndp/dep-graph.bin b/target/debug/incremental/openvx_ffi-3lgo5ue8t6ufm/s-hhafprxggp-0cb46bd-7df0j9akgs6awcayq9jckkndp/dep-graph.bin new file mode 100644 index 0000000..feb34df Binary files /dev/null and b/target/debug/incremental/openvx_ffi-3lgo5ue8t6ufm/s-hhafprxggp-0cb46bd-7df0j9akgs6awcayq9jckkndp/dep-graph.bin differ diff --git a/target/debug/incremental/openvx_ffi-3lgo5ue8t6ufm/s-hhafprxggp-0cb46bd-7df0j9akgs6awcayq9jckkndp/query-cache.bin b/target/debug/incremental/openvx_ffi-3lgo5ue8t6ufm/s-hhafprxggp-0cb46bd-7df0j9akgs6awcayq9jckkndp/query-cache.bin new file mode 100644 index 0000000..f64a989 Binary files /dev/null and b/target/debug/incremental/openvx_ffi-3lgo5ue8t6ufm/s-hhafprxggp-0cb46bd-7df0j9akgs6awcayq9jckkndp/query-cache.bin differ diff --git a/target/debug/incremental/openvx_ffi-3lgo5ue8t6ufm/s-hhafprxggp-0cb46bd-7df0j9akgs6awcayq9jckkndp/work-products.bin b/target/debug/incremental/openvx_ffi-3lgo5ue8t6ufm/s-hhafprxggp-0cb46bd-7df0j9akgs6awcayq9jckkndp/work-products.bin new file mode 100644 index 0000000..e656ecb Binary files /dev/null and b/target/debug/incremental/openvx_ffi-3lgo5ue8t6ufm/s-hhafprxggp-0cb46bd-7df0j9akgs6awcayq9jckkndp/work-products.bin differ diff --git a/target/debug/incremental/openvx_ffi-3lgo5ue8t6ufm/s-hhafprxggp-0cb46bd.lock b/target/debug/incremental/openvx_ffi-3lgo5ue8t6ufm/s-hhafprxggp-0cb46bd.lock new file mode 100644 index 0000000..e69de29 diff --git a/target/debug/incremental/openvx_ffi-3lgo5ue8t6ufm/s-hhafqbut1a-1klpzpv-2lhn832mmrmcblgelfcvd6tue/5i75e8l7mie0d60zck9q5lzwa.o b/target/debug/incremental/openvx_ffi-3lgo5ue8t6ufm/s-hhafqbut1a-1klpzpv-2lhn832mmrmcblgelfcvd6tue/5i75e8l7mie0d60zck9q5lzwa.o new file mode 100644 index 0000000..27d10d9 Binary files /dev/null and b/target/debug/incremental/openvx_ffi-3lgo5ue8t6ufm/s-hhafqbut1a-1klpzpv-2lhn832mmrmcblgelfcvd6tue/5i75e8l7mie0d60zck9q5lzwa.o differ diff --git a/target/debug/incremental/openvx_ffi-3lgo5ue8t6ufm/s-hhafqbut1a-1klpzpv-2lhn832mmrmcblgelfcvd6tue/dep-graph.bin b/target/debug/incremental/openvx_ffi-3lgo5ue8t6ufm/s-hhafqbut1a-1klpzpv-2lhn832mmrmcblgelfcvd6tue/dep-graph.bin new file mode 100644 index 0000000..e4cf942 Binary files /dev/null and b/target/debug/incremental/openvx_ffi-3lgo5ue8t6ufm/s-hhafqbut1a-1klpzpv-2lhn832mmrmcblgelfcvd6tue/dep-graph.bin differ diff --git a/target/debug/incremental/openvx_ffi-3lgo5ue8t6ufm/s-hhafqbut1a-1klpzpv-2lhn832mmrmcblgelfcvd6tue/query-cache.bin b/target/debug/incremental/openvx_ffi-3lgo5ue8t6ufm/s-hhafqbut1a-1klpzpv-2lhn832mmrmcblgelfcvd6tue/query-cache.bin new file mode 100644 index 0000000..f64a989 Binary files /dev/null and b/target/debug/incremental/openvx_ffi-3lgo5ue8t6ufm/s-hhafqbut1a-1klpzpv-2lhn832mmrmcblgelfcvd6tue/query-cache.bin differ diff --git a/target/debug/incremental/openvx_ffi-3lgo5ue8t6ufm/s-hhafqbut1a-1klpzpv-2lhn832mmrmcblgelfcvd6tue/work-products.bin b/target/debug/incremental/openvx_ffi-3lgo5ue8t6ufm/s-hhafqbut1a-1klpzpv-2lhn832mmrmcblgelfcvd6tue/work-products.bin new file mode 100644 index 0000000..e656ecb Binary files /dev/null and b/target/debug/incremental/openvx_ffi-3lgo5ue8t6ufm/s-hhafqbut1a-1klpzpv-2lhn832mmrmcblgelfcvd6tue/work-products.bin differ diff --git a/target/debug/incremental/openvx_ffi-3lgo5ue8t6ufm/s-hhafqbut1a-1klpzpv.lock b/target/debug/incremental/openvx_ffi-3lgo5ue8t6ufm/s-hhafqbut1a-1klpzpv.lock new file mode 100644 index 0000000..e69de29 diff --git a/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafprtjqy-1bey7fj-1szmfnwglk87h81ca0czgq1cj/00mc4si3xhvbrgheayovabtgd.o b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafprtjqy-1bey7fj-1szmfnwglk87h81ca0czgq1cj/00mc4si3xhvbrgheayovabtgd.o new file mode 100644 index 0000000..efe9ad3 Binary files /dev/null and b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafprtjqy-1bey7fj-1szmfnwglk87h81ca0czgq1cj/00mc4si3xhvbrgheayovabtgd.o differ diff --git a/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafprtjqy-1bey7fj-1szmfnwglk87h81ca0czgq1cj/05d1wm9tmzlcjgjlwrs9jdcb6.o b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafprtjqy-1bey7fj-1szmfnwglk87h81ca0czgq1cj/05d1wm9tmzlcjgjlwrs9jdcb6.o new file mode 100644 index 0000000..5dd6b25 Binary files /dev/null and b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafprtjqy-1bey7fj-1szmfnwglk87h81ca0czgq1cj/05d1wm9tmzlcjgjlwrs9jdcb6.o differ diff --git a/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafprtjqy-1bey7fj-1szmfnwglk87h81ca0czgq1cj/0kdfv0yp0fosmq79tciq5ysw9.o b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafprtjqy-1bey7fj-1szmfnwglk87h81ca0czgq1cj/0kdfv0yp0fosmq79tciq5ysw9.o new file mode 100644 index 0000000..3c3f5ef Binary files /dev/null and b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafprtjqy-1bey7fj-1szmfnwglk87h81ca0czgq1cj/0kdfv0yp0fosmq79tciq5ysw9.o differ diff --git a/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafprtjqy-1bey7fj-1szmfnwglk87h81ca0czgq1cj/0rllpik4dob3wa3muymttr26l.o b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafprtjqy-1bey7fj-1szmfnwglk87h81ca0czgq1cj/0rllpik4dob3wa3muymttr26l.o new file mode 100644 index 0000000..6bff075 Binary files /dev/null and b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafprtjqy-1bey7fj-1szmfnwglk87h81ca0czgq1cj/0rllpik4dob3wa3muymttr26l.o differ diff --git a/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafprtjqy-1bey7fj-1szmfnwglk87h81ca0czgq1cj/0z8s3jlhg7hmcsplzkxkbfiks.o b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafprtjqy-1bey7fj-1szmfnwglk87h81ca0czgq1cj/0z8s3jlhg7hmcsplzkxkbfiks.o new file mode 100644 index 0000000..bf4296c Binary files /dev/null and b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafprtjqy-1bey7fj-1szmfnwglk87h81ca0czgq1cj/0z8s3jlhg7hmcsplzkxkbfiks.o differ diff --git a/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafprtjqy-1bey7fj-1szmfnwglk87h81ca0czgq1cj/13ocihp2q6d1rwxou2fhm7h48.o b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafprtjqy-1bey7fj-1szmfnwglk87h81ca0czgq1cj/13ocihp2q6d1rwxou2fhm7h48.o new file mode 100644 index 0000000..fa943a7 Binary files /dev/null and b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafprtjqy-1bey7fj-1szmfnwglk87h81ca0czgq1cj/13ocihp2q6d1rwxou2fhm7h48.o differ diff --git a/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafprtjqy-1bey7fj-1szmfnwglk87h81ca0czgq1cj/1noppjc0fyiw3gehcfsjjp9yq.o b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafprtjqy-1bey7fj-1szmfnwglk87h81ca0czgq1cj/1noppjc0fyiw3gehcfsjjp9yq.o new file mode 100644 index 0000000..84837ce Binary files /dev/null and b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafprtjqy-1bey7fj-1szmfnwglk87h81ca0czgq1cj/1noppjc0fyiw3gehcfsjjp9yq.o differ diff --git a/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafprtjqy-1bey7fj-1szmfnwglk87h81ca0czgq1cj/1rf79vrriyanrf9ymte48fck1.o b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafprtjqy-1bey7fj-1szmfnwglk87h81ca0czgq1cj/1rf79vrriyanrf9ymte48fck1.o new file mode 100644 index 0000000..a571ef6 Binary files /dev/null and b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafprtjqy-1bey7fj-1szmfnwglk87h81ca0czgq1cj/1rf79vrriyanrf9ymte48fck1.o differ diff --git a/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafprtjqy-1bey7fj-1szmfnwglk87h81ca0czgq1cj/2rzr62suzwqe8ypvcxm7ydepi.o b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafprtjqy-1bey7fj-1szmfnwglk87h81ca0czgq1cj/2rzr62suzwqe8ypvcxm7ydepi.o new file mode 100644 index 0000000..5808453 Binary files /dev/null and b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafprtjqy-1bey7fj-1szmfnwglk87h81ca0czgq1cj/2rzr62suzwqe8ypvcxm7ydepi.o differ diff --git a/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafprtjqy-1bey7fj-1szmfnwglk87h81ca0czgq1cj/34qrb417hrwyxld9yqz0y8m36.o b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafprtjqy-1bey7fj-1szmfnwglk87h81ca0czgq1cj/34qrb417hrwyxld9yqz0y8m36.o new file mode 100644 index 0000000..433be57 Binary files /dev/null and b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafprtjqy-1bey7fj-1szmfnwglk87h81ca0czgq1cj/34qrb417hrwyxld9yqz0y8m36.o differ diff --git a/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafprtjqy-1bey7fj-1szmfnwglk87h81ca0czgq1cj/39wavnqb9tjjbq1zt3i2eil7g.o b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafprtjqy-1bey7fj-1szmfnwglk87h81ca0czgq1cj/39wavnqb9tjjbq1zt3i2eil7g.o new file mode 100644 index 0000000..f4dc74f Binary files /dev/null and b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafprtjqy-1bey7fj-1szmfnwglk87h81ca0czgq1cj/39wavnqb9tjjbq1zt3i2eil7g.o differ diff --git a/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafprtjqy-1bey7fj-1szmfnwglk87h81ca0czgq1cj/3g9yroeb7syng5cgm5jh6khvf.o b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafprtjqy-1bey7fj-1szmfnwglk87h81ca0czgq1cj/3g9yroeb7syng5cgm5jh6khvf.o new file mode 100644 index 0000000..e650bed Binary files /dev/null and b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafprtjqy-1bey7fj-1szmfnwglk87h81ca0czgq1cj/3g9yroeb7syng5cgm5jh6khvf.o differ diff --git a/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafprtjqy-1bey7fj-1szmfnwglk87h81ca0czgq1cj/3mrlp18k25w5fwb2tih1vr08d.o b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafprtjqy-1bey7fj-1szmfnwglk87h81ca0czgq1cj/3mrlp18k25w5fwb2tih1vr08d.o new file mode 100644 index 0000000..c7981ca Binary files /dev/null and b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafprtjqy-1bey7fj-1szmfnwglk87h81ca0czgq1cj/3mrlp18k25w5fwb2tih1vr08d.o differ diff --git a/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafprtjqy-1bey7fj-1szmfnwglk87h81ca0czgq1cj/3nptfsm7arnd060nj2dbuxn2f.o b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafprtjqy-1bey7fj-1szmfnwglk87h81ca0czgq1cj/3nptfsm7arnd060nj2dbuxn2f.o new file mode 100644 index 0000000..cabe4a2 Binary files /dev/null and b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafprtjqy-1bey7fj-1szmfnwglk87h81ca0czgq1cj/3nptfsm7arnd060nj2dbuxn2f.o differ diff --git a/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafprtjqy-1bey7fj-1szmfnwglk87h81ca0czgq1cj/3qj8xgqxs545q9o22ca51jw9d.o b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafprtjqy-1bey7fj-1szmfnwglk87h81ca0czgq1cj/3qj8xgqxs545q9o22ca51jw9d.o new file mode 100644 index 0000000..a5740c1 Binary files /dev/null and b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafprtjqy-1bey7fj-1szmfnwglk87h81ca0czgq1cj/3qj8xgqxs545q9o22ca51jw9d.o differ diff --git a/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafprtjqy-1bey7fj-1szmfnwglk87h81ca0czgq1cj/448m81qd9nf5ztawzfxzth8fd.o b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafprtjqy-1bey7fj-1szmfnwglk87h81ca0czgq1cj/448m81qd9nf5ztawzfxzth8fd.o new file mode 100644 index 0000000..0855681 Binary files /dev/null and b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafprtjqy-1bey7fj-1szmfnwglk87h81ca0czgq1cj/448m81qd9nf5ztawzfxzth8fd.o differ diff --git a/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafprtjqy-1bey7fj-1szmfnwglk87h81ca0czgq1cj/45nwmoua7u40cd8smk8he28yp.o b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafprtjqy-1bey7fj-1szmfnwglk87h81ca0czgq1cj/45nwmoua7u40cd8smk8he28yp.o new file mode 100644 index 0000000..495cee6 Binary files /dev/null and b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafprtjqy-1bey7fj-1szmfnwglk87h81ca0czgq1cj/45nwmoua7u40cd8smk8he28yp.o differ diff --git a/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafprtjqy-1bey7fj-1szmfnwglk87h81ca0czgq1cj/4rk5w7n7qgsp7hv3v4jcs292g.o b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafprtjqy-1bey7fj-1szmfnwglk87h81ca0czgq1cj/4rk5w7n7qgsp7hv3v4jcs292g.o new file mode 100644 index 0000000..65db3aa Binary files /dev/null and b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafprtjqy-1bey7fj-1szmfnwglk87h81ca0czgq1cj/4rk5w7n7qgsp7hv3v4jcs292g.o differ diff --git a/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafprtjqy-1bey7fj-1szmfnwglk87h81ca0czgq1cj/50x7u18mambd5n08zcww95kg2.o b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafprtjqy-1bey7fj-1szmfnwglk87h81ca0czgq1cj/50x7u18mambd5n08zcww95kg2.o new file mode 100644 index 0000000..ad7dc00 Binary files /dev/null and b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafprtjqy-1bey7fj-1szmfnwglk87h81ca0czgq1cj/50x7u18mambd5n08zcww95kg2.o differ diff --git a/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafprtjqy-1bey7fj-1szmfnwglk87h81ca0czgq1cj/56zsvi63pk1feybntph5pjhjb.o b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafprtjqy-1bey7fj-1szmfnwglk87h81ca0czgq1cj/56zsvi63pk1feybntph5pjhjb.o new file mode 100644 index 0000000..21bb3c5 Binary files /dev/null and b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafprtjqy-1bey7fj-1szmfnwglk87h81ca0czgq1cj/56zsvi63pk1feybntph5pjhjb.o differ diff --git a/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafprtjqy-1bey7fj-1szmfnwglk87h81ca0czgq1cj/59ksaqd1svi9u2z7qfv50t4ag.o b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafprtjqy-1bey7fj-1szmfnwglk87h81ca0czgq1cj/59ksaqd1svi9u2z7qfv50t4ag.o new file mode 100644 index 0000000..609d4fc Binary files /dev/null and b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafprtjqy-1bey7fj-1szmfnwglk87h81ca0czgq1cj/59ksaqd1svi9u2z7qfv50t4ag.o differ diff --git a/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafprtjqy-1bey7fj-1szmfnwglk87h81ca0czgq1cj/5bi8ngqwdd0osspugmwto58cy.o b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafprtjqy-1bey7fj-1szmfnwglk87h81ca0czgq1cj/5bi8ngqwdd0osspugmwto58cy.o new file mode 100644 index 0000000..125e9e9 Binary files /dev/null and b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafprtjqy-1bey7fj-1szmfnwglk87h81ca0czgq1cj/5bi8ngqwdd0osspugmwto58cy.o differ diff --git a/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafprtjqy-1bey7fj-1szmfnwglk87h81ca0czgq1cj/5hk6hsrkqmiqm929oelvkq2bl.o b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafprtjqy-1bey7fj-1szmfnwglk87h81ca0czgq1cj/5hk6hsrkqmiqm929oelvkq2bl.o new file mode 100644 index 0000000..0b8c06c Binary files /dev/null and b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafprtjqy-1bey7fj-1szmfnwglk87h81ca0czgq1cj/5hk6hsrkqmiqm929oelvkq2bl.o differ diff --git a/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafprtjqy-1bey7fj-1szmfnwglk87h81ca0czgq1cj/5kxu6p7bpmg3dead7g3of0aug.o b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafprtjqy-1bey7fj-1szmfnwglk87h81ca0czgq1cj/5kxu6p7bpmg3dead7g3of0aug.o new file mode 100644 index 0000000..77380ee Binary files /dev/null and b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafprtjqy-1bey7fj-1szmfnwglk87h81ca0czgq1cj/5kxu6p7bpmg3dead7g3of0aug.o differ diff --git a/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafprtjqy-1bey7fj-1szmfnwglk87h81ca0czgq1cj/5sd2gp0pj89gpxkatx6mvyrsn.o b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafprtjqy-1bey7fj-1szmfnwglk87h81ca0czgq1cj/5sd2gp0pj89gpxkatx6mvyrsn.o new file mode 100644 index 0000000..a34f90e Binary files /dev/null and b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafprtjqy-1bey7fj-1szmfnwglk87h81ca0czgq1cj/5sd2gp0pj89gpxkatx6mvyrsn.o differ diff --git a/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafprtjqy-1bey7fj-1szmfnwglk87h81ca0czgq1cj/5thtv2g6bzvq9di3mr6q7mv3a.o b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafprtjqy-1bey7fj-1szmfnwglk87h81ca0czgq1cj/5thtv2g6bzvq9di3mr6q7mv3a.o new file mode 100644 index 0000000..868e2bc Binary files /dev/null and b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafprtjqy-1bey7fj-1szmfnwglk87h81ca0czgq1cj/5thtv2g6bzvq9di3mr6q7mv3a.o differ diff --git a/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafprtjqy-1bey7fj-1szmfnwglk87h81ca0czgq1cj/61ilj8uxfj4n3p11m8o85egle.o b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafprtjqy-1bey7fj-1szmfnwglk87h81ca0czgq1cj/61ilj8uxfj4n3p11m8o85egle.o new file mode 100644 index 0000000..bcda730 Binary files /dev/null and b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafprtjqy-1bey7fj-1szmfnwglk87h81ca0czgq1cj/61ilj8uxfj4n3p11m8o85egle.o differ diff --git a/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafprtjqy-1bey7fj-1szmfnwglk87h81ca0czgq1cj/627dvk7kvtktnm5ygkk441nos.o b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafprtjqy-1bey7fj-1szmfnwglk87h81ca0czgq1cj/627dvk7kvtktnm5ygkk441nos.o new file mode 100644 index 0000000..724b3f5 Binary files /dev/null and b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafprtjqy-1bey7fj-1szmfnwglk87h81ca0czgq1cj/627dvk7kvtktnm5ygkk441nos.o differ diff --git a/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafprtjqy-1bey7fj-1szmfnwglk87h81ca0czgq1cj/6erhgp2w4vy0yt2zec1na9qpy.o b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafprtjqy-1bey7fj-1szmfnwglk87h81ca0czgq1cj/6erhgp2w4vy0yt2zec1na9qpy.o new file mode 100644 index 0000000..55ac33e Binary files /dev/null and b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafprtjqy-1bey7fj-1szmfnwglk87h81ca0czgq1cj/6erhgp2w4vy0yt2zec1na9qpy.o differ diff --git a/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafprtjqy-1bey7fj-1szmfnwglk87h81ca0czgq1cj/8dt4oggu4xy69uyd869zrl9t1.o b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafprtjqy-1bey7fj-1szmfnwglk87h81ca0czgq1cj/8dt4oggu4xy69uyd869zrl9t1.o new file mode 100644 index 0000000..dd36051 Binary files /dev/null and b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafprtjqy-1bey7fj-1szmfnwglk87h81ca0czgq1cj/8dt4oggu4xy69uyd869zrl9t1.o differ diff --git a/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafprtjqy-1bey7fj-1szmfnwglk87h81ca0czgq1cj/932lgw3ybpkcp1f8cnoyn8kfh.o b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafprtjqy-1bey7fj-1szmfnwglk87h81ca0czgq1cj/932lgw3ybpkcp1f8cnoyn8kfh.o new file mode 100644 index 0000000..3aba2e0 Binary files /dev/null and b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafprtjqy-1bey7fj-1szmfnwglk87h81ca0czgq1cj/932lgw3ybpkcp1f8cnoyn8kfh.o differ diff --git a/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafprtjqy-1bey7fj-1szmfnwglk87h81ca0czgq1cj/9p23cmfy4a3smbbi16ur6hxbt.o b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafprtjqy-1bey7fj-1szmfnwglk87h81ca0czgq1cj/9p23cmfy4a3smbbi16ur6hxbt.o new file mode 100644 index 0000000..19f5cad Binary files /dev/null and b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafprtjqy-1bey7fj-1szmfnwglk87h81ca0czgq1cj/9p23cmfy4a3smbbi16ur6hxbt.o differ diff --git a/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafprtjqy-1bey7fj-1szmfnwglk87h81ca0czgq1cj/9y03z8uk5bet4khsm0yl9fju9.o b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafprtjqy-1bey7fj-1szmfnwglk87h81ca0czgq1cj/9y03z8uk5bet4khsm0yl9fju9.o new file mode 100644 index 0000000..c3d45a4 Binary files /dev/null and b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafprtjqy-1bey7fj-1szmfnwglk87h81ca0czgq1cj/9y03z8uk5bet4khsm0yl9fju9.o differ diff --git a/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafprtjqy-1bey7fj-1szmfnwglk87h81ca0czgq1cj/9zdebidnu0euukb9hhvhgu740.o b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafprtjqy-1bey7fj-1szmfnwglk87h81ca0czgq1cj/9zdebidnu0euukb9hhvhgu740.o new file mode 100644 index 0000000..bd2c358 Binary files /dev/null and b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafprtjqy-1bey7fj-1szmfnwglk87h81ca0czgq1cj/9zdebidnu0euukb9hhvhgu740.o differ diff --git a/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafprtjqy-1bey7fj-1szmfnwglk87h81ca0czgq1cj/a3otd30grew2uxx9vq9sr1rmw.o b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafprtjqy-1bey7fj-1szmfnwglk87h81ca0czgq1cj/a3otd30grew2uxx9vq9sr1rmw.o new file mode 100644 index 0000000..82624d9 Binary files /dev/null and b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafprtjqy-1bey7fj-1szmfnwglk87h81ca0czgq1cj/a3otd30grew2uxx9vq9sr1rmw.o differ diff --git a/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafprtjqy-1bey7fj-1szmfnwglk87h81ca0czgq1cj/a83734t82vik8rmq9rqkzbyps.o b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafprtjqy-1bey7fj-1szmfnwglk87h81ca0czgq1cj/a83734t82vik8rmq9rqkzbyps.o new file mode 100644 index 0000000..87f5609 Binary files /dev/null and b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafprtjqy-1bey7fj-1szmfnwglk87h81ca0czgq1cj/a83734t82vik8rmq9rqkzbyps.o differ diff --git a/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafprtjqy-1bey7fj-1szmfnwglk87h81ca0czgq1cj/ai0lbqntq767ox14xrp6rt5s7.o b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafprtjqy-1bey7fj-1szmfnwglk87h81ca0czgq1cj/ai0lbqntq767ox14xrp6rt5s7.o new file mode 100644 index 0000000..b6c7224 Binary files /dev/null and b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafprtjqy-1bey7fj-1szmfnwglk87h81ca0czgq1cj/ai0lbqntq767ox14xrp6rt5s7.o differ diff --git a/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafprtjqy-1bey7fj-1szmfnwglk87h81ca0czgq1cj/cpqo28kjbjhilaqq7cfw2f01b.o b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafprtjqy-1bey7fj-1szmfnwglk87h81ca0czgq1cj/cpqo28kjbjhilaqq7cfw2f01b.o new file mode 100644 index 0000000..4e4e8e8 Binary files /dev/null and b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafprtjqy-1bey7fj-1szmfnwglk87h81ca0czgq1cj/cpqo28kjbjhilaqq7cfw2f01b.o differ diff --git a/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafprtjqy-1bey7fj-1szmfnwglk87h81ca0czgq1cj/ct3b4sw93o8t3743hhz7u8prk.o b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafprtjqy-1bey7fj-1szmfnwglk87h81ca0czgq1cj/ct3b4sw93o8t3743hhz7u8prk.o new file mode 100644 index 0000000..68664c6 Binary files /dev/null and b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafprtjqy-1bey7fj-1szmfnwglk87h81ca0czgq1cj/ct3b4sw93o8t3743hhz7u8prk.o differ diff --git a/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafprtjqy-1bey7fj-1szmfnwglk87h81ca0czgq1cj/d4pgw8slqppws85uw3uqlbyzv.o b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafprtjqy-1bey7fj-1szmfnwglk87h81ca0czgq1cj/d4pgw8slqppws85uw3uqlbyzv.o new file mode 100644 index 0000000..4b9fbe2 Binary files /dev/null and b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafprtjqy-1bey7fj-1szmfnwglk87h81ca0czgq1cj/d4pgw8slqppws85uw3uqlbyzv.o differ diff --git a/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafprtjqy-1bey7fj-1szmfnwglk87h81ca0czgq1cj/dep-graph.bin b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafprtjqy-1bey7fj-1szmfnwglk87h81ca0czgq1cj/dep-graph.bin new file mode 100644 index 0000000..0d07acc Binary files /dev/null and b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafprtjqy-1bey7fj-1szmfnwglk87h81ca0czgq1cj/dep-graph.bin differ diff --git a/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafprtjqy-1bey7fj-1szmfnwglk87h81ca0czgq1cj/dxrq1vxen82csnbzaluan3t2k.o b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafprtjqy-1bey7fj-1szmfnwglk87h81ca0czgq1cj/dxrq1vxen82csnbzaluan3t2k.o new file mode 100644 index 0000000..bfa39dc Binary files /dev/null and b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafprtjqy-1bey7fj-1szmfnwglk87h81ca0czgq1cj/dxrq1vxen82csnbzaluan3t2k.o differ diff --git a/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafprtjqy-1bey7fj-1szmfnwglk87h81ca0czgq1cj/e23o7mrlhz9uk66j9e230ujwu.o b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafprtjqy-1bey7fj-1szmfnwglk87h81ca0czgq1cj/e23o7mrlhz9uk66j9e230ujwu.o new file mode 100644 index 0000000..b2f09e5 Binary files /dev/null and b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafprtjqy-1bey7fj-1szmfnwglk87h81ca0czgq1cj/e23o7mrlhz9uk66j9e230ujwu.o differ diff --git a/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafprtjqy-1bey7fj-1szmfnwglk87h81ca0czgq1cj/eek8embpag1ow2p3h216e4c2s.o b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafprtjqy-1bey7fj-1szmfnwglk87h81ca0czgq1cj/eek8embpag1ow2p3h216e4c2s.o new file mode 100644 index 0000000..fb02889 Binary files /dev/null and b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafprtjqy-1bey7fj-1szmfnwglk87h81ca0czgq1cj/eek8embpag1ow2p3h216e4c2s.o differ diff --git a/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafprtjqy-1bey7fj-1szmfnwglk87h81ca0czgq1cj/efgdzr0r1fm460xn130yhfjz4.o b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafprtjqy-1bey7fj-1szmfnwglk87h81ca0czgq1cj/efgdzr0r1fm460xn130yhfjz4.o new file mode 100644 index 0000000..2b903f9 Binary files /dev/null and b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafprtjqy-1bey7fj-1szmfnwglk87h81ca0czgq1cj/efgdzr0r1fm460xn130yhfjz4.o differ diff --git a/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafprtjqy-1bey7fj-1szmfnwglk87h81ca0czgq1cj/eh57n7zh2topfc3go2uy0b17v.o b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafprtjqy-1bey7fj-1szmfnwglk87h81ca0czgq1cj/eh57n7zh2topfc3go2uy0b17v.o new file mode 100644 index 0000000..4dcad38 Binary files /dev/null and b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafprtjqy-1bey7fj-1szmfnwglk87h81ca0czgq1cj/eh57n7zh2topfc3go2uy0b17v.o differ diff --git a/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafprtjqy-1bey7fj-1szmfnwglk87h81ca0czgq1cj/metadata.rmeta b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafprtjqy-1bey7fj-1szmfnwglk87h81ca0czgq1cj/metadata.rmeta new file mode 100644 index 0000000..c9e0ae4 Binary files /dev/null and b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafprtjqy-1bey7fj-1szmfnwglk87h81ca0czgq1cj/metadata.rmeta differ diff --git a/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafprtjqy-1bey7fj-1szmfnwglk87h81ca0czgq1cj/query-cache.bin b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafprtjqy-1bey7fj-1szmfnwglk87h81ca0czgq1cj/query-cache.bin new file mode 100644 index 0000000..c5c577f Binary files /dev/null and b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafprtjqy-1bey7fj-1szmfnwglk87h81ca0czgq1cj/query-cache.bin differ diff --git a/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafprtjqy-1bey7fj-1szmfnwglk87h81ca0czgq1cj/work-products.bin b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafprtjqy-1bey7fj-1szmfnwglk87h81ca0czgq1cj/work-products.bin new file mode 100644 index 0000000..5aec63d Binary files /dev/null and b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafprtjqy-1bey7fj-1szmfnwglk87h81ca0czgq1cj/work-products.bin differ diff --git a/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafprtjqy-1bey7fj.lock b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafprtjqy-1bey7fj.lock new file mode 100644 index 0000000..e69de29 diff --git a/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafqbqopu-1k73oyy-3kuzc4t5wlz3uirbju04k08r8/00mc4si3xhvbrgheayovabtgd.o b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafqbqopu-1k73oyy-3kuzc4t5wlz3uirbju04k08r8/00mc4si3xhvbrgheayovabtgd.o new file mode 100644 index 0000000..efe9ad3 Binary files /dev/null and b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafqbqopu-1k73oyy-3kuzc4t5wlz3uirbju04k08r8/00mc4si3xhvbrgheayovabtgd.o differ diff --git a/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafqbqopu-1k73oyy-3kuzc4t5wlz3uirbju04k08r8/05d1wm9tmzlcjgjlwrs9jdcb6.o b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafqbqopu-1k73oyy-3kuzc4t5wlz3uirbju04k08r8/05d1wm9tmzlcjgjlwrs9jdcb6.o new file mode 100644 index 0000000..5dd6b25 Binary files /dev/null and b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafqbqopu-1k73oyy-3kuzc4t5wlz3uirbju04k08r8/05d1wm9tmzlcjgjlwrs9jdcb6.o differ diff --git a/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafqbqopu-1k73oyy-3kuzc4t5wlz3uirbju04k08r8/0kdfv0yp0fosmq79tciq5ysw9.o b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafqbqopu-1k73oyy-3kuzc4t5wlz3uirbju04k08r8/0kdfv0yp0fosmq79tciq5ysw9.o new file mode 100644 index 0000000..3c3f5ef Binary files /dev/null and b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafqbqopu-1k73oyy-3kuzc4t5wlz3uirbju04k08r8/0kdfv0yp0fosmq79tciq5ysw9.o differ diff --git a/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafqbqopu-1k73oyy-3kuzc4t5wlz3uirbju04k08r8/0rllpik4dob3wa3muymttr26l.o b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafqbqopu-1k73oyy-3kuzc4t5wlz3uirbju04k08r8/0rllpik4dob3wa3muymttr26l.o new file mode 100644 index 0000000..6bff075 Binary files /dev/null and b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafqbqopu-1k73oyy-3kuzc4t5wlz3uirbju04k08r8/0rllpik4dob3wa3muymttr26l.o differ diff --git a/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafqbqopu-1k73oyy-3kuzc4t5wlz3uirbju04k08r8/0z8s3jlhg7hmcsplzkxkbfiks.o b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafqbqopu-1k73oyy-3kuzc4t5wlz3uirbju04k08r8/0z8s3jlhg7hmcsplzkxkbfiks.o new file mode 100644 index 0000000..bf4296c Binary files /dev/null and b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafqbqopu-1k73oyy-3kuzc4t5wlz3uirbju04k08r8/0z8s3jlhg7hmcsplzkxkbfiks.o differ diff --git a/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafqbqopu-1k73oyy-3kuzc4t5wlz3uirbju04k08r8/13ocihp2q6d1rwxou2fhm7h48.o b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafqbqopu-1k73oyy-3kuzc4t5wlz3uirbju04k08r8/13ocihp2q6d1rwxou2fhm7h48.o new file mode 100644 index 0000000..fa943a7 Binary files /dev/null and b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafqbqopu-1k73oyy-3kuzc4t5wlz3uirbju04k08r8/13ocihp2q6d1rwxou2fhm7h48.o differ diff --git a/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafqbqopu-1k73oyy-3kuzc4t5wlz3uirbju04k08r8/1noppjc0fyiw3gehcfsjjp9yq.o b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafqbqopu-1k73oyy-3kuzc4t5wlz3uirbju04k08r8/1noppjc0fyiw3gehcfsjjp9yq.o new file mode 100644 index 0000000..84837ce Binary files /dev/null and b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafqbqopu-1k73oyy-3kuzc4t5wlz3uirbju04k08r8/1noppjc0fyiw3gehcfsjjp9yq.o differ diff --git a/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafqbqopu-1k73oyy-3kuzc4t5wlz3uirbju04k08r8/1rf79vrriyanrf9ymte48fck1.o b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafqbqopu-1k73oyy-3kuzc4t5wlz3uirbju04k08r8/1rf79vrriyanrf9ymte48fck1.o new file mode 100644 index 0000000..a571ef6 Binary files /dev/null and b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafqbqopu-1k73oyy-3kuzc4t5wlz3uirbju04k08r8/1rf79vrriyanrf9ymte48fck1.o differ diff --git a/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafqbqopu-1k73oyy-3kuzc4t5wlz3uirbju04k08r8/2rzr62suzwqe8ypvcxm7ydepi.o b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafqbqopu-1k73oyy-3kuzc4t5wlz3uirbju04k08r8/2rzr62suzwqe8ypvcxm7ydepi.o new file mode 100644 index 0000000..5808453 Binary files /dev/null and b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafqbqopu-1k73oyy-3kuzc4t5wlz3uirbju04k08r8/2rzr62suzwqe8ypvcxm7ydepi.o differ diff --git a/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafqbqopu-1k73oyy-3kuzc4t5wlz3uirbju04k08r8/34qrb417hrwyxld9yqz0y8m36.o b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafqbqopu-1k73oyy-3kuzc4t5wlz3uirbju04k08r8/34qrb417hrwyxld9yqz0y8m36.o new file mode 100644 index 0000000..433be57 Binary files /dev/null and b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafqbqopu-1k73oyy-3kuzc4t5wlz3uirbju04k08r8/34qrb417hrwyxld9yqz0y8m36.o differ diff --git a/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafqbqopu-1k73oyy-3kuzc4t5wlz3uirbju04k08r8/39wavnqb9tjjbq1zt3i2eil7g.o b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafqbqopu-1k73oyy-3kuzc4t5wlz3uirbju04k08r8/39wavnqb9tjjbq1zt3i2eil7g.o new file mode 100644 index 0000000..f4dc74f Binary files /dev/null and b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafqbqopu-1k73oyy-3kuzc4t5wlz3uirbju04k08r8/39wavnqb9tjjbq1zt3i2eil7g.o differ diff --git a/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafqbqopu-1k73oyy-3kuzc4t5wlz3uirbju04k08r8/3g9yroeb7syng5cgm5jh6khvf.o b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafqbqopu-1k73oyy-3kuzc4t5wlz3uirbju04k08r8/3g9yroeb7syng5cgm5jh6khvf.o new file mode 100644 index 0000000..e650bed Binary files /dev/null and b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafqbqopu-1k73oyy-3kuzc4t5wlz3uirbju04k08r8/3g9yroeb7syng5cgm5jh6khvf.o differ diff --git a/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafqbqopu-1k73oyy-3kuzc4t5wlz3uirbju04k08r8/3mrlp18k25w5fwb2tih1vr08d.o b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafqbqopu-1k73oyy-3kuzc4t5wlz3uirbju04k08r8/3mrlp18k25w5fwb2tih1vr08d.o new file mode 100644 index 0000000..c7981ca Binary files /dev/null and b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafqbqopu-1k73oyy-3kuzc4t5wlz3uirbju04k08r8/3mrlp18k25w5fwb2tih1vr08d.o differ diff --git a/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafqbqopu-1k73oyy-3kuzc4t5wlz3uirbju04k08r8/3nptfsm7arnd060nj2dbuxn2f.o b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafqbqopu-1k73oyy-3kuzc4t5wlz3uirbju04k08r8/3nptfsm7arnd060nj2dbuxn2f.o new file mode 100644 index 0000000..cabe4a2 Binary files /dev/null and b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafqbqopu-1k73oyy-3kuzc4t5wlz3uirbju04k08r8/3nptfsm7arnd060nj2dbuxn2f.o differ diff --git a/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafqbqopu-1k73oyy-3kuzc4t5wlz3uirbju04k08r8/3qj8xgqxs545q9o22ca51jw9d.o b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafqbqopu-1k73oyy-3kuzc4t5wlz3uirbju04k08r8/3qj8xgqxs545q9o22ca51jw9d.o new file mode 100644 index 0000000..a5740c1 Binary files /dev/null and b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafqbqopu-1k73oyy-3kuzc4t5wlz3uirbju04k08r8/3qj8xgqxs545q9o22ca51jw9d.o differ diff --git a/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafqbqopu-1k73oyy-3kuzc4t5wlz3uirbju04k08r8/448m81qd9nf5ztawzfxzth8fd.o b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafqbqopu-1k73oyy-3kuzc4t5wlz3uirbju04k08r8/448m81qd9nf5ztawzfxzth8fd.o new file mode 100644 index 0000000..0855681 Binary files /dev/null and b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafqbqopu-1k73oyy-3kuzc4t5wlz3uirbju04k08r8/448m81qd9nf5ztawzfxzth8fd.o differ diff --git a/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafqbqopu-1k73oyy-3kuzc4t5wlz3uirbju04k08r8/45nwmoua7u40cd8smk8he28yp.o b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafqbqopu-1k73oyy-3kuzc4t5wlz3uirbju04k08r8/45nwmoua7u40cd8smk8he28yp.o new file mode 100644 index 0000000..495cee6 Binary files /dev/null and b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafqbqopu-1k73oyy-3kuzc4t5wlz3uirbju04k08r8/45nwmoua7u40cd8smk8he28yp.o differ diff --git a/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafqbqopu-1k73oyy-3kuzc4t5wlz3uirbju04k08r8/4rk5w7n7qgsp7hv3v4jcs292g.o b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafqbqopu-1k73oyy-3kuzc4t5wlz3uirbju04k08r8/4rk5w7n7qgsp7hv3v4jcs292g.o new file mode 100644 index 0000000..65db3aa Binary files /dev/null and b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafqbqopu-1k73oyy-3kuzc4t5wlz3uirbju04k08r8/4rk5w7n7qgsp7hv3v4jcs292g.o differ diff --git a/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafqbqopu-1k73oyy-3kuzc4t5wlz3uirbju04k08r8/50x7u18mambd5n08zcww95kg2.o b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafqbqopu-1k73oyy-3kuzc4t5wlz3uirbju04k08r8/50x7u18mambd5n08zcww95kg2.o new file mode 100644 index 0000000..ad7dc00 Binary files /dev/null and b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafqbqopu-1k73oyy-3kuzc4t5wlz3uirbju04k08r8/50x7u18mambd5n08zcww95kg2.o differ diff --git a/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafqbqopu-1k73oyy-3kuzc4t5wlz3uirbju04k08r8/56zsvi63pk1feybntph5pjhjb.o b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafqbqopu-1k73oyy-3kuzc4t5wlz3uirbju04k08r8/56zsvi63pk1feybntph5pjhjb.o new file mode 100644 index 0000000..21bb3c5 Binary files /dev/null and b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafqbqopu-1k73oyy-3kuzc4t5wlz3uirbju04k08r8/56zsvi63pk1feybntph5pjhjb.o differ diff --git a/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafqbqopu-1k73oyy-3kuzc4t5wlz3uirbju04k08r8/59ksaqd1svi9u2z7qfv50t4ag.o b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafqbqopu-1k73oyy-3kuzc4t5wlz3uirbju04k08r8/59ksaqd1svi9u2z7qfv50t4ag.o new file mode 100644 index 0000000..609d4fc Binary files /dev/null and b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafqbqopu-1k73oyy-3kuzc4t5wlz3uirbju04k08r8/59ksaqd1svi9u2z7qfv50t4ag.o differ diff --git a/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafqbqopu-1k73oyy-3kuzc4t5wlz3uirbju04k08r8/5bi8ngqwdd0osspugmwto58cy.o b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafqbqopu-1k73oyy-3kuzc4t5wlz3uirbju04k08r8/5bi8ngqwdd0osspugmwto58cy.o new file mode 100644 index 0000000..125e9e9 Binary files /dev/null and b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafqbqopu-1k73oyy-3kuzc4t5wlz3uirbju04k08r8/5bi8ngqwdd0osspugmwto58cy.o differ diff --git a/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafqbqopu-1k73oyy-3kuzc4t5wlz3uirbju04k08r8/5hk6hsrkqmiqm929oelvkq2bl.o b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafqbqopu-1k73oyy-3kuzc4t5wlz3uirbju04k08r8/5hk6hsrkqmiqm929oelvkq2bl.o new file mode 100644 index 0000000..0b8c06c Binary files /dev/null and b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafqbqopu-1k73oyy-3kuzc4t5wlz3uirbju04k08r8/5hk6hsrkqmiqm929oelvkq2bl.o differ diff --git a/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafqbqopu-1k73oyy-3kuzc4t5wlz3uirbju04k08r8/5kxu6p7bpmg3dead7g3of0aug.o b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafqbqopu-1k73oyy-3kuzc4t5wlz3uirbju04k08r8/5kxu6p7bpmg3dead7g3of0aug.o new file mode 100644 index 0000000..77380ee Binary files /dev/null and b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafqbqopu-1k73oyy-3kuzc4t5wlz3uirbju04k08r8/5kxu6p7bpmg3dead7g3of0aug.o differ diff --git a/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafqbqopu-1k73oyy-3kuzc4t5wlz3uirbju04k08r8/5sd2gp0pj89gpxkatx6mvyrsn.o b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafqbqopu-1k73oyy-3kuzc4t5wlz3uirbju04k08r8/5sd2gp0pj89gpxkatx6mvyrsn.o new file mode 100644 index 0000000..a34f90e Binary files /dev/null and b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafqbqopu-1k73oyy-3kuzc4t5wlz3uirbju04k08r8/5sd2gp0pj89gpxkatx6mvyrsn.o differ diff --git a/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafqbqopu-1k73oyy-3kuzc4t5wlz3uirbju04k08r8/5thtv2g6bzvq9di3mr6q7mv3a.o b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafqbqopu-1k73oyy-3kuzc4t5wlz3uirbju04k08r8/5thtv2g6bzvq9di3mr6q7mv3a.o new file mode 100644 index 0000000..868e2bc Binary files /dev/null and b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafqbqopu-1k73oyy-3kuzc4t5wlz3uirbju04k08r8/5thtv2g6bzvq9di3mr6q7mv3a.o differ diff --git a/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafqbqopu-1k73oyy-3kuzc4t5wlz3uirbju04k08r8/61ilj8uxfj4n3p11m8o85egle.o b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafqbqopu-1k73oyy-3kuzc4t5wlz3uirbju04k08r8/61ilj8uxfj4n3p11m8o85egle.o new file mode 100644 index 0000000..bcda730 Binary files /dev/null and b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafqbqopu-1k73oyy-3kuzc4t5wlz3uirbju04k08r8/61ilj8uxfj4n3p11m8o85egle.o differ diff --git a/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafqbqopu-1k73oyy-3kuzc4t5wlz3uirbju04k08r8/627dvk7kvtktnm5ygkk441nos.o b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafqbqopu-1k73oyy-3kuzc4t5wlz3uirbju04k08r8/627dvk7kvtktnm5ygkk441nos.o new file mode 100644 index 0000000..724b3f5 Binary files /dev/null and b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafqbqopu-1k73oyy-3kuzc4t5wlz3uirbju04k08r8/627dvk7kvtktnm5ygkk441nos.o differ diff --git a/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafqbqopu-1k73oyy-3kuzc4t5wlz3uirbju04k08r8/6erhgp2w4vy0yt2zec1na9qpy.o b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafqbqopu-1k73oyy-3kuzc4t5wlz3uirbju04k08r8/6erhgp2w4vy0yt2zec1na9qpy.o new file mode 100644 index 0000000..55ac33e Binary files /dev/null and b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafqbqopu-1k73oyy-3kuzc4t5wlz3uirbju04k08r8/6erhgp2w4vy0yt2zec1na9qpy.o differ diff --git a/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafqbqopu-1k73oyy-3kuzc4t5wlz3uirbju04k08r8/8dt4oggu4xy69uyd869zrl9t1.o b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafqbqopu-1k73oyy-3kuzc4t5wlz3uirbju04k08r8/8dt4oggu4xy69uyd869zrl9t1.o new file mode 100644 index 0000000..dd36051 Binary files /dev/null and b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafqbqopu-1k73oyy-3kuzc4t5wlz3uirbju04k08r8/8dt4oggu4xy69uyd869zrl9t1.o differ diff --git a/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafqbqopu-1k73oyy-3kuzc4t5wlz3uirbju04k08r8/932lgw3ybpkcp1f8cnoyn8kfh.o b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafqbqopu-1k73oyy-3kuzc4t5wlz3uirbju04k08r8/932lgw3ybpkcp1f8cnoyn8kfh.o new file mode 100644 index 0000000..3aba2e0 Binary files /dev/null and b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafqbqopu-1k73oyy-3kuzc4t5wlz3uirbju04k08r8/932lgw3ybpkcp1f8cnoyn8kfh.o differ diff --git a/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafqbqopu-1k73oyy-3kuzc4t5wlz3uirbju04k08r8/9p23cmfy4a3smbbi16ur6hxbt.o b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafqbqopu-1k73oyy-3kuzc4t5wlz3uirbju04k08r8/9p23cmfy4a3smbbi16ur6hxbt.o new file mode 100644 index 0000000..19f5cad Binary files /dev/null and b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafqbqopu-1k73oyy-3kuzc4t5wlz3uirbju04k08r8/9p23cmfy4a3smbbi16ur6hxbt.o differ diff --git a/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafqbqopu-1k73oyy-3kuzc4t5wlz3uirbju04k08r8/9y03z8uk5bet4khsm0yl9fju9.o b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafqbqopu-1k73oyy-3kuzc4t5wlz3uirbju04k08r8/9y03z8uk5bet4khsm0yl9fju9.o new file mode 100644 index 0000000..c3d45a4 Binary files /dev/null and b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafqbqopu-1k73oyy-3kuzc4t5wlz3uirbju04k08r8/9y03z8uk5bet4khsm0yl9fju9.o differ diff --git a/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafqbqopu-1k73oyy-3kuzc4t5wlz3uirbju04k08r8/9zdebidnu0euukb9hhvhgu740.o b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafqbqopu-1k73oyy-3kuzc4t5wlz3uirbju04k08r8/9zdebidnu0euukb9hhvhgu740.o new file mode 100644 index 0000000..bd2c358 Binary files /dev/null and b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafqbqopu-1k73oyy-3kuzc4t5wlz3uirbju04k08r8/9zdebidnu0euukb9hhvhgu740.o differ diff --git a/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafqbqopu-1k73oyy-3kuzc4t5wlz3uirbju04k08r8/a3otd30grew2uxx9vq9sr1rmw.o b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafqbqopu-1k73oyy-3kuzc4t5wlz3uirbju04k08r8/a3otd30grew2uxx9vq9sr1rmw.o new file mode 100644 index 0000000..82624d9 Binary files /dev/null and b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafqbqopu-1k73oyy-3kuzc4t5wlz3uirbju04k08r8/a3otd30grew2uxx9vq9sr1rmw.o differ diff --git a/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafqbqopu-1k73oyy-3kuzc4t5wlz3uirbju04k08r8/a83734t82vik8rmq9rqkzbyps.o b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafqbqopu-1k73oyy-3kuzc4t5wlz3uirbju04k08r8/a83734t82vik8rmq9rqkzbyps.o new file mode 100644 index 0000000..87f5609 Binary files /dev/null and b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafqbqopu-1k73oyy-3kuzc4t5wlz3uirbju04k08r8/a83734t82vik8rmq9rqkzbyps.o differ diff --git a/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafqbqopu-1k73oyy-3kuzc4t5wlz3uirbju04k08r8/ai0lbqntq767ox14xrp6rt5s7.o b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafqbqopu-1k73oyy-3kuzc4t5wlz3uirbju04k08r8/ai0lbqntq767ox14xrp6rt5s7.o new file mode 100644 index 0000000..b6c7224 Binary files /dev/null and b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafqbqopu-1k73oyy-3kuzc4t5wlz3uirbju04k08r8/ai0lbqntq767ox14xrp6rt5s7.o differ diff --git a/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafqbqopu-1k73oyy-3kuzc4t5wlz3uirbju04k08r8/cpqo28kjbjhilaqq7cfw2f01b.o b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafqbqopu-1k73oyy-3kuzc4t5wlz3uirbju04k08r8/cpqo28kjbjhilaqq7cfw2f01b.o new file mode 100644 index 0000000..4e4e8e8 Binary files /dev/null and b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafqbqopu-1k73oyy-3kuzc4t5wlz3uirbju04k08r8/cpqo28kjbjhilaqq7cfw2f01b.o differ diff --git a/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafqbqopu-1k73oyy-3kuzc4t5wlz3uirbju04k08r8/ct3b4sw93o8t3743hhz7u8prk.o b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafqbqopu-1k73oyy-3kuzc4t5wlz3uirbju04k08r8/ct3b4sw93o8t3743hhz7u8prk.o new file mode 100644 index 0000000..68664c6 Binary files /dev/null and b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafqbqopu-1k73oyy-3kuzc4t5wlz3uirbju04k08r8/ct3b4sw93o8t3743hhz7u8prk.o differ diff --git a/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafqbqopu-1k73oyy-3kuzc4t5wlz3uirbju04k08r8/d4pgw8slqppws85uw3uqlbyzv.o b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafqbqopu-1k73oyy-3kuzc4t5wlz3uirbju04k08r8/d4pgw8slqppws85uw3uqlbyzv.o new file mode 100644 index 0000000..4b9fbe2 Binary files /dev/null and b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafqbqopu-1k73oyy-3kuzc4t5wlz3uirbju04k08r8/d4pgw8slqppws85uw3uqlbyzv.o differ diff --git a/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafqbqopu-1k73oyy-3kuzc4t5wlz3uirbju04k08r8/dep-graph.bin b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafqbqopu-1k73oyy-3kuzc4t5wlz3uirbju04k08r8/dep-graph.bin new file mode 100644 index 0000000..270aac5 Binary files /dev/null and b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafqbqopu-1k73oyy-3kuzc4t5wlz3uirbju04k08r8/dep-graph.bin differ diff --git a/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafqbqopu-1k73oyy-3kuzc4t5wlz3uirbju04k08r8/dxrq1vxen82csnbzaluan3t2k.o b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafqbqopu-1k73oyy-3kuzc4t5wlz3uirbju04k08r8/dxrq1vxen82csnbzaluan3t2k.o new file mode 100644 index 0000000..bfa39dc Binary files /dev/null and b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafqbqopu-1k73oyy-3kuzc4t5wlz3uirbju04k08r8/dxrq1vxen82csnbzaluan3t2k.o differ diff --git a/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafqbqopu-1k73oyy-3kuzc4t5wlz3uirbju04k08r8/e23o7mrlhz9uk66j9e230ujwu.o b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafqbqopu-1k73oyy-3kuzc4t5wlz3uirbju04k08r8/e23o7mrlhz9uk66j9e230ujwu.o new file mode 100644 index 0000000..b2f09e5 Binary files /dev/null and b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafqbqopu-1k73oyy-3kuzc4t5wlz3uirbju04k08r8/e23o7mrlhz9uk66j9e230ujwu.o differ diff --git a/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafqbqopu-1k73oyy-3kuzc4t5wlz3uirbju04k08r8/eek8embpag1ow2p3h216e4c2s.o b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafqbqopu-1k73oyy-3kuzc4t5wlz3uirbju04k08r8/eek8embpag1ow2p3h216e4c2s.o new file mode 100644 index 0000000..fb02889 Binary files /dev/null and b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafqbqopu-1k73oyy-3kuzc4t5wlz3uirbju04k08r8/eek8embpag1ow2p3h216e4c2s.o differ diff --git a/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafqbqopu-1k73oyy-3kuzc4t5wlz3uirbju04k08r8/efgdzr0r1fm460xn130yhfjz4.o b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafqbqopu-1k73oyy-3kuzc4t5wlz3uirbju04k08r8/efgdzr0r1fm460xn130yhfjz4.o new file mode 100644 index 0000000..2b903f9 Binary files /dev/null and b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafqbqopu-1k73oyy-3kuzc4t5wlz3uirbju04k08r8/efgdzr0r1fm460xn130yhfjz4.o differ diff --git a/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafqbqopu-1k73oyy-3kuzc4t5wlz3uirbju04k08r8/eh57n7zh2topfc3go2uy0b17v.o b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafqbqopu-1k73oyy-3kuzc4t5wlz3uirbju04k08r8/eh57n7zh2topfc3go2uy0b17v.o new file mode 100644 index 0000000..4dcad38 Binary files /dev/null and b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafqbqopu-1k73oyy-3kuzc4t5wlz3uirbju04k08r8/eh57n7zh2topfc3go2uy0b17v.o differ diff --git a/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafqbqopu-1k73oyy-3kuzc4t5wlz3uirbju04k08r8/metadata.rmeta b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafqbqopu-1k73oyy-3kuzc4t5wlz3uirbju04k08r8/metadata.rmeta new file mode 100644 index 0000000..116dcdc Binary files /dev/null and b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafqbqopu-1k73oyy-3kuzc4t5wlz3uirbju04k08r8/metadata.rmeta differ diff --git a/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafqbqopu-1k73oyy-3kuzc4t5wlz3uirbju04k08r8/query-cache.bin b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafqbqopu-1k73oyy-3kuzc4t5wlz3uirbju04k08r8/query-cache.bin new file mode 100644 index 0000000..184cdb4 Binary files /dev/null and b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafqbqopu-1k73oyy-3kuzc4t5wlz3uirbju04k08r8/query-cache.bin differ diff --git a/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafqbqopu-1k73oyy-3kuzc4t5wlz3uirbju04k08r8/work-products.bin b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafqbqopu-1k73oyy-3kuzc4t5wlz3uirbju04k08r8/work-products.bin new file mode 100644 index 0000000..5aec63d Binary files /dev/null and b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafqbqopu-1k73oyy-3kuzc4t5wlz3uirbju04k08r8/work-products.bin differ diff --git a/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafqbqopu-1k73oyy.lock b/target/debug/incremental/openvx_image-31zcrtf8n69co/s-hhafqbqopu-1k73oyy.lock new file mode 100644 index 0000000..e69de29 diff --git a/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/04fffz81e319otzam26b826ee.o b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/04fffz81e319otzam26b826ee.o new file mode 100644 index 0000000..eb7d928 Binary files /dev/null and b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/04fffz81e319otzam26b826ee.o differ diff --git a/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/05uqrrq862odcsbb4ak9mdxta.o b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/05uqrrq862odcsbb4ak9mdxta.o new file mode 100644 index 0000000..59e3ac8 Binary files /dev/null and b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/05uqrrq862odcsbb4ak9mdxta.o differ diff --git a/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/07e5ew5uvqh5mee9p9u8cto65.o b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/07e5ew5uvqh5mee9p9u8cto65.o new file mode 100644 index 0000000..3c71d51 Binary files /dev/null and b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/07e5ew5uvqh5mee9p9u8cto65.o differ diff --git a/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/08dthvskl72tgmayvnqjbg78p.o b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/08dthvskl72tgmayvnqjbg78p.o new file mode 100644 index 0000000..c768320 Binary files /dev/null and b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/08dthvskl72tgmayvnqjbg78p.o differ diff --git a/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/0dm2sc5lfz8bon812i61ro5qc.o b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/0dm2sc5lfz8bon812i61ro5qc.o new file mode 100644 index 0000000..6ccb93c Binary files /dev/null and b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/0dm2sc5lfz8bon812i61ro5qc.o differ diff --git a/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/0ds0ek30h5wg2c89oonmrg87s.o b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/0ds0ek30h5wg2c89oonmrg87s.o new file mode 100644 index 0000000..1653822 Binary files /dev/null and b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/0ds0ek30h5wg2c89oonmrg87s.o differ diff --git a/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/0t8qfan7oc3tpv7x5yzqgx049.o b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/0t8qfan7oc3tpv7x5yzqgx049.o new file mode 100644 index 0000000..bf9aae0 Binary files /dev/null and b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/0t8qfan7oc3tpv7x5yzqgx049.o differ diff --git a/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/18w15jwjj4u6mc94d7eg38q41.o b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/18w15jwjj4u6mc94d7eg38q41.o new file mode 100644 index 0000000..16aaade Binary files /dev/null and b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/18w15jwjj4u6mc94d7eg38q41.o differ diff --git a/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/1abiyrsiwpgd67d6ttqxiq49p.o b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/1abiyrsiwpgd67d6ttqxiq49p.o new file mode 100644 index 0000000..c9e1e59 Binary files /dev/null and b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/1abiyrsiwpgd67d6ttqxiq49p.o differ diff --git a/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/1clvzsxjxk0wkrj7h3p4sy6ki.o b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/1clvzsxjxk0wkrj7h3p4sy6ki.o new file mode 100644 index 0000000..c1a7868 Binary files /dev/null and b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/1clvzsxjxk0wkrj7h3p4sy6ki.o differ diff --git a/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/1snlzlzu3a7wzur2a3tsmtkbw.o b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/1snlzlzu3a7wzur2a3tsmtkbw.o new file mode 100644 index 0000000..7361978 Binary files /dev/null and b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/1snlzlzu3a7wzur2a3tsmtkbw.o differ diff --git a/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/1zx9oslvdotbprfuork08s322.o b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/1zx9oslvdotbprfuork08s322.o new file mode 100644 index 0000000..b039cef Binary files /dev/null and b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/1zx9oslvdotbprfuork08s322.o differ diff --git a/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/2ehkwhfw1a67wzy7v264ea938.o b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/2ehkwhfw1a67wzy7v264ea938.o new file mode 100644 index 0000000..4b4b438 Binary files /dev/null and b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/2ehkwhfw1a67wzy7v264ea938.o differ diff --git a/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/2k8x6b5ehrp82ec904wf83fpj.o b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/2k8x6b5ehrp82ec904wf83fpj.o new file mode 100644 index 0000000..fa8112b Binary files /dev/null and b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/2k8x6b5ehrp82ec904wf83fpj.o differ diff --git a/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/2syc6qhu3uc740gxmkzl5ih74.o b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/2syc6qhu3uc740gxmkzl5ih74.o new file mode 100644 index 0000000..ebb682a Binary files /dev/null and b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/2syc6qhu3uc740gxmkzl5ih74.o differ diff --git a/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/302gootkl9yc4ihummot8ca1s.o b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/302gootkl9yc4ihummot8ca1s.o new file mode 100644 index 0000000..705a561 Binary files /dev/null and b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/302gootkl9yc4ihummot8ca1s.o differ diff --git a/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/3821ijjf2o5k8yi8x3kw0ighn.o b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/3821ijjf2o5k8yi8x3kw0ighn.o new file mode 100644 index 0000000..636a838 Binary files /dev/null and b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/3821ijjf2o5k8yi8x3kw0ighn.o differ diff --git a/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/3a5pfcwg8s3tdi13ueql8a9n5.o b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/3a5pfcwg8s3tdi13ueql8a9n5.o new file mode 100644 index 0000000..25e0773 Binary files /dev/null and b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/3a5pfcwg8s3tdi13ueql8a9n5.o differ diff --git a/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/3aejckxzobvoq5h95368aft80.o b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/3aejckxzobvoq5h95368aft80.o new file mode 100644 index 0000000..e2a09bd Binary files /dev/null and b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/3aejckxzobvoq5h95368aft80.o differ diff --git a/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/3hzbyly89ny84tkvawigb3zah.o b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/3hzbyly89ny84tkvawigb3zah.o new file mode 100644 index 0000000..cd2a6b7 Binary files /dev/null and b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/3hzbyly89ny84tkvawigb3zah.o differ diff --git a/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/3t1yirt3j0m3gd0tqjvnl5c8n.o b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/3t1yirt3j0m3gd0tqjvnl5c8n.o new file mode 100644 index 0000000..3912a51 Binary files /dev/null and b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/3t1yirt3j0m3gd0tqjvnl5c8n.o differ diff --git a/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/3wkxtlbpv2k02z3vwwiajla0c.o b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/3wkxtlbpv2k02z3vwwiajla0c.o new file mode 100644 index 0000000..2ebbdf4 Binary files /dev/null and b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/3wkxtlbpv2k02z3vwwiajla0c.o differ diff --git a/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/3zmsf8pm7cf8ff9vijfzk8sl5.o b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/3zmsf8pm7cf8ff9vijfzk8sl5.o new file mode 100644 index 0000000..ad79462 Binary files /dev/null and b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/3zmsf8pm7cf8ff9vijfzk8sl5.o differ diff --git a/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/41u7210e4wq58r9ixlcn9sc1t.o b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/41u7210e4wq58r9ixlcn9sc1t.o new file mode 100644 index 0000000..7357f25 Binary files /dev/null and b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/41u7210e4wq58r9ixlcn9sc1t.o differ diff --git a/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/428rzlw8dhw56jz5dhtpdj6a6.o b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/428rzlw8dhw56jz5dhtpdj6a6.o new file mode 100644 index 0000000..e7830b5 Binary files /dev/null and b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/428rzlw8dhw56jz5dhtpdj6a6.o differ diff --git a/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/4b7o8oscxizn87gx1158od7et.o b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/4b7o8oscxizn87gx1158od7et.o new file mode 100644 index 0000000..f26e81f Binary files /dev/null and b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/4b7o8oscxizn87gx1158od7et.o differ diff --git a/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/4tola54tvjjcfx1ztoop9b4pj.o b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/4tola54tvjjcfx1ztoop9b4pj.o new file mode 100644 index 0000000..0451cc9 Binary files /dev/null and b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/4tola54tvjjcfx1ztoop9b4pj.o differ diff --git a/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/4uo7pe4f5eaiqps0x1tc2s7pu.o b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/4uo7pe4f5eaiqps0x1tc2s7pu.o new file mode 100644 index 0000000..40df585 Binary files /dev/null and b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/4uo7pe4f5eaiqps0x1tc2s7pu.o differ diff --git a/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/4yw0lnnhwrxofru7mbuc89lv2.o b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/4yw0lnnhwrxofru7mbuc89lv2.o new file mode 100644 index 0000000..12045e7 Binary files /dev/null and b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/4yw0lnnhwrxofru7mbuc89lv2.o differ diff --git a/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/5ht13gusopjlmcqixbrribzff.o b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/5ht13gusopjlmcqixbrribzff.o new file mode 100644 index 0000000..6271321 Binary files /dev/null and b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/5ht13gusopjlmcqixbrribzff.o differ diff --git a/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/5mn7f8ax7pe96z9tin2jz0wzd.o b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/5mn7f8ax7pe96z9tin2jz0wzd.o new file mode 100644 index 0000000..ed04671 Binary files /dev/null and b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/5mn7f8ax7pe96z9tin2jz0wzd.o differ diff --git a/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/61dhtkintttg6236zt082wrgm.o b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/61dhtkintttg6236zt082wrgm.o new file mode 100644 index 0000000..c814d02 Binary files /dev/null and b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/61dhtkintttg6236zt082wrgm.o differ diff --git a/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/61vxd013596l5augtk4wigetf.o b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/61vxd013596l5augtk4wigetf.o new file mode 100644 index 0000000..b7e2e7f Binary files /dev/null and b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/61vxd013596l5augtk4wigetf.o differ diff --git a/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/63dvkanudpz2yao0iomykrs24.o b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/63dvkanudpz2yao0iomykrs24.o new file mode 100644 index 0000000..83d82b0 Binary files /dev/null and b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/63dvkanudpz2yao0iomykrs24.o differ diff --git a/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/68rg37h1zcg4op0i55unh4zyq.o b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/68rg37h1zcg4op0i55unh4zyq.o new file mode 100644 index 0000000..f93fcb4 Binary files /dev/null and b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/68rg37h1zcg4op0i55unh4zyq.o differ diff --git a/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/6b984hnevzcixlkvv3dvdezrb.o b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/6b984hnevzcixlkvv3dvdezrb.o new file mode 100644 index 0000000..17aae3a Binary files /dev/null and b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/6b984hnevzcixlkvv3dvdezrb.o differ diff --git a/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/6lkndwbwlyu5w7x2q4prt527c.o b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/6lkndwbwlyu5w7x2q4prt527c.o new file mode 100644 index 0000000..27dac6d Binary files /dev/null and b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/6lkndwbwlyu5w7x2q4prt527c.o differ diff --git a/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/6rdvi44tt40qqprclfzb09jkh.o b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/6rdvi44tt40qqprclfzb09jkh.o new file mode 100644 index 0000000..1535f48 Binary files /dev/null and b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/6rdvi44tt40qqprclfzb09jkh.o differ diff --git a/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/75pxfncoqhr8cenfa0xr14en3.o b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/75pxfncoqhr8cenfa0xr14en3.o new file mode 100644 index 0000000..4a12e6e Binary files /dev/null and b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/75pxfncoqhr8cenfa0xr14en3.o differ diff --git a/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/7cjo2kg2gw0b13lwzl0t281qo.o b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/7cjo2kg2gw0b13lwzl0t281qo.o new file mode 100644 index 0000000..9b21f97 Binary files /dev/null and b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/7cjo2kg2gw0b13lwzl0t281qo.o differ diff --git a/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/7cm3tanz5ws84acl423hgw922.o b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/7cm3tanz5ws84acl423hgw922.o new file mode 100644 index 0000000..bd8e676 Binary files /dev/null and b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/7cm3tanz5ws84acl423hgw922.o differ diff --git a/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/7gous4z3mohplnw8nj0iyvurx.o b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/7gous4z3mohplnw8nj0iyvurx.o new file mode 100644 index 0000000..4f66a59 Binary files /dev/null and b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/7gous4z3mohplnw8nj0iyvurx.o differ diff --git a/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/7pcrel1l7pujolaiqacst089g.o b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/7pcrel1l7pujolaiqacst089g.o new file mode 100644 index 0000000..858c2a9 Binary files /dev/null and b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/7pcrel1l7pujolaiqacst089g.o differ diff --git a/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/7zf1x0yjoj4bkub8p7541ggqq.o b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/7zf1x0yjoj4bkub8p7541ggqq.o new file mode 100644 index 0000000..a598d68 Binary files /dev/null and b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/7zf1x0yjoj4bkub8p7541ggqq.o differ diff --git a/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/7zg25p56kl9tbn6ungwmcwtf8.o b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/7zg25p56kl9tbn6ungwmcwtf8.o new file mode 100644 index 0000000..7a1cf6e Binary files /dev/null and b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/7zg25p56kl9tbn6ungwmcwtf8.o differ diff --git a/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/831itmyythdu44b4g63esypwi.o b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/831itmyythdu44b4g63esypwi.o new file mode 100644 index 0000000..cbe4e13 Binary files /dev/null and b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/831itmyythdu44b4g63esypwi.o differ diff --git a/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/8wdt4xkc2wbp1i3lu2vvj3t09.o b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/8wdt4xkc2wbp1i3lu2vvj3t09.o new file mode 100644 index 0000000..34b273a Binary files /dev/null and b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/8wdt4xkc2wbp1i3lu2vvj3t09.o differ diff --git a/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/962ixdy3bzjo35c3rdwqe9s98.o b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/962ixdy3bzjo35c3rdwqe9s98.o new file mode 100644 index 0000000..8abcacf Binary files /dev/null and b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/962ixdy3bzjo35c3rdwqe9s98.o differ diff --git a/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/98jj3patufwwgiflxebla2x6p.o b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/98jj3patufwwgiflxebla2x6p.o new file mode 100644 index 0000000..ab5ab3a Binary files /dev/null and b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/98jj3patufwwgiflxebla2x6p.o differ diff --git a/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/9meeawfgt07bw05cth5d25fxl.o b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/9meeawfgt07bw05cth5d25fxl.o new file mode 100644 index 0000000..43e1ee3 Binary files /dev/null and b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/9meeawfgt07bw05cth5d25fxl.o differ diff --git a/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/9tp71ii9r3zhqvudm09a0vbus.o b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/9tp71ii9r3zhqvudm09a0vbus.o new file mode 100644 index 0000000..3e66b48 Binary files /dev/null and b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/9tp71ii9r3zhqvudm09a0vbus.o differ diff --git a/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/agh8wrz0lr8cxpxjqqeau36pi.o b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/agh8wrz0lr8cxpxjqqeau36pi.o new file mode 100644 index 0000000..16b66df Binary files /dev/null and b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/agh8wrz0lr8cxpxjqqeau36pi.o differ diff --git a/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/amn1rz0x998fzqegsw8q2res5.o b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/amn1rz0x998fzqegsw8q2res5.o new file mode 100644 index 0000000..6199d01 Binary files /dev/null and b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/amn1rz0x998fzqegsw8q2res5.o differ diff --git a/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/an9c34uw2r6e5bb0zaos16y5q.o b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/an9c34uw2r6e5bb0zaos16y5q.o new file mode 100644 index 0000000..add6481 Binary files /dev/null and b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/an9c34uw2r6e5bb0zaos16y5q.o differ diff --git a/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/avohzpnj4vyxyagsaiv2f5jmu.o b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/avohzpnj4vyxyagsaiv2f5jmu.o new file mode 100644 index 0000000..1bf3e98 Binary files /dev/null and b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/avohzpnj4vyxyagsaiv2f5jmu.o differ diff --git a/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/b093loe92603ggbopdgj38loe.o b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/b093loe92603ggbopdgj38loe.o new file mode 100644 index 0000000..53d3f4d Binary files /dev/null and b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/b093loe92603ggbopdgj38loe.o differ diff --git a/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/b0p6y6w5tc9e7xcdp5kd2mfk4.o b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/b0p6y6w5tc9e7xcdp5kd2mfk4.o new file mode 100644 index 0000000..058b62b Binary files /dev/null and b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/b0p6y6w5tc9e7xcdp5kd2mfk4.o differ diff --git a/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/b4dy2kg7n67jbfdfwtjrhlpus.o b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/b4dy2kg7n67jbfdfwtjrhlpus.o new file mode 100644 index 0000000..316c384 Binary files /dev/null and b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/b4dy2kg7n67jbfdfwtjrhlpus.o differ diff --git a/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/bacafcoocvq3bmb4m49dhq6m7.o b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/bacafcoocvq3bmb4m49dhq6m7.o new file mode 100644 index 0000000..755db2c Binary files /dev/null and b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/bacafcoocvq3bmb4m49dhq6m7.o differ diff --git a/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/bk8yt0i3pf74qjrd3ik9qojlr.o b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/bk8yt0i3pf74qjrd3ik9qojlr.o new file mode 100644 index 0000000..9d11a5f Binary files /dev/null and b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/bk8yt0i3pf74qjrd3ik9qojlr.o differ diff --git a/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/bx2fysm0b6gk97bfajft8acfe.o b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/bx2fysm0b6gk97bfajft8acfe.o new file mode 100644 index 0000000..dccd510 Binary files /dev/null and b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/bx2fysm0b6gk97bfajft8acfe.o differ diff --git a/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/byp38950mjhp5ic9o8ql9umuf.o b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/byp38950mjhp5ic9o8ql9umuf.o new file mode 100644 index 0000000..d647564 Binary files /dev/null and b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/byp38950mjhp5ic9o8ql9umuf.o differ diff --git a/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/c4kkohfybbst7k6ptgvn4cqjn.o b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/c4kkohfybbst7k6ptgvn4cqjn.o new file mode 100644 index 0000000..6436bb5 Binary files /dev/null and b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/c4kkohfybbst7k6ptgvn4cqjn.o differ diff --git a/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/cj5firnnq78xrcy2pslz6h6nz.o b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/cj5firnnq78xrcy2pslz6h6nz.o new file mode 100644 index 0000000..0e5f160 Binary files /dev/null and b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/cj5firnnq78xrcy2pslz6h6nz.o differ diff --git a/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/ckgi3yyq8740gjxjhedkv04yt.o b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/ckgi3yyq8740gjxjhedkv04yt.o new file mode 100644 index 0000000..aa2d898 Binary files /dev/null and b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/ckgi3yyq8740gjxjhedkv04yt.o differ diff --git a/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/cqvrxyhoy98st3bjohmkj4xu1.o b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/cqvrxyhoy98st3bjohmkj4xu1.o new file mode 100644 index 0000000..ec070de Binary files /dev/null and b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/cqvrxyhoy98st3bjohmkj4xu1.o differ diff --git a/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/cy7kw6a9s92jb8wsl9gewmig9.o b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/cy7kw6a9s92jb8wsl9gewmig9.o new file mode 100644 index 0000000..7035391 Binary files /dev/null and b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/cy7kw6a9s92jb8wsl9gewmig9.o differ diff --git a/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/da4wvfl2chddz6ob47i14vknz.o b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/da4wvfl2chddz6ob47i14vknz.o new file mode 100644 index 0000000..86e063b Binary files /dev/null and b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/da4wvfl2chddz6ob47i14vknz.o differ diff --git a/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/dep-graph.bin b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/dep-graph.bin new file mode 100644 index 0000000..e89d52f Binary files /dev/null and b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/dep-graph.bin differ diff --git a/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/dfkqspw7rgtxk6xvupybzsajs.o b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/dfkqspw7rgtxk6xvupybzsajs.o new file mode 100644 index 0000000..96feb99 Binary files /dev/null and b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/dfkqspw7rgtxk6xvupybzsajs.o differ diff --git a/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/dhkjw9q005as1i796fqakk8lq.o b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/dhkjw9q005as1i796fqakk8lq.o new file mode 100644 index 0000000..29df573 Binary files /dev/null and b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/dhkjw9q005as1i796fqakk8lq.o differ diff --git a/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/duehfcz84pd38jhs5z7bg09vw.o b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/duehfcz84pd38jhs5z7bg09vw.o new file mode 100644 index 0000000..d11b5ac Binary files /dev/null and b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/duehfcz84pd38jhs5z7bg09vw.o differ diff --git a/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/e7cu3jafsighhbsehxsw5l6wd.o b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/e7cu3jafsighhbsehxsw5l6wd.o new file mode 100644 index 0000000..832b427 Binary files /dev/null and b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/e7cu3jafsighhbsehxsw5l6wd.o differ diff --git a/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/eqpuy9te32eibvx5d8qnc43tt.o b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/eqpuy9te32eibvx5d8qnc43tt.o new file mode 100644 index 0000000..88adbdd Binary files /dev/null and b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/eqpuy9te32eibvx5d8qnc43tt.o differ diff --git a/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/extiiqdhvjsl2j1cujfce2xho.o b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/extiiqdhvjsl2j1cujfce2xho.o new file mode 100644 index 0000000..0033195 Binary files /dev/null and b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/extiiqdhvjsl2j1cujfce2xho.o differ diff --git a/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/f35e2n408o2rgzcn7v1gnecj5.o b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/f35e2n408o2rgzcn7v1gnecj5.o new file mode 100644 index 0000000..5331193 Binary files /dev/null and b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/f35e2n408o2rgzcn7v1gnecj5.o differ diff --git a/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/metadata.rmeta b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/metadata.rmeta new file mode 100644 index 0000000..eac938d Binary files /dev/null and b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/metadata.rmeta differ diff --git a/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/query-cache.bin b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/query-cache.bin new file mode 100644 index 0000000..c1d2380 Binary files /dev/null and b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/query-cache.bin differ diff --git a/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/work-products.bin b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/work-products.bin new file mode 100644 index 0000000..87c75fb Binary files /dev/null and b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk-aqieli1bvo5p70qxb32xyo2hw/work-products.bin differ diff --git a/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk.lock b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafprv917-1julauk.lock new file mode 100644 index 0000000..e69de29 diff --git a/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/04fffz81e319otzam26b826ee.o b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/04fffz81e319otzam26b826ee.o new file mode 100644 index 0000000..eb7d928 Binary files /dev/null and b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/04fffz81e319otzam26b826ee.o differ diff --git a/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/05uqrrq862odcsbb4ak9mdxta.o b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/05uqrrq862odcsbb4ak9mdxta.o new file mode 100644 index 0000000..59e3ac8 Binary files /dev/null and b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/05uqrrq862odcsbb4ak9mdxta.o differ diff --git a/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/07e5ew5uvqh5mee9p9u8cto65.o b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/07e5ew5uvqh5mee9p9u8cto65.o new file mode 100644 index 0000000..3c71d51 Binary files /dev/null and b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/07e5ew5uvqh5mee9p9u8cto65.o differ diff --git a/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/08dthvskl72tgmayvnqjbg78p.o b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/08dthvskl72tgmayvnqjbg78p.o new file mode 100644 index 0000000..c768320 Binary files /dev/null and b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/08dthvskl72tgmayvnqjbg78p.o differ diff --git a/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/0dm2sc5lfz8bon812i61ro5qc.o b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/0dm2sc5lfz8bon812i61ro5qc.o new file mode 100644 index 0000000..6ccb93c Binary files /dev/null and b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/0dm2sc5lfz8bon812i61ro5qc.o differ diff --git a/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/0ds0ek30h5wg2c89oonmrg87s.o b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/0ds0ek30h5wg2c89oonmrg87s.o new file mode 100644 index 0000000..1653822 Binary files /dev/null and b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/0ds0ek30h5wg2c89oonmrg87s.o differ diff --git a/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/0t8qfan7oc3tpv7x5yzqgx049.o b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/0t8qfan7oc3tpv7x5yzqgx049.o new file mode 100644 index 0000000..bf9aae0 Binary files /dev/null and b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/0t8qfan7oc3tpv7x5yzqgx049.o differ diff --git a/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/18w15jwjj4u6mc94d7eg38q41.o b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/18w15jwjj4u6mc94d7eg38q41.o new file mode 100644 index 0000000..16aaade Binary files /dev/null and b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/18w15jwjj4u6mc94d7eg38q41.o differ diff --git a/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/1abiyrsiwpgd67d6ttqxiq49p.o b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/1abiyrsiwpgd67d6ttqxiq49p.o new file mode 100644 index 0000000..c9e1e59 Binary files /dev/null and b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/1abiyrsiwpgd67d6ttqxiq49p.o differ diff --git a/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/1clvzsxjxk0wkrj7h3p4sy6ki.o b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/1clvzsxjxk0wkrj7h3p4sy6ki.o new file mode 100644 index 0000000..c1a7868 Binary files /dev/null and b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/1clvzsxjxk0wkrj7h3p4sy6ki.o differ diff --git a/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/1snlzlzu3a7wzur2a3tsmtkbw.o b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/1snlzlzu3a7wzur2a3tsmtkbw.o new file mode 100644 index 0000000..7361978 Binary files /dev/null and b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/1snlzlzu3a7wzur2a3tsmtkbw.o differ diff --git a/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/1zx9oslvdotbprfuork08s322.o b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/1zx9oslvdotbprfuork08s322.o new file mode 100644 index 0000000..b039cef Binary files /dev/null and b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/1zx9oslvdotbprfuork08s322.o differ diff --git a/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/2ehkwhfw1a67wzy7v264ea938.o b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/2ehkwhfw1a67wzy7v264ea938.o new file mode 100644 index 0000000..4b4b438 Binary files /dev/null and b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/2ehkwhfw1a67wzy7v264ea938.o differ diff --git a/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/2k8x6b5ehrp82ec904wf83fpj.o b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/2k8x6b5ehrp82ec904wf83fpj.o new file mode 100644 index 0000000..fa8112b Binary files /dev/null and b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/2k8x6b5ehrp82ec904wf83fpj.o differ diff --git a/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/2syc6qhu3uc740gxmkzl5ih74.o b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/2syc6qhu3uc740gxmkzl5ih74.o new file mode 100644 index 0000000..ebb682a Binary files /dev/null and b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/2syc6qhu3uc740gxmkzl5ih74.o differ diff --git a/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/302gootkl9yc4ihummot8ca1s.o b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/302gootkl9yc4ihummot8ca1s.o new file mode 100644 index 0000000..705a561 Binary files /dev/null and b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/302gootkl9yc4ihummot8ca1s.o differ diff --git a/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/3821ijjf2o5k8yi8x3kw0ighn.o b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/3821ijjf2o5k8yi8x3kw0ighn.o new file mode 100644 index 0000000..636a838 Binary files /dev/null and b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/3821ijjf2o5k8yi8x3kw0ighn.o differ diff --git a/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/3a5pfcwg8s3tdi13ueql8a9n5.o b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/3a5pfcwg8s3tdi13ueql8a9n5.o new file mode 100644 index 0000000..25e0773 Binary files /dev/null and b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/3a5pfcwg8s3tdi13ueql8a9n5.o differ diff --git a/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/3aejckxzobvoq5h95368aft80.o b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/3aejckxzobvoq5h95368aft80.o new file mode 100644 index 0000000..e2a09bd Binary files /dev/null and b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/3aejckxzobvoq5h95368aft80.o differ diff --git a/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/3hzbyly89ny84tkvawigb3zah.o b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/3hzbyly89ny84tkvawigb3zah.o new file mode 100644 index 0000000..cd2a6b7 Binary files /dev/null and b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/3hzbyly89ny84tkvawigb3zah.o differ diff --git a/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/3t1yirt3j0m3gd0tqjvnl5c8n.o b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/3t1yirt3j0m3gd0tqjvnl5c8n.o new file mode 100644 index 0000000..3912a51 Binary files /dev/null and b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/3t1yirt3j0m3gd0tqjvnl5c8n.o differ diff --git a/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/3wkxtlbpv2k02z3vwwiajla0c.o b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/3wkxtlbpv2k02z3vwwiajla0c.o new file mode 100644 index 0000000..2ebbdf4 Binary files /dev/null and b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/3wkxtlbpv2k02z3vwwiajla0c.o differ diff --git a/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/3zmsf8pm7cf8ff9vijfzk8sl5.o b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/3zmsf8pm7cf8ff9vijfzk8sl5.o new file mode 100644 index 0000000..ad79462 Binary files /dev/null and b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/3zmsf8pm7cf8ff9vijfzk8sl5.o differ diff --git a/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/41u7210e4wq58r9ixlcn9sc1t.o b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/41u7210e4wq58r9ixlcn9sc1t.o new file mode 100644 index 0000000..7357f25 Binary files /dev/null and b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/41u7210e4wq58r9ixlcn9sc1t.o differ diff --git a/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/428rzlw8dhw56jz5dhtpdj6a6.o b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/428rzlw8dhw56jz5dhtpdj6a6.o new file mode 100644 index 0000000..e7830b5 Binary files /dev/null and b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/428rzlw8dhw56jz5dhtpdj6a6.o differ diff --git a/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/4b7o8oscxizn87gx1158od7et.o b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/4b7o8oscxizn87gx1158od7et.o new file mode 100644 index 0000000..f26e81f Binary files /dev/null and b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/4b7o8oscxizn87gx1158od7et.o differ diff --git a/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/4tola54tvjjcfx1ztoop9b4pj.o b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/4tola54tvjjcfx1ztoop9b4pj.o new file mode 100644 index 0000000..0451cc9 Binary files /dev/null and b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/4tola54tvjjcfx1ztoop9b4pj.o differ diff --git a/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/4uo7pe4f5eaiqps0x1tc2s7pu.o b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/4uo7pe4f5eaiqps0x1tc2s7pu.o new file mode 100644 index 0000000..40df585 Binary files /dev/null and b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/4uo7pe4f5eaiqps0x1tc2s7pu.o differ diff --git a/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/4yw0lnnhwrxofru7mbuc89lv2.o b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/4yw0lnnhwrxofru7mbuc89lv2.o new file mode 100644 index 0000000..12045e7 Binary files /dev/null and b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/4yw0lnnhwrxofru7mbuc89lv2.o differ diff --git a/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/5ht13gusopjlmcqixbrribzff.o b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/5ht13gusopjlmcqixbrribzff.o new file mode 100644 index 0000000..6271321 Binary files /dev/null and b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/5ht13gusopjlmcqixbrribzff.o differ diff --git a/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/5mn7f8ax7pe96z9tin2jz0wzd.o b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/5mn7f8ax7pe96z9tin2jz0wzd.o new file mode 100644 index 0000000..ed04671 Binary files /dev/null and b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/5mn7f8ax7pe96z9tin2jz0wzd.o differ diff --git a/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/61dhtkintttg6236zt082wrgm.o b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/61dhtkintttg6236zt082wrgm.o new file mode 100644 index 0000000..c814d02 Binary files /dev/null and b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/61dhtkintttg6236zt082wrgm.o differ diff --git a/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/61vxd013596l5augtk4wigetf.o b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/61vxd013596l5augtk4wigetf.o new file mode 100644 index 0000000..b7e2e7f Binary files /dev/null and b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/61vxd013596l5augtk4wigetf.o differ diff --git a/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/63dvkanudpz2yao0iomykrs24.o b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/63dvkanudpz2yao0iomykrs24.o new file mode 100644 index 0000000..83d82b0 Binary files /dev/null and b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/63dvkanudpz2yao0iomykrs24.o differ diff --git a/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/68rg37h1zcg4op0i55unh4zyq.o b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/68rg37h1zcg4op0i55unh4zyq.o new file mode 100644 index 0000000..f93fcb4 Binary files /dev/null and b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/68rg37h1zcg4op0i55unh4zyq.o differ diff --git a/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/6b984hnevzcixlkvv3dvdezrb.o b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/6b984hnevzcixlkvv3dvdezrb.o new file mode 100644 index 0000000..17aae3a Binary files /dev/null and b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/6b984hnevzcixlkvv3dvdezrb.o differ diff --git a/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/6lkndwbwlyu5w7x2q4prt527c.o b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/6lkndwbwlyu5w7x2q4prt527c.o new file mode 100644 index 0000000..27dac6d Binary files /dev/null and b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/6lkndwbwlyu5w7x2q4prt527c.o differ diff --git a/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/6rdvi44tt40qqprclfzb09jkh.o b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/6rdvi44tt40qqprclfzb09jkh.o new file mode 100644 index 0000000..1535f48 Binary files /dev/null and b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/6rdvi44tt40qqprclfzb09jkh.o differ diff --git a/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/75pxfncoqhr8cenfa0xr14en3.o b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/75pxfncoqhr8cenfa0xr14en3.o new file mode 100644 index 0000000..4a12e6e Binary files /dev/null and b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/75pxfncoqhr8cenfa0xr14en3.o differ diff --git a/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/7cjo2kg2gw0b13lwzl0t281qo.o b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/7cjo2kg2gw0b13lwzl0t281qo.o new file mode 100644 index 0000000..9b21f97 Binary files /dev/null and b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/7cjo2kg2gw0b13lwzl0t281qo.o differ diff --git a/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/7cm3tanz5ws84acl423hgw922.o b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/7cm3tanz5ws84acl423hgw922.o new file mode 100644 index 0000000..bd8e676 Binary files /dev/null and b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/7cm3tanz5ws84acl423hgw922.o differ diff --git a/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/7gous4z3mohplnw8nj0iyvurx.o b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/7gous4z3mohplnw8nj0iyvurx.o new file mode 100644 index 0000000..4f66a59 Binary files /dev/null and b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/7gous4z3mohplnw8nj0iyvurx.o differ diff --git a/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/7pcrel1l7pujolaiqacst089g.o b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/7pcrel1l7pujolaiqacst089g.o new file mode 100644 index 0000000..858c2a9 Binary files /dev/null and b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/7pcrel1l7pujolaiqacst089g.o differ diff --git a/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/7zf1x0yjoj4bkub8p7541ggqq.o b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/7zf1x0yjoj4bkub8p7541ggqq.o new file mode 100644 index 0000000..a598d68 Binary files /dev/null and b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/7zf1x0yjoj4bkub8p7541ggqq.o differ diff --git a/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/7zg25p56kl9tbn6ungwmcwtf8.o b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/7zg25p56kl9tbn6ungwmcwtf8.o new file mode 100644 index 0000000..7a1cf6e Binary files /dev/null and b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/7zg25p56kl9tbn6ungwmcwtf8.o differ diff --git a/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/831itmyythdu44b4g63esypwi.o b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/831itmyythdu44b4g63esypwi.o new file mode 100644 index 0000000..cbe4e13 Binary files /dev/null and b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/831itmyythdu44b4g63esypwi.o differ diff --git a/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/8wdt4xkc2wbp1i3lu2vvj3t09.o b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/8wdt4xkc2wbp1i3lu2vvj3t09.o new file mode 100644 index 0000000..34b273a Binary files /dev/null and b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/8wdt4xkc2wbp1i3lu2vvj3t09.o differ diff --git a/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/962ixdy3bzjo35c3rdwqe9s98.o b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/962ixdy3bzjo35c3rdwqe9s98.o new file mode 100644 index 0000000..8abcacf Binary files /dev/null and b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/962ixdy3bzjo35c3rdwqe9s98.o differ diff --git a/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/98jj3patufwwgiflxebla2x6p.o b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/98jj3patufwwgiflxebla2x6p.o new file mode 100644 index 0000000..ab5ab3a Binary files /dev/null and b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/98jj3patufwwgiflxebla2x6p.o differ diff --git a/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/9meeawfgt07bw05cth5d25fxl.o b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/9meeawfgt07bw05cth5d25fxl.o new file mode 100644 index 0000000..43e1ee3 Binary files /dev/null and b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/9meeawfgt07bw05cth5d25fxl.o differ diff --git a/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/9tp71ii9r3zhqvudm09a0vbus.o b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/9tp71ii9r3zhqvudm09a0vbus.o new file mode 100644 index 0000000..3e66b48 Binary files /dev/null and b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/9tp71ii9r3zhqvudm09a0vbus.o differ diff --git a/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/agh8wrz0lr8cxpxjqqeau36pi.o b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/agh8wrz0lr8cxpxjqqeau36pi.o new file mode 100644 index 0000000..16b66df Binary files /dev/null and b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/agh8wrz0lr8cxpxjqqeau36pi.o differ diff --git a/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/amn1rz0x998fzqegsw8q2res5.o b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/amn1rz0x998fzqegsw8q2res5.o new file mode 100644 index 0000000..6199d01 Binary files /dev/null and b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/amn1rz0x998fzqegsw8q2res5.o differ diff --git a/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/an9c34uw2r6e5bb0zaos16y5q.o b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/an9c34uw2r6e5bb0zaos16y5q.o new file mode 100644 index 0000000..add6481 Binary files /dev/null and b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/an9c34uw2r6e5bb0zaos16y5q.o differ diff --git a/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/avohzpnj4vyxyagsaiv2f5jmu.o b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/avohzpnj4vyxyagsaiv2f5jmu.o new file mode 100644 index 0000000..1bf3e98 Binary files /dev/null and b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/avohzpnj4vyxyagsaiv2f5jmu.o differ diff --git a/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/b093loe92603ggbopdgj38loe.o b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/b093loe92603ggbopdgj38loe.o new file mode 100644 index 0000000..53d3f4d Binary files /dev/null and b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/b093loe92603ggbopdgj38loe.o differ diff --git a/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/b0p6y6w5tc9e7xcdp5kd2mfk4.o b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/b0p6y6w5tc9e7xcdp5kd2mfk4.o new file mode 100644 index 0000000..058b62b Binary files /dev/null and b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/b0p6y6w5tc9e7xcdp5kd2mfk4.o differ diff --git a/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/b4dy2kg7n67jbfdfwtjrhlpus.o b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/b4dy2kg7n67jbfdfwtjrhlpus.o new file mode 100644 index 0000000..316c384 Binary files /dev/null and b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/b4dy2kg7n67jbfdfwtjrhlpus.o differ diff --git a/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/bacafcoocvq3bmb4m49dhq6m7.o b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/bacafcoocvq3bmb4m49dhq6m7.o new file mode 100644 index 0000000..755db2c Binary files /dev/null and b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/bacafcoocvq3bmb4m49dhq6m7.o differ diff --git a/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/bk8yt0i3pf74qjrd3ik9qojlr.o b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/bk8yt0i3pf74qjrd3ik9qojlr.o new file mode 100644 index 0000000..9d11a5f Binary files /dev/null and b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/bk8yt0i3pf74qjrd3ik9qojlr.o differ diff --git a/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/bx2fysm0b6gk97bfajft8acfe.o b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/bx2fysm0b6gk97bfajft8acfe.o new file mode 100644 index 0000000..dccd510 Binary files /dev/null and b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/bx2fysm0b6gk97bfajft8acfe.o differ diff --git a/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/byp38950mjhp5ic9o8ql9umuf.o b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/byp38950mjhp5ic9o8ql9umuf.o new file mode 100644 index 0000000..d647564 Binary files /dev/null and b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/byp38950mjhp5ic9o8ql9umuf.o differ diff --git a/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/c4kkohfybbst7k6ptgvn4cqjn.o b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/c4kkohfybbst7k6ptgvn4cqjn.o new file mode 100644 index 0000000..6436bb5 Binary files /dev/null and b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/c4kkohfybbst7k6ptgvn4cqjn.o differ diff --git a/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/cj5firnnq78xrcy2pslz6h6nz.o b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/cj5firnnq78xrcy2pslz6h6nz.o new file mode 100644 index 0000000..0e5f160 Binary files /dev/null and b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/cj5firnnq78xrcy2pslz6h6nz.o differ diff --git a/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/ckgi3yyq8740gjxjhedkv04yt.o b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/ckgi3yyq8740gjxjhedkv04yt.o new file mode 100644 index 0000000..aa2d898 Binary files /dev/null and b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/ckgi3yyq8740gjxjhedkv04yt.o differ diff --git a/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/cqvrxyhoy98st3bjohmkj4xu1.o b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/cqvrxyhoy98st3bjohmkj4xu1.o new file mode 100644 index 0000000..ec070de Binary files /dev/null and b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/cqvrxyhoy98st3bjohmkj4xu1.o differ diff --git a/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/cy7kw6a9s92jb8wsl9gewmig9.o b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/cy7kw6a9s92jb8wsl9gewmig9.o new file mode 100644 index 0000000..7035391 Binary files /dev/null and b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/cy7kw6a9s92jb8wsl9gewmig9.o differ diff --git a/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/da4wvfl2chddz6ob47i14vknz.o b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/da4wvfl2chddz6ob47i14vknz.o new file mode 100644 index 0000000..86e063b Binary files /dev/null and b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/da4wvfl2chddz6ob47i14vknz.o differ diff --git a/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/dep-graph.bin b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/dep-graph.bin new file mode 100644 index 0000000..61b9190 Binary files /dev/null and b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/dep-graph.bin differ diff --git a/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/dfkqspw7rgtxk6xvupybzsajs.o b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/dfkqspw7rgtxk6xvupybzsajs.o new file mode 100644 index 0000000..96feb99 Binary files /dev/null and b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/dfkqspw7rgtxk6xvupybzsajs.o differ diff --git a/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/dhkjw9q005as1i796fqakk8lq.o b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/dhkjw9q005as1i796fqakk8lq.o new file mode 100644 index 0000000..29df573 Binary files /dev/null and b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/dhkjw9q005as1i796fqakk8lq.o differ diff --git a/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/duehfcz84pd38jhs5z7bg09vw.o b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/duehfcz84pd38jhs5z7bg09vw.o new file mode 100644 index 0000000..d11b5ac Binary files /dev/null and b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/duehfcz84pd38jhs5z7bg09vw.o differ diff --git a/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/e7cu3jafsighhbsehxsw5l6wd.o b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/e7cu3jafsighhbsehxsw5l6wd.o new file mode 100644 index 0000000..832b427 Binary files /dev/null and b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/e7cu3jafsighhbsehxsw5l6wd.o differ diff --git a/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/eqpuy9te32eibvx5d8qnc43tt.o b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/eqpuy9te32eibvx5d8qnc43tt.o new file mode 100644 index 0000000..88adbdd Binary files /dev/null and b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/eqpuy9te32eibvx5d8qnc43tt.o differ diff --git a/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/extiiqdhvjsl2j1cujfce2xho.o b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/extiiqdhvjsl2j1cujfce2xho.o new file mode 100644 index 0000000..0033195 Binary files /dev/null and b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/extiiqdhvjsl2j1cujfce2xho.o differ diff --git a/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/f35e2n408o2rgzcn7v1gnecj5.o b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/f35e2n408o2rgzcn7v1gnecj5.o new file mode 100644 index 0000000..5331193 Binary files /dev/null and b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/f35e2n408o2rgzcn7v1gnecj5.o differ diff --git a/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/metadata.rmeta b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/metadata.rmeta new file mode 100644 index 0000000..8bc5c7d Binary files /dev/null and b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/metadata.rmeta differ diff --git a/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/query-cache.bin b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/query-cache.bin new file mode 100644 index 0000000..0124009 Binary files /dev/null and b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/query-cache.bin differ diff --git a/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/work-products.bin b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/work-products.bin new file mode 100644 index 0000000..87c75fb Binary files /dev/null and b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl-bflviqslw6omr8nnpaimtqcm5/work-products.bin differ diff --git a/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl.lock b/target/debug/incremental/openvx_vision-0zas27p0hysiu/s-hhafqbry8k-0gbinjl.lock new file mode 100644 index 0000000..e69de29 diff --git a/target/debug/libopenvx_buffer.d b/target/debug/libopenvx_buffer.d new file mode 100644 index 0000000..c3cb027 --- /dev/null +++ b/target/debug/libopenvx_buffer.d @@ -0,0 +1 @@ +/home/simon/.openclaw/workspace/rustVX/target/debug/libopenvx_buffer.rlib: /home/simon/.openclaw/workspace/rustVX/openvx-buffer/src/c_api.rs /home/simon/.openclaw/workspace/rustVX/openvx-buffer/src/lib.rs /home/simon/.openclaw/workspace/rustVX/openvx-core/src/c_api.rs /home/simon/.openclaw/workspace/rustVX/openvx-core/src/c_api_data.rs /home/simon/.openclaw/workspace/rustVX/openvx-core/src/context.rs /home/simon/.openclaw/workspace/rustVX/openvx-core/src/lib.rs /home/simon/.openclaw/workspace/rustVX/openvx-core/src/reference.rs /home/simon/.openclaw/workspace/rustVX/openvx-core/src/types.rs /home/simon/.openclaw/workspace/rustVX/openvx-core/src/unified_c_api.rs /home/simon/.openclaw/workspace/rustVX/openvx-core/src/vxu_impl.rs diff --git a/target/debug/libopenvx_buffer.rlib b/target/debug/libopenvx_buffer.rlib new file mode 100644 index 0000000..895ea44 Binary files /dev/null and b/target/debug/libopenvx_buffer.rlib differ diff --git a/target/debug/libopenvx_core.a b/target/debug/libopenvx_core.a new file mode 100644 index 0000000..3e1b013 Binary files /dev/null and b/target/debug/libopenvx_core.a differ diff --git a/target/debug/libopenvx_core.d b/target/debug/libopenvx_core.d new file mode 100644 index 0000000..2c22715 --- /dev/null +++ b/target/debug/libopenvx_core.d @@ -0,0 +1 @@ +/home/simon/.openclaw/workspace/rustVX/target/debug/libopenvx_core.rlib: /home/simon/.openclaw/workspace/rustVX/openvx-core/src/c_api.rs /home/simon/.openclaw/workspace/rustVX/openvx-core/src/c_api_data.rs /home/simon/.openclaw/workspace/rustVX/openvx-core/src/context.rs /home/simon/.openclaw/workspace/rustVX/openvx-core/src/lib.rs /home/simon/.openclaw/workspace/rustVX/openvx-core/src/reference.rs /home/simon/.openclaw/workspace/rustVX/openvx-core/src/types.rs /home/simon/.openclaw/workspace/rustVX/openvx-core/src/unified_c_api.rs /home/simon/.openclaw/workspace/rustVX/openvx-core/src/vxu_impl.rs diff --git a/target/debug/libopenvx_core.rlib b/target/debug/libopenvx_core.rlib new file mode 100644 index 0000000..a9f69f0 Binary files /dev/null and b/target/debug/libopenvx_core.rlib differ diff --git a/target/debug/libopenvx_core.so b/target/debug/libopenvx_core.so new file mode 100755 index 0000000..5559dc2 Binary files /dev/null and b/target/debug/libopenvx_core.so differ diff --git a/target/debug/libopenvx_ffi.a b/target/debug/libopenvx_ffi.a new file mode 100644 index 0000000..90f22b5 Binary files /dev/null and b/target/debug/libopenvx_ffi.a differ diff --git a/target/debug/libopenvx_ffi.d b/target/debug/libopenvx_ffi.d new file mode 100644 index 0000000..d664808 --- /dev/null +++ b/target/debug/libopenvx_ffi.d @@ -0,0 +1 @@ +/home/simon/.openclaw/workspace/rustVX/target/debug/libopenvx_ffi.a: /home/simon/.openclaw/workspace/rustVX/openvx-buffer/src/c_api.rs /home/simon/.openclaw/workspace/rustVX/openvx-buffer/src/lib.rs /home/simon/.openclaw/workspace/rustVX/openvx-core/src/c_api.rs /home/simon/.openclaw/workspace/rustVX/openvx-core/src/c_api_data.rs /home/simon/.openclaw/workspace/rustVX/openvx-core/src/context.rs /home/simon/.openclaw/workspace/rustVX/openvx-core/src/lib.rs /home/simon/.openclaw/workspace/rustVX/openvx-core/src/reference.rs /home/simon/.openclaw/workspace/rustVX/openvx-core/src/types.rs /home/simon/.openclaw/workspace/rustVX/openvx-core/src/unified_c_api.rs /home/simon/.openclaw/workspace/rustVX/openvx-core/src/vxu_impl.rs /home/simon/.openclaw/workspace/rustVX/openvx-ffi/src/lib.rs /home/simon/.openclaw/workspace/rustVX/openvx-image/src/c_api.rs /home/simon/.openclaw/workspace/rustVX/openvx-image/src/ct_image.rs /home/simon/.openclaw/workspace/rustVX/openvx-image/src/lib.rs /home/simon/.openclaw/workspace/rustVX/openvx-vision/src/arithmetic.rs /home/simon/.openclaw/workspace/rustVX/openvx-vision/src/color.rs /home/simon/.openclaw/workspace/rustVX/openvx-vision/src/features.rs /home/simon/.openclaw/workspace/rustVX/openvx-vision/src/filter.rs /home/simon/.openclaw/workspace/rustVX/openvx-vision/src/geometric.rs /home/simon/.openclaw/workspace/rustVX/openvx-vision/src/gradient.rs /home/simon/.openclaw/workspace/rustVX/openvx-vision/src/lib.rs /home/simon/.openclaw/workspace/rustVX/openvx-vision/src/morphology.rs /home/simon/.openclaw/workspace/rustVX/openvx-vision/src/object_detection.rs /home/simon/.openclaw/workspace/rustVX/openvx-vision/src/optical_flow.rs /home/simon/.openclaw/workspace/rustVX/openvx-vision/src/simd_utils.rs /home/simon/.openclaw/workspace/rustVX/openvx-vision/src/statistics.rs /home/simon/.openclaw/workspace/rustVX/openvx-vision/src/utils.rs diff --git a/target/debug/libopenvx_ffi.so b/target/debug/libopenvx_ffi.so new file mode 100755 index 0000000..67029fe Binary files /dev/null and b/target/debug/libopenvx_ffi.so differ diff --git a/target/debug/libopenvx_image.d b/target/debug/libopenvx_image.d new file mode 100644 index 0000000..0da0341 --- /dev/null +++ b/target/debug/libopenvx_image.d @@ -0,0 +1 @@ +/home/simon/.openclaw/workspace/rustVX/target/debug/libopenvx_image.rlib: /home/simon/.openclaw/workspace/rustVX/openvx-core/src/c_api.rs /home/simon/.openclaw/workspace/rustVX/openvx-core/src/c_api_data.rs /home/simon/.openclaw/workspace/rustVX/openvx-core/src/context.rs /home/simon/.openclaw/workspace/rustVX/openvx-core/src/lib.rs /home/simon/.openclaw/workspace/rustVX/openvx-core/src/reference.rs /home/simon/.openclaw/workspace/rustVX/openvx-core/src/types.rs /home/simon/.openclaw/workspace/rustVX/openvx-core/src/unified_c_api.rs /home/simon/.openclaw/workspace/rustVX/openvx-core/src/vxu_impl.rs /home/simon/.openclaw/workspace/rustVX/openvx-image/src/c_api.rs /home/simon/.openclaw/workspace/rustVX/openvx-image/src/ct_image.rs /home/simon/.openclaw/workspace/rustVX/openvx-image/src/lib.rs diff --git a/target/debug/libopenvx_image.rlib b/target/debug/libopenvx_image.rlib new file mode 100644 index 0000000..55d880a Binary files /dev/null and b/target/debug/libopenvx_image.rlib differ diff --git a/target/debug/libopenvx_vision.d b/target/debug/libopenvx_vision.d new file mode 100644 index 0000000..66a9631 --- /dev/null +++ b/target/debug/libopenvx_vision.d @@ -0,0 +1 @@ +/home/simon/.openclaw/workspace/rustVX/target/debug/libopenvx_vision.rlib: /home/simon/.openclaw/workspace/rustVX/openvx-buffer/src/c_api.rs /home/simon/.openclaw/workspace/rustVX/openvx-buffer/src/lib.rs /home/simon/.openclaw/workspace/rustVX/openvx-core/src/c_api.rs /home/simon/.openclaw/workspace/rustVX/openvx-core/src/c_api_data.rs /home/simon/.openclaw/workspace/rustVX/openvx-core/src/context.rs /home/simon/.openclaw/workspace/rustVX/openvx-core/src/lib.rs /home/simon/.openclaw/workspace/rustVX/openvx-core/src/reference.rs /home/simon/.openclaw/workspace/rustVX/openvx-core/src/types.rs /home/simon/.openclaw/workspace/rustVX/openvx-core/src/unified_c_api.rs /home/simon/.openclaw/workspace/rustVX/openvx-core/src/vxu_impl.rs /home/simon/.openclaw/workspace/rustVX/openvx-image/src/c_api.rs /home/simon/.openclaw/workspace/rustVX/openvx-image/src/ct_image.rs /home/simon/.openclaw/workspace/rustVX/openvx-image/src/lib.rs /home/simon/.openclaw/workspace/rustVX/openvx-vision/src/arithmetic.rs /home/simon/.openclaw/workspace/rustVX/openvx-vision/src/color.rs /home/simon/.openclaw/workspace/rustVX/openvx-vision/src/features.rs /home/simon/.openclaw/workspace/rustVX/openvx-vision/src/filter.rs /home/simon/.openclaw/workspace/rustVX/openvx-vision/src/geometric.rs /home/simon/.openclaw/workspace/rustVX/openvx-vision/src/gradient.rs /home/simon/.openclaw/workspace/rustVX/openvx-vision/src/lib.rs /home/simon/.openclaw/workspace/rustVX/openvx-vision/src/morphology.rs /home/simon/.openclaw/workspace/rustVX/openvx-vision/src/object_detection.rs /home/simon/.openclaw/workspace/rustVX/openvx-vision/src/optical_flow.rs /home/simon/.openclaw/workspace/rustVX/openvx-vision/src/simd_utils.rs /home/simon/.openclaw/workspace/rustVX/openvx-vision/src/statistics.rs /home/simon/.openclaw/workspace/rustVX/openvx-vision/src/utils.rs diff --git a/target/debug/libopenvx_vision.rlib b/target/debug/libopenvx_vision.rlib new file mode 100644 index 0000000..da2f4a0 Binary files /dev/null and b/target/debug/libopenvx_vision.rlib differ diff --git a/target/release/.fingerprint/anes-1c4d1373d9e988af/dep-lib-anes b/target/release/.fingerprint/anes-1c4d1373d9e988af/dep-lib-anes new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/target/release/.fingerprint/anes-1c4d1373d9e988af/dep-lib-anes differ diff --git a/target/release/.fingerprint/anes-1c4d1373d9e988af/invoked.timestamp b/target/release/.fingerprint/anes-1c4d1373d9e988af/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/anes-1c4d1373d9e988af/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/anes-1c4d1373d9e988af/lib-anes b/target/release/.fingerprint/anes-1c4d1373d9e988af/lib-anes new file mode 100644 index 0000000..fd29d47 --- /dev/null +++ b/target/release/.fingerprint/anes-1c4d1373d9e988af/lib-anes @@ -0,0 +1 @@ +3cf203d49b6f579f \ No newline at end of file diff --git a/target/release/.fingerprint/anes-1c4d1373d9e988af/lib-anes.json b/target/release/.fingerprint/anes-1c4d1373d9e988af/lib-anes.json new file mode 100644 index 0000000..37ded05 --- /dev/null +++ b/target/release/.fingerprint/anes-1c4d1373d9e988af/lib-anes.json @@ -0,0 +1 @@ +{"rustc":18276270781310494267,"features":"[\"default\"]","declared_features":"[\"bitflags\", \"default\", \"parser\"]","target":15514848761019652899,"profile":2040997289075261528,"path":12405073167606107240,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/anes-1c4d1373d9e988af/dep-lib-anes","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/anstyle-1335201cfe2bdfb9/dep-lib-anstyle b/target/release/.fingerprint/anstyle-1335201cfe2bdfb9/dep-lib-anstyle new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/target/release/.fingerprint/anstyle-1335201cfe2bdfb9/dep-lib-anstyle differ diff --git a/target/release/.fingerprint/anstyle-1335201cfe2bdfb9/invoked.timestamp b/target/release/.fingerprint/anstyle-1335201cfe2bdfb9/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/anstyle-1335201cfe2bdfb9/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/anstyle-1335201cfe2bdfb9/lib-anstyle b/target/release/.fingerprint/anstyle-1335201cfe2bdfb9/lib-anstyle new file mode 100644 index 0000000..d033ba3 --- /dev/null +++ b/target/release/.fingerprint/anstyle-1335201cfe2bdfb9/lib-anstyle @@ -0,0 +1 @@ +31c7d24a97ded6cb \ No newline at end of file diff --git a/target/release/.fingerprint/anstyle-1335201cfe2bdfb9/lib-anstyle.json b/target/release/.fingerprint/anstyle-1335201cfe2bdfb9/lib-anstyle.json new file mode 100644 index 0000000..6d9b7c9 --- /dev/null +++ b/target/release/.fingerprint/anstyle-1335201cfe2bdfb9/lib-anstyle.json @@ -0,0 +1 @@ +{"rustc":18276270781310494267,"features":"[\"default\", \"std\"]","declared_features":"[\"default\", \"std\"]","target":6165884447290141869,"profile":9935722674736056754,"path":4746595810784550656,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/anstyle-1335201cfe2bdfb9/dep-lib-anstyle","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/assert_approx_eq-52115f18d0a131bd/dep-lib-assert_approx_eq b/target/release/.fingerprint/assert_approx_eq-52115f18d0a131bd/dep-lib-assert_approx_eq new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/target/release/.fingerprint/assert_approx_eq-52115f18d0a131bd/dep-lib-assert_approx_eq differ diff --git a/target/release/.fingerprint/assert_approx_eq-52115f18d0a131bd/invoked.timestamp b/target/release/.fingerprint/assert_approx_eq-52115f18d0a131bd/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/assert_approx_eq-52115f18d0a131bd/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/assert_approx_eq-52115f18d0a131bd/lib-assert_approx_eq b/target/release/.fingerprint/assert_approx_eq-52115f18d0a131bd/lib-assert_approx_eq new file mode 100644 index 0000000..d088867 --- /dev/null +++ b/target/release/.fingerprint/assert_approx_eq-52115f18d0a131bd/lib-assert_approx_eq @@ -0,0 +1 @@ +993043f6265c1c0c \ No newline at end of file diff --git a/target/release/.fingerprint/assert_approx_eq-52115f18d0a131bd/lib-assert_approx_eq.json b/target/release/.fingerprint/assert_approx_eq-52115f18d0a131bd/lib-assert_approx_eq.json new file mode 100644 index 0000000..e05b3a4 --- /dev/null +++ b/target/release/.fingerprint/assert_approx_eq-52115f18d0a131bd/lib-assert_approx_eq.json @@ -0,0 +1 @@ +{"rustc":18276270781310494267,"features":"[]","declared_features":"[]","target":6089379401896057230,"profile":2040997289075261528,"path":10570125707498303497,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/assert_approx_eq-52115f18d0a131bd/dep-lib-assert_approx_eq","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/autocfg-da071fec8bb21226/dep-lib-autocfg b/target/release/.fingerprint/autocfg-da071fec8bb21226/dep-lib-autocfg new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/target/release/.fingerprint/autocfg-da071fec8bb21226/dep-lib-autocfg differ diff --git a/target/release/.fingerprint/autocfg-da071fec8bb21226/invoked.timestamp b/target/release/.fingerprint/autocfg-da071fec8bb21226/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/autocfg-da071fec8bb21226/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/autocfg-da071fec8bb21226/lib-autocfg b/target/release/.fingerprint/autocfg-da071fec8bb21226/lib-autocfg new file mode 100644 index 0000000..3586a85 --- /dev/null +++ b/target/release/.fingerprint/autocfg-da071fec8bb21226/lib-autocfg @@ -0,0 +1 @@ +262e9e4fcbfcebae \ No newline at end of file diff --git a/target/release/.fingerprint/autocfg-da071fec8bb21226/lib-autocfg.json b/target/release/.fingerprint/autocfg-da071fec8bb21226/lib-autocfg.json new file mode 100644 index 0000000..ba54ae0 --- /dev/null +++ b/target/release/.fingerprint/autocfg-da071fec8bb21226/lib-autocfg.json @@ -0,0 +1 @@ +{"rustc":18276270781310494267,"features":"[]","declared_features":"[]","target":6962977057026645649,"profile":1369601567987815722,"path":4789882304143165276,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/autocfg-da071fec8bb21226/dep-lib-autocfg","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/cast-9109d48c055aef1b/dep-lib-cast b/target/release/.fingerprint/cast-9109d48c055aef1b/dep-lib-cast new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/target/release/.fingerprint/cast-9109d48c055aef1b/dep-lib-cast differ diff --git a/target/release/.fingerprint/cast-9109d48c055aef1b/invoked.timestamp b/target/release/.fingerprint/cast-9109d48c055aef1b/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/cast-9109d48c055aef1b/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/cast-9109d48c055aef1b/lib-cast b/target/release/.fingerprint/cast-9109d48c055aef1b/lib-cast new file mode 100644 index 0000000..753d862 --- /dev/null +++ b/target/release/.fingerprint/cast-9109d48c055aef1b/lib-cast @@ -0,0 +1 @@ +af508ed58c30aa95 \ No newline at end of file diff --git a/target/release/.fingerprint/cast-9109d48c055aef1b/lib-cast.json b/target/release/.fingerprint/cast-9109d48c055aef1b/lib-cast.json new file mode 100644 index 0000000..8145f7e --- /dev/null +++ b/target/release/.fingerprint/cast-9109d48c055aef1b/lib-cast.json @@ -0,0 +1 @@ +{"rustc":18276270781310494267,"features":"[]","declared_features":"[\"std\"]","target":5545552490577062777,"profile":2040997289075261528,"path":12551864744833255070,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/cast-9109d48c055aef1b/dep-lib-cast","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/ciborium-9a2c0196e3efb194/dep-lib-ciborium b/target/release/.fingerprint/ciborium-9a2c0196e3efb194/dep-lib-ciborium new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/target/release/.fingerprint/ciborium-9a2c0196e3efb194/dep-lib-ciborium differ diff --git a/target/release/.fingerprint/ciborium-9a2c0196e3efb194/invoked.timestamp b/target/release/.fingerprint/ciborium-9a2c0196e3efb194/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/ciborium-9a2c0196e3efb194/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/ciborium-9a2c0196e3efb194/lib-ciborium b/target/release/.fingerprint/ciborium-9a2c0196e3efb194/lib-ciborium new file mode 100644 index 0000000..ca9717b --- /dev/null +++ b/target/release/.fingerprint/ciborium-9a2c0196e3efb194/lib-ciborium @@ -0,0 +1 @@ +a6db83fb6e260772 \ No newline at end of file diff --git a/target/release/.fingerprint/ciborium-9a2c0196e3efb194/lib-ciborium.json b/target/release/.fingerprint/ciborium-9a2c0196e3efb194/lib-ciborium.json new file mode 100644 index 0000000..6675159 --- /dev/null +++ b/target/release/.fingerprint/ciborium-9a2c0196e3efb194/lib-ciborium.json @@ -0,0 +1 @@ +{"rustc":18276270781310494267,"features":"[\"default\", \"std\"]","declared_features":"[\"default\", \"std\"]","target":2165534667411437309,"profile":2040997289075261528,"path":5046223483009202169,"deps":[[1874735532026338296,"ciborium_ll",false,11251509927992559367],[10057415176380654875,"ciborium_io",false,4652543122687002279],[13548984313718623784,"serde",false,10763131289175022003]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/ciborium-9a2c0196e3efb194/dep-lib-ciborium","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/ciborium-io-7e4258cdc22c9b86/dep-lib-ciborium_io b/target/release/.fingerprint/ciborium-io-7e4258cdc22c9b86/dep-lib-ciborium_io new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/target/release/.fingerprint/ciborium-io-7e4258cdc22c9b86/dep-lib-ciborium_io differ diff --git a/target/release/.fingerprint/ciborium-io-7e4258cdc22c9b86/invoked.timestamp b/target/release/.fingerprint/ciborium-io-7e4258cdc22c9b86/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/ciborium-io-7e4258cdc22c9b86/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/ciborium-io-7e4258cdc22c9b86/lib-ciborium_io b/target/release/.fingerprint/ciborium-io-7e4258cdc22c9b86/lib-ciborium_io new file mode 100644 index 0000000..3575fcc --- /dev/null +++ b/target/release/.fingerprint/ciborium-io-7e4258cdc22c9b86/lib-ciborium_io @@ -0,0 +1 @@ +a706f2e151279140 \ No newline at end of file diff --git a/target/release/.fingerprint/ciborium-io-7e4258cdc22c9b86/lib-ciborium_io.json b/target/release/.fingerprint/ciborium-io-7e4258cdc22c9b86/lib-ciborium_io.json new file mode 100644 index 0000000..d7b25a5 --- /dev/null +++ b/target/release/.fingerprint/ciborium-io-7e4258cdc22c9b86/lib-ciborium_io.json @@ -0,0 +1 @@ +{"rustc":18276270781310494267,"features":"[\"alloc\", \"std\"]","declared_features":"[\"alloc\", \"std\"]","target":11045875261356110034,"profile":2040997289075261528,"path":7799333000884706564,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/ciborium-io-7e4258cdc22c9b86/dep-lib-ciborium_io","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/ciborium-ll-6a78da664f02b45f/dep-lib-ciborium_ll b/target/release/.fingerprint/ciborium-ll-6a78da664f02b45f/dep-lib-ciborium_ll new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/target/release/.fingerprint/ciborium-ll-6a78da664f02b45f/dep-lib-ciborium_ll differ diff --git a/target/release/.fingerprint/ciborium-ll-6a78da664f02b45f/invoked.timestamp b/target/release/.fingerprint/ciborium-ll-6a78da664f02b45f/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/ciborium-ll-6a78da664f02b45f/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/ciborium-ll-6a78da664f02b45f/lib-ciborium_ll b/target/release/.fingerprint/ciborium-ll-6a78da664f02b45f/lib-ciborium_ll new file mode 100644 index 0000000..b2474d9 --- /dev/null +++ b/target/release/.fingerprint/ciborium-ll-6a78da664f02b45f/lib-ciborium_ll @@ -0,0 +1 @@ +0707c79caa64259c \ No newline at end of file diff --git a/target/release/.fingerprint/ciborium-ll-6a78da664f02b45f/lib-ciborium_ll.json b/target/release/.fingerprint/ciborium-ll-6a78da664f02b45f/lib-ciborium_ll.json new file mode 100644 index 0000000..375ef7a --- /dev/null +++ b/target/release/.fingerprint/ciborium-ll-6a78da664f02b45f/lib-ciborium_ll.json @@ -0,0 +1 @@ +{"rustc":18276270781310494267,"features":"[]","declared_features":"[\"alloc\", \"std\"]","target":6259365080488940533,"profile":2040997289075261528,"path":17029855075003631771,"deps":[[10057415176380654875,"ciborium_io",false,4652543122687002279],[16598877151661132269,"half",false,11075761880235358994]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/ciborium-ll-6a78da664f02b45f/dep-lib-ciborium_ll","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/clap-1168baf059466741/dep-lib-clap b/target/release/.fingerprint/clap-1168baf059466741/dep-lib-clap new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/target/release/.fingerprint/clap-1168baf059466741/dep-lib-clap differ diff --git a/target/release/.fingerprint/clap-1168baf059466741/invoked.timestamp b/target/release/.fingerprint/clap-1168baf059466741/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/clap-1168baf059466741/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/clap-1168baf059466741/lib-clap b/target/release/.fingerprint/clap-1168baf059466741/lib-clap new file mode 100644 index 0000000..97e0e88 --- /dev/null +++ b/target/release/.fingerprint/clap-1168baf059466741/lib-clap @@ -0,0 +1 @@ +3f625ac78866355e \ No newline at end of file diff --git a/target/release/.fingerprint/clap-1168baf059466741/lib-clap.json b/target/release/.fingerprint/clap-1168baf059466741/lib-clap.json new file mode 100644 index 0000000..489722d --- /dev/null +++ b/target/release/.fingerprint/clap-1168baf059466741/lib-clap.json @@ -0,0 +1 @@ +{"rustc":18276270781310494267,"features":"[\"std\"]","declared_features":"[\"cargo\", \"color\", \"debug\", \"default\", \"deprecated\", \"derive\", \"env\", \"error-context\", \"help\", \"std\", \"string\", \"suggestions\", \"unicode\", \"unstable-derive-ui-tests\", \"unstable-doc\", \"unstable-ext\", \"unstable-markdown\", \"unstable-styles\", \"unstable-v5\", \"usage\", \"wrap_help\"]","target":3788228259706617387,"profile":422155425158412511,"path":13680675193265396139,"deps":[[12853434244957124663,"clap_builder",false,17078882739295369169]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/clap-1168baf059466741/dep-lib-clap","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/clap_builder-c13b905e362998a2/dep-lib-clap_builder b/target/release/.fingerprint/clap_builder-c13b905e362998a2/dep-lib-clap_builder new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/target/release/.fingerprint/clap_builder-c13b905e362998a2/dep-lib-clap_builder differ diff --git a/target/release/.fingerprint/clap_builder-c13b905e362998a2/invoked.timestamp b/target/release/.fingerprint/clap_builder-c13b905e362998a2/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/clap_builder-c13b905e362998a2/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/clap_builder-c13b905e362998a2/lib-clap_builder b/target/release/.fingerprint/clap_builder-c13b905e362998a2/lib-clap_builder new file mode 100644 index 0000000..5b21726 --- /dev/null +++ b/target/release/.fingerprint/clap_builder-c13b905e362998a2/lib-clap_builder @@ -0,0 +1 @@ +d13740145d6104ed \ No newline at end of file diff --git a/target/release/.fingerprint/clap_builder-c13b905e362998a2/lib-clap_builder.json b/target/release/.fingerprint/clap_builder-c13b905e362998a2/lib-clap_builder.json new file mode 100644 index 0000000..75bd73c --- /dev/null +++ b/target/release/.fingerprint/clap_builder-c13b905e362998a2/lib-clap_builder.json @@ -0,0 +1 @@ +{"rustc":18276270781310494267,"features":"[\"std\"]","declared_features":"[\"cargo\", \"color\", \"debug\", \"default\", \"deprecated\", \"env\", \"error-context\", \"help\", \"std\", \"string\", \"suggestions\", \"unicode\", \"unstable-doc\", \"unstable-ext\", \"unstable-styles\", \"unstable-v5\", \"usage\", \"wrap_help\"]","target":2771552807545835539,"profile":422155425158412511,"path":10348766771104205200,"deps":[[7098682853475662231,"anstyle",false,14688171976092206897],[13859629720716765461,"clap_lex",false,9390123208901402543]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/clap_builder-c13b905e362998a2/dep-lib-clap_builder","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/clap_lex-e91b14870d354d9f/dep-lib-clap_lex b/target/release/.fingerprint/clap_lex-e91b14870d354d9f/dep-lib-clap_lex new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/target/release/.fingerprint/clap_lex-e91b14870d354d9f/dep-lib-clap_lex differ diff --git a/target/release/.fingerprint/clap_lex-e91b14870d354d9f/invoked.timestamp b/target/release/.fingerprint/clap_lex-e91b14870d354d9f/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/clap_lex-e91b14870d354d9f/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/clap_lex-e91b14870d354d9f/lib-clap_lex b/target/release/.fingerprint/clap_lex-e91b14870d354d9f/lib-clap_lex new file mode 100644 index 0000000..51efb12 --- /dev/null +++ b/target/release/.fingerprint/clap_lex-e91b14870d354d9f/lib-clap_lex @@ -0,0 +1 @@ +af1fb8b74e6b5082 \ No newline at end of file diff --git a/target/release/.fingerprint/clap_lex-e91b14870d354d9f/lib-clap_lex.json b/target/release/.fingerprint/clap_lex-e91b14870d354d9f/lib-clap_lex.json new file mode 100644 index 0000000..6df07a3 --- /dev/null +++ b/target/release/.fingerprint/clap_lex-e91b14870d354d9f/lib-clap_lex.json @@ -0,0 +1 @@ +{"rustc":18276270781310494267,"features":"[]","declared_features":"[]","target":8621696840636553848,"profile":422155425158412511,"path":3297650268515126486,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/clap_lex-e91b14870d354d9f/dep-lib-clap_lex","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/criterion-448e3a7c5d1b8498/dep-lib-criterion b/target/release/.fingerprint/criterion-448e3a7c5d1b8498/dep-lib-criterion new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/target/release/.fingerprint/criterion-448e3a7c5d1b8498/dep-lib-criterion differ diff --git a/target/release/.fingerprint/criterion-448e3a7c5d1b8498/invoked.timestamp b/target/release/.fingerprint/criterion-448e3a7c5d1b8498/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/criterion-448e3a7c5d1b8498/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/criterion-448e3a7c5d1b8498/lib-criterion b/target/release/.fingerprint/criterion-448e3a7c5d1b8498/lib-criterion new file mode 100644 index 0000000..c5f7559 --- /dev/null +++ b/target/release/.fingerprint/criterion-448e3a7c5d1b8498/lib-criterion @@ -0,0 +1 @@ +418916c1dfa8c87e \ No newline at end of file diff --git a/target/release/.fingerprint/criterion-448e3a7c5d1b8498/lib-criterion.json b/target/release/.fingerprint/criterion-448e3a7c5d1b8498/lib-criterion.json new file mode 100644 index 0000000..538dd0c --- /dev/null +++ b/target/release/.fingerprint/criterion-448e3a7c5d1b8498/lib-criterion.json @@ -0,0 +1 @@ +{"rustc":18276270781310494267,"features":"[\"cargo_bench_support\", \"default\", \"html_reports\", \"plotters\", \"rayon\"]","declared_features":"[\"async\", \"async-std\", \"async_futures\", \"async_smol\", \"async_std\", \"async_tokio\", \"cargo_bench_support\", \"csv\", \"csv_output\", \"default\", \"futures\", \"html_reports\", \"plotters\", \"rayon\", \"real_blackbox\", \"smol\", \"stable\", \"tokio\"]","target":13134102886742499045,"profile":2040997289075261528,"path":8387054082153329142,"deps":[[797101358849049107,"plotters",false,2619377652743706752],[3051629642231505422,"serde_derive",false,10510254659636567795],[3271484356813889443,"oorandom",false,7637147036440953478],[4567981546493079902,"anes",false,11481768490072011324],[4676990275465374317,"is_terminal",false,12121006594660408275],[5157631553186200874,"num_traits",false,13434497502005898343],[5855319743879205494,"once_cell",false,6238387259129243755],[11898908734080445782,"tinytemplate",false,13291193090430550558],[11903278875415370753,"itertools",false,17560519403023361603],[11934022306856972276,"ciborium",false,8216578303268740006],[13548984313718623784,"serde",false,10763131289175022003],[13795362694956882968,"serde_json",false,9222485389600560234],[14474842057495682559,"cast",false,10784485639128502447],[14807177696891839338,"rayon",false,8968381854692218552],[15622660310229662834,"walkdir",false,880048852393939315],[16891682993831069510,"clap",false,6788444750977065535],[17109794424245468765,"regex",false,613400187436427257],[17905811754654748051,"criterion_plot",false,11761071726491871057]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/criterion-448e3a7c5d1b8498/dep-lib-criterion","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/criterion-plot-780ebee1178c6613/dep-lib-criterion_plot b/target/release/.fingerprint/criterion-plot-780ebee1178c6613/dep-lib-criterion_plot new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/target/release/.fingerprint/criterion-plot-780ebee1178c6613/dep-lib-criterion_plot differ diff --git a/target/release/.fingerprint/criterion-plot-780ebee1178c6613/invoked.timestamp b/target/release/.fingerprint/criterion-plot-780ebee1178c6613/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/criterion-plot-780ebee1178c6613/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/criterion-plot-780ebee1178c6613/lib-criterion_plot b/target/release/.fingerprint/criterion-plot-780ebee1178c6613/lib-criterion_plot new file mode 100644 index 0000000..0f7bf93 --- /dev/null +++ b/target/release/.fingerprint/criterion-plot-780ebee1178c6613/lib-criterion_plot @@ -0,0 +1 @@ +512770236cb837a3 \ No newline at end of file diff --git a/target/release/.fingerprint/criterion-plot-780ebee1178c6613/lib-criterion_plot.json b/target/release/.fingerprint/criterion-plot-780ebee1178c6613/lib-criterion_plot.json new file mode 100644 index 0000000..1950274 --- /dev/null +++ b/target/release/.fingerprint/criterion-plot-780ebee1178c6613/lib-criterion_plot.json @@ -0,0 +1 @@ +{"rustc":18276270781310494267,"features":"[]","declared_features":"[]","target":7203819160063648356,"profile":2040997289075261528,"path":7471141673533707031,"deps":[[11903278875415370753,"itertools",false,17560519403023361603],[14474842057495682559,"cast",false,10784485639128502447]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/criterion-plot-780ebee1178c6613/dep-lib-criterion_plot","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/crossbeam-deque-46c4cb86b0f94fcd/dep-lib-crossbeam_deque b/target/release/.fingerprint/crossbeam-deque-46c4cb86b0f94fcd/dep-lib-crossbeam_deque new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/target/release/.fingerprint/crossbeam-deque-46c4cb86b0f94fcd/dep-lib-crossbeam_deque differ diff --git a/target/release/.fingerprint/crossbeam-deque-46c4cb86b0f94fcd/invoked.timestamp b/target/release/.fingerprint/crossbeam-deque-46c4cb86b0f94fcd/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/crossbeam-deque-46c4cb86b0f94fcd/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/crossbeam-deque-46c4cb86b0f94fcd/lib-crossbeam_deque b/target/release/.fingerprint/crossbeam-deque-46c4cb86b0f94fcd/lib-crossbeam_deque new file mode 100644 index 0000000..9e598a3 --- /dev/null +++ b/target/release/.fingerprint/crossbeam-deque-46c4cb86b0f94fcd/lib-crossbeam_deque @@ -0,0 +1 @@ +3962211c6f13247f \ No newline at end of file diff --git a/target/release/.fingerprint/crossbeam-deque-46c4cb86b0f94fcd/lib-crossbeam_deque.json b/target/release/.fingerprint/crossbeam-deque-46c4cb86b0f94fcd/lib-crossbeam_deque.json new file mode 100644 index 0000000..0eec8c3 --- /dev/null +++ b/target/release/.fingerprint/crossbeam-deque-46c4cb86b0f94fcd/lib-crossbeam_deque.json @@ -0,0 +1 @@ +{"rustc":18276270781310494267,"features":"[\"default\", \"std\"]","declared_features":"[\"default\", \"std\"]","target":15353977948366730291,"profile":14791228037615401302,"path":10306782442726186625,"deps":[[3528074118530651198,"crossbeam_epoch",false,5864375986399834720],[4468123440088164316,"crossbeam_utils",false,13020019537922379734]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/crossbeam-deque-46c4cb86b0f94fcd/dep-lib-crossbeam_deque","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/crossbeam-epoch-095a44de847a57a3/dep-lib-crossbeam_epoch b/target/release/.fingerprint/crossbeam-epoch-095a44de847a57a3/dep-lib-crossbeam_epoch new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/target/release/.fingerprint/crossbeam-epoch-095a44de847a57a3/dep-lib-crossbeam_epoch differ diff --git a/target/release/.fingerprint/crossbeam-epoch-095a44de847a57a3/invoked.timestamp b/target/release/.fingerprint/crossbeam-epoch-095a44de847a57a3/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/crossbeam-epoch-095a44de847a57a3/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/crossbeam-epoch-095a44de847a57a3/lib-crossbeam_epoch b/target/release/.fingerprint/crossbeam-epoch-095a44de847a57a3/lib-crossbeam_epoch new file mode 100644 index 0000000..c8a7285 --- /dev/null +++ b/target/release/.fingerprint/crossbeam-epoch-095a44de847a57a3/lib-crossbeam_epoch @@ -0,0 +1 @@ +6072b18ae3726251 \ No newline at end of file diff --git a/target/release/.fingerprint/crossbeam-epoch-095a44de847a57a3/lib-crossbeam_epoch.json b/target/release/.fingerprint/crossbeam-epoch-095a44de847a57a3/lib-crossbeam_epoch.json new file mode 100644 index 0000000..e9c6da6 --- /dev/null +++ b/target/release/.fingerprint/crossbeam-epoch-095a44de847a57a3/lib-crossbeam_epoch.json @@ -0,0 +1 @@ +{"rustc":18276270781310494267,"features":"[\"alloc\", \"std\"]","declared_features":"[\"alloc\", \"default\", \"loom\", \"loom-crate\", \"nightly\", \"std\"]","target":5830366855417007734,"profile":2040997289075261528,"path":16725947202481000683,"deps":[[4468123440088164316,"crossbeam_utils",false,13020019537922379734]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/crossbeam-epoch-095a44de847a57a3/dep-lib-crossbeam_epoch","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/crossbeam-utils-6b4bed48f49c1f80/build-script-build-script-build b/target/release/.fingerprint/crossbeam-utils-6b4bed48f49c1f80/build-script-build-script-build new file mode 100644 index 0000000..c260a3b --- /dev/null +++ b/target/release/.fingerprint/crossbeam-utils-6b4bed48f49c1f80/build-script-build-script-build @@ -0,0 +1 @@ +56af3811b810a75f \ No newline at end of file diff --git a/target/release/.fingerprint/crossbeam-utils-6b4bed48f49c1f80/build-script-build-script-build.json b/target/release/.fingerprint/crossbeam-utils-6b4bed48f49c1f80/build-script-build-script-build.json new file mode 100644 index 0000000..b8369b0 --- /dev/null +++ b/target/release/.fingerprint/crossbeam-utils-6b4bed48f49c1f80/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":18276270781310494267,"features":"[\"default\", \"std\"]","declared_features":"[\"default\", \"loom\", \"nightly\", \"std\"]","target":5408242616063297496,"profile":1419616050453328851,"path":2693397682087520229,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/crossbeam-utils-6b4bed48f49c1f80/dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/crossbeam-utils-6b4bed48f49c1f80/dep-build-script-build-script-build b/target/release/.fingerprint/crossbeam-utils-6b4bed48f49c1f80/dep-build-script-build-script-build new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/target/release/.fingerprint/crossbeam-utils-6b4bed48f49c1f80/dep-build-script-build-script-build differ diff --git a/target/release/.fingerprint/crossbeam-utils-6b4bed48f49c1f80/invoked.timestamp b/target/release/.fingerprint/crossbeam-utils-6b4bed48f49c1f80/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/crossbeam-utils-6b4bed48f49c1f80/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/crossbeam-utils-794d2ff98f40ae39/run-build-script-build-script-build b/target/release/.fingerprint/crossbeam-utils-794d2ff98f40ae39/run-build-script-build-script-build new file mode 100644 index 0000000..0ad579c --- /dev/null +++ b/target/release/.fingerprint/crossbeam-utils-794d2ff98f40ae39/run-build-script-build-script-build @@ -0,0 +1 @@ +020dbedeaec58609 \ No newline at end of file diff --git a/target/release/.fingerprint/crossbeam-utils-794d2ff98f40ae39/run-build-script-build-script-build.json b/target/release/.fingerprint/crossbeam-utils-794d2ff98f40ae39/run-build-script-build-script-build.json new file mode 100644 index 0000000..b9a7a98 --- /dev/null +++ b/target/release/.fingerprint/crossbeam-utils-794d2ff98f40ae39/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":18276270781310494267,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[4468123440088164316,"build_script_build",false,6892496137462787926]],"local":[{"RerunIfChanged":{"output":"release/build/crossbeam-utils-794d2ff98f40ae39/output","paths":["no_atomic.rs"]}}],"rustflags":[],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/crossbeam-utils-db0e56bb60b4920d/dep-lib-crossbeam_utils b/target/release/.fingerprint/crossbeam-utils-db0e56bb60b4920d/dep-lib-crossbeam_utils new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/target/release/.fingerprint/crossbeam-utils-db0e56bb60b4920d/dep-lib-crossbeam_utils differ diff --git a/target/release/.fingerprint/crossbeam-utils-db0e56bb60b4920d/invoked.timestamp b/target/release/.fingerprint/crossbeam-utils-db0e56bb60b4920d/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/crossbeam-utils-db0e56bb60b4920d/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/crossbeam-utils-db0e56bb60b4920d/lib-crossbeam_utils b/target/release/.fingerprint/crossbeam-utils-db0e56bb60b4920d/lib-crossbeam_utils new file mode 100644 index 0000000..a5d2e6c --- /dev/null +++ b/target/release/.fingerprint/crossbeam-utils-db0e56bb60b4920d/lib-crossbeam_utils @@ -0,0 +1 @@ +d64f8266c966b0b4 \ No newline at end of file diff --git a/target/release/.fingerprint/crossbeam-utils-db0e56bb60b4920d/lib-crossbeam_utils.json b/target/release/.fingerprint/crossbeam-utils-db0e56bb60b4920d/lib-crossbeam_utils.json new file mode 100644 index 0000000..432cc5b --- /dev/null +++ b/target/release/.fingerprint/crossbeam-utils-db0e56bb60b4920d/lib-crossbeam_utils.json @@ -0,0 +1 @@ +{"rustc":18276270781310494267,"features":"[\"default\", \"std\"]","declared_features":"[\"default\", \"loom\", \"nightly\", \"std\"]","target":9626079250877207070,"profile":14791228037615401302,"path":8444992856088533859,"deps":[[4468123440088164316,"build_script_build",false,686453348072557826]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/crossbeam-utils-db0e56bb60b4920d/dep-lib-crossbeam_utils","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/either-b001f79174e3308b/dep-lib-either b/target/release/.fingerprint/either-b001f79174e3308b/dep-lib-either new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/target/release/.fingerprint/either-b001f79174e3308b/dep-lib-either differ diff --git a/target/release/.fingerprint/either-b001f79174e3308b/invoked.timestamp b/target/release/.fingerprint/either-b001f79174e3308b/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/either-b001f79174e3308b/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/either-b001f79174e3308b/lib-either b/target/release/.fingerprint/either-b001f79174e3308b/lib-either new file mode 100644 index 0000000..1b48cc4 --- /dev/null +++ b/target/release/.fingerprint/either-b001f79174e3308b/lib-either @@ -0,0 +1 @@ +82fe20cad21d5be3 \ No newline at end of file diff --git a/target/release/.fingerprint/either-b001f79174e3308b/lib-either.json b/target/release/.fingerprint/either-b001f79174e3308b/lib-either.json new file mode 100644 index 0000000..6b41b13 --- /dev/null +++ b/target/release/.fingerprint/either-b001f79174e3308b/lib-either.json @@ -0,0 +1 @@ +{"rustc":18276270781310494267,"features":"[\"std\", \"use_std\"]","declared_features":"[\"default\", \"serde\", \"std\", \"use_std\"]","target":17124342308084364240,"profile":2040997289075261528,"path":984093935146528445,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/either-b001f79174e3308b/dep-lib-either","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/half-3b7c5ea86382d0e1/dep-lib-half b/target/release/.fingerprint/half-3b7c5ea86382d0e1/dep-lib-half new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/target/release/.fingerprint/half-3b7c5ea86382d0e1/dep-lib-half differ diff --git a/target/release/.fingerprint/half-3b7c5ea86382d0e1/invoked.timestamp b/target/release/.fingerprint/half-3b7c5ea86382d0e1/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/half-3b7c5ea86382d0e1/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/half-3b7c5ea86382d0e1/lib-half b/target/release/.fingerprint/half-3b7c5ea86382d0e1/lib-half new file mode 100644 index 0000000..63efbd6 --- /dev/null +++ b/target/release/.fingerprint/half-3b7c5ea86382d0e1/lib-half @@ -0,0 +1 @@ +12bb3d88bf02b599 \ No newline at end of file diff --git a/target/release/.fingerprint/half-3b7c5ea86382d0e1/lib-half.json b/target/release/.fingerprint/half-3b7c5ea86382d0e1/lib-half.json new file mode 100644 index 0000000..7eaeee7 --- /dev/null +++ b/target/release/.fingerprint/half-3b7c5ea86382d0e1/lib-half.json @@ -0,0 +1 @@ +{"rustc":18276270781310494267,"features":"[]","declared_features":"[\"alloc\", \"arbitrary\", \"bytemuck\", \"default\", \"nightly\", \"num-traits\", \"rand_distr\", \"rkyv\", \"serde\", \"std\", \"use-intrinsics\", \"zerocopy\"]","target":5584728948347947946,"profile":2040997289075261528,"path":13574350531053395562,"deps":[[7667230146095136825,"cfg_if",false,18272283593423333754],[12041806806590726837,"zerocopy",false,10873840475451924811]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/half-3b7c5ea86382d0e1/dep-lib-half","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/indexmap-19b61bf9708d93db/dep-lib-indexmap b/target/release/.fingerprint/indexmap-19b61bf9708d93db/dep-lib-indexmap new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/target/release/.fingerprint/indexmap-19b61bf9708d93db/dep-lib-indexmap differ diff --git a/target/release/.fingerprint/indexmap-19b61bf9708d93db/invoked.timestamp b/target/release/.fingerprint/indexmap-19b61bf9708d93db/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/indexmap-19b61bf9708d93db/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/indexmap-19b61bf9708d93db/lib-indexmap b/target/release/.fingerprint/indexmap-19b61bf9708d93db/lib-indexmap new file mode 100644 index 0000000..e60f752 --- /dev/null +++ b/target/release/.fingerprint/indexmap-19b61bf9708d93db/lib-indexmap @@ -0,0 +1 @@ +414d5b25aac88836 \ No newline at end of file diff --git a/target/release/.fingerprint/indexmap-19b61bf9708d93db/lib-indexmap.json b/target/release/.fingerprint/indexmap-19b61bf9708d93db/lib-indexmap.json new file mode 100644 index 0000000..81237eb --- /dev/null +++ b/target/release/.fingerprint/indexmap-19b61bf9708d93db/lib-indexmap.json @@ -0,0 +1 @@ +{"rustc":18276270781310494267,"features":"[\"default\", \"std\"]","declared_features":"[\"arbitrary\", \"borsh\", \"default\", \"quickcheck\", \"rayon\", \"serde\", \"std\", \"sval\", \"test_debug\"]","target":10391229881554802429,"profile":7343194805494485913,"path":16989631437549223344,"deps":[[5230392855116717286,"equivalent",false,4979063441269801393],[17037126617600641945,"hashbrown",false,697958713777441931]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/indexmap-19b61bf9708d93db/dep-lib-indexmap","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/is-terminal-3ffc5c46504b7b01/dep-lib-is_terminal b/target/release/.fingerprint/is-terminal-3ffc5c46504b7b01/dep-lib-is_terminal new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/target/release/.fingerprint/is-terminal-3ffc5c46504b7b01/dep-lib-is_terminal differ diff --git a/target/release/.fingerprint/is-terminal-3ffc5c46504b7b01/invoked.timestamp b/target/release/.fingerprint/is-terminal-3ffc5c46504b7b01/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/is-terminal-3ffc5c46504b7b01/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/is-terminal-3ffc5c46504b7b01/lib-is_terminal b/target/release/.fingerprint/is-terminal-3ffc5c46504b7b01/lib-is_terminal new file mode 100644 index 0000000..f608ca7 --- /dev/null +++ b/target/release/.fingerprint/is-terminal-3ffc5c46504b7b01/lib-is_terminal @@ -0,0 +1 @@ +d39be62a477736a8 \ No newline at end of file diff --git a/target/release/.fingerprint/is-terminal-3ffc5c46504b7b01/lib-is_terminal.json b/target/release/.fingerprint/is-terminal-3ffc5c46504b7b01/lib-is_terminal.json new file mode 100644 index 0000000..f6100cd --- /dev/null +++ b/target/release/.fingerprint/is-terminal-3ffc5c46504b7b01/lib-is_terminal.json @@ -0,0 +1 @@ +{"rustc":18276270781310494267,"features":"[]","declared_features":"[]","target":6746379492590805755,"profile":2040997289075261528,"path":13810797178500040861,"deps":[[17159683253194042242,"libc",false,6334169273177657689]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/is-terminal-3ffc5c46504b7b01/dep-lib-is_terminal","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/itertools-43b1aade48ea646f/dep-lib-itertools b/target/release/.fingerprint/itertools-43b1aade48ea646f/dep-lib-itertools new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/target/release/.fingerprint/itertools-43b1aade48ea646f/dep-lib-itertools differ diff --git a/target/release/.fingerprint/itertools-43b1aade48ea646f/invoked.timestamp b/target/release/.fingerprint/itertools-43b1aade48ea646f/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/itertools-43b1aade48ea646f/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/itertools-43b1aade48ea646f/lib-itertools b/target/release/.fingerprint/itertools-43b1aade48ea646f/lib-itertools new file mode 100644 index 0000000..410f086 --- /dev/null +++ b/target/release/.fingerprint/itertools-43b1aade48ea646f/lib-itertools @@ -0,0 +1 @@ +43e68f805b7fb3f3 \ No newline at end of file diff --git a/target/release/.fingerprint/itertools-43b1aade48ea646f/lib-itertools.json b/target/release/.fingerprint/itertools-43b1aade48ea646f/lib-itertools.json new file mode 100644 index 0000000..edd5c7e --- /dev/null +++ b/target/release/.fingerprint/itertools-43b1aade48ea646f/lib-itertools.json @@ -0,0 +1 @@ +{"rustc":18276270781310494267,"features":"[\"default\", \"use_alloc\", \"use_std\"]","declared_features":"[\"default\", \"use_alloc\", \"use_std\"]","target":9541170365560449339,"profile":2040997289075261528,"path":13296737848124220085,"deps":[[12170264697963848012,"either",false,16382720860661808770]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/itertools-43b1aade48ea646f/dep-lib-itertools","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/itoa-a082cc022f711fd0/dep-lib-itoa b/target/release/.fingerprint/itoa-a082cc022f711fd0/dep-lib-itoa new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/target/release/.fingerprint/itoa-a082cc022f711fd0/dep-lib-itoa differ diff --git a/target/release/.fingerprint/itoa-a082cc022f711fd0/invoked.timestamp b/target/release/.fingerprint/itoa-a082cc022f711fd0/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/itoa-a082cc022f711fd0/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/itoa-a082cc022f711fd0/lib-itoa b/target/release/.fingerprint/itoa-a082cc022f711fd0/lib-itoa new file mode 100644 index 0000000..af54527 --- /dev/null +++ b/target/release/.fingerprint/itoa-a082cc022f711fd0/lib-itoa @@ -0,0 +1 @@ +9f4d9507964d32a1 \ No newline at end of file diff --git a/target/release/.fingerprint/itoa-a082cc022f711fd0/lib-itoa.json b/target/release/.fingerprint/itoa-a082cc022f711fd0/lib-itoa.json new file mode 100644 index 0000000..65715c6 --- /dev/null +++ b/target/release/.fingerprint/itoa-a082cc022f711fd0/lib-itoa.json @@ -0,0 +1 @@ +{"rustc":18276270781310494267,"features":"[]","declared_features":"[\"no-panic\"]","target":18426369533666673425,"profile":2040997289075261528,"path":11864938241307894743,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/itoa-a082cc022f711fd0/dep-lib-itoa","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/memchr-fc42ddedcb567bdb/dep-lib-memchr b/target/release/.fingerprint/memchr-fc42ddedcb567bdb/dep-lib-memchr new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/target/release/.fingerprint/memchr-fc42ddedcb567bdb/dep-lib-memchr differ diff --git a/target/release/.fingerprint/memchr-fc42ddedcb567bdb/invoked.timestamp b/target/release/.fingerprint/memchr-fc42ddedcb567bdb/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/memchr-fc42ddedcb567bdb/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/memchr-fc42ddedcb567bdb/lib-memchr b/target/release/.fingerprint/memchr-fc42ddedcb567bdb/lib-memchr new file mode 100644 index 0000000..155cf72 --- /dev/null +++ b/target/release/.fingerprint/memchr-fc42ddedcb567bdb/lib-memchr @@ -0,0 +1 @@ +7b490bf70d81866b \ No newline at end of file diff --git a/target/release/.fingerprint/memchr-fc42ddedcb567bdb/lib-memchr.json b/target/release/.fingerprint/memchr-fc42ddedcb567bdb/lib-memchr.json new file mode 100644 index 0000000..cc9feb2 --- /dev/null +++ b/target/release/.fingerprint/memchr-fc42ddedcb567bdb/lib-memchr.json @@ -0,0 +1 @@ +{"rustc":18276270781310494267,"features":"[\"alloc\", \"std\"]","declared_features":"[\"alloc\", \"core\", \"default\", \"libc\", \"logging\", \"rustc-dep-of-std\", \"std\", \"use_std\"]","target":11745930252914242013,"profile":2040997289075261528,"path":16895211657834706883,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/memchr-fc42ddedcb567bdb/dep-lib-memchr","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/num-traits-2d2d9acd04073d01/build-script-build-script-build b/target/release/.fingerprint/num-traits-2d2d9acd04073d01/build-script-build-script-build new file mode 100644 index 0000000..9114bd6 --- /dev/null +++ b/target/release/.fingerprint/num-traits-2d2d9acd04073d01/build-script-build-script-build @@ -0,0 +1 @@ +83d27ecee4cdcad3 \ No newline at end of file diff --git a/target/release/.fingerprint/num-traits-2d2d9acd04073d01/build-script-build-script-build.json b/target/release/.fingerprint/num-traits-2d2d9acd04073d01/build-script-build-script-build.json new file mode 100644 index 0000000..8eb5fcf --- /dev/null +++ b/target/release/.fingerprint/num-traits-2d2d9acd04073d01/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":18276270781310494267,"features":"[\"default\", \"std\"]","declared_features":"[\"default\", \"i128\", \"libm\", \"std\"]","target":5408242616063297496,"profile":1369601567987815722,"path":18363858542575419356,"deps":[[13927012481677012980,"autocfg",false,12604445932270792230]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/num-traits-2d2d9acd04073d01/dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/num-traits-2d2d9acd04073d01/dep-build-script-build-script-build b/target/release/.fingerprint/num-traits-2d2d9acd04073d01/dep-build-script-build-script-build new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/target/release/.fingerprint/num-traits-2d2d9acd04073d01/dep-build-script-build-script-build differ diff --git a/target/release/.fingerprint/num-traits-2d2d9acd04073d01/invoked.timestamp b/target/release/.fingerprint/num-traits-2d2d9acd04073d01/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/num-traits-2d2d9acd04073d01/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/num-traits-5e974386bd68af7a/run-build-script-build-script-build b/target/release/.fingerprint/num-traits-5e974386bd68af7a/run-build-script-build-script-build new file mode 100644 index 0000000..1f1a2ac --- /dev/null +++ b/target/release/.fingerprint/num-traits-5e974386bd68af7a/run-build-script-build-script-build @@ -0,0 +1 @@ +cb8dd48bb8431123 \ No newline at end of file diff --git a/target/release/.fingerprint/num-traits-5e974386bd68af7a/run-build-script-build-script-build.json b/target/release/.fingerprint/num-traits-5e974386bd68af7a/run-build-script-build-script-build.json new file mode 100644 index 0000000..1d64ff5 --- /dev/null +++ b/target/release/.fingerprint/num-traits-5e974386bd68af7a/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":18276270781310494267,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[5157631553186200874,"build_script_build",false,15261236669899002499]],"local":[{"RerunIfChanged":{"output":"release/build/num-traits-5e974386bd68af7a/output","paths":["build.rs"]}}],"rustflags":[],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/num-traits-b12829f3a5a2fac8/dep-lib-num_traits b/target/release/.fingerprint/num-traits-b12829f3a5a2fac8/dep-lib-num_traits new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/target/release/.fingerprint/num-traits-b12829f3a5a2fac8/dep-lib-num_traits differ diff --git a/target/release/.fingerprint/num-traits-b12829f3a5a2fac8/invoked.timestamp b/target/release/.fingerprint/num-traits-b12829f3a5a2fac8/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/num-traits-b12829f3a5a2fac8/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/num-traits-b12829f3a5a2fac8/lib-num_traits b/target/release/.fingerprint/num-traits-b12829f3a5a2fac8/lib-num_traits new file mode 100644 index 0000000..65efb5e --- /dev/null +++ b/target/release/.fingerprint/num-traits-b12829f3a5a2fac8/lib-num_traits @@ -0,0 +1 @@ +672cef8e4cec70ba \ No newline at end of file diff --git a/target/release/.fingerprint/num-traits-b12829f3a5a2fac8/lib-num_traits.json b/target/release/.fingerprint/num-traits-b12829f3a5a2fac8/lib-num_traits.json new file mode 100644 index 0000000..8f5d543 --- /dev/null +++ b/target/release/.fingerprint/num-traits-b12829f3a5a2fac8/lib-num_traits.json @@ -0,0 +1 @@ +{"rustc":18276270781310494267,"features":"[\"default\", \"std\"]","declared_features":"[\"default\", \"i128\", \"libm\", \"std\"]","target":4278088450330190724,"profile":2040997289075261528,"path":1726604980410340097,"deps":[[5157631553186200874,"build_script_build",false,2526875325830565323]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/num-traits-b12829f3a5a2fac8/dep-lib-num_traits","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/oorandom-9a3fc14511e7c650/dep-lib-oorandom b/target/release/.fingerprint/oorandom-9a3fc14511e7c650/dep-lib-oorandom new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/target/release/.fingerprint/oorandom-9a3fc14511e7c650/dep-lib-oorandom differ diff --git a/target/release/.fingerprint/oorandom-9a3fc14511e7c650/invoked.timestamp b/target/release/.fingerprint/oorandom-9a3fc14511e7c650/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/oorandom-9a3fc14511e7c650/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/oorandom-9a3fc14511e7c650/lib-oorandom b/target/release/.fingerprint/oorandom-9a3fc14511e7c650/lib-oorandom new file mode 100644 index 0000000..e6ad79b --- /dev/null +++ b/target/release/.fingerprint/oorandom-9a3fc14511e7c650/lib-oorandom @@ -0,0 +1 @@ +86827d2cc498fc69 \ No newline at end of file diff --git a/target/release/.fingerprint/oorandom-9a3fc14511e7c650/lib-oorandom.json b/target/release/.fingerprint/oorandom-9a3fc14511e7c650/lib-oorandom.json new file mode 100644 index 0000000..d4d00e6 --- /dev/null +++ b/target/release/.fingerprint/oorandom-9a3fc14511e7c650/lib-oorandom.json @@ -0,0 +1 @@ +{"rustc":18276270781310494267,"features":"[]","declared_features":"[]","target":10218015127956776452,"profile":2040997289075261528,"path":15514024069446319228,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/oorandom-9a3fc14511e7c650/dep-lib-oorandom","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/openvx-buffer-128223b2e1f63b9d/dep-lib-openvx_buffer b/target/release/.fingerprint/openvx-buffer-128223b2e1f63b9d/dep-lib-openvx_buffer new file mode 100644 index 0000000..477a64f Binary files /dev/null and b/target/release/.fingerprint/openvx-buffer-128223b2e1f63b9d/dep-lib-openvx_buffer differ diff --git a/target/release/.fingerprint/openvx-buffer-128223b2e1f63b9d/invoked.timestamp b/target/release/.fingerprint/openvx-buffer-128223b2e1f63b9d/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/openvx-buffer-128223b2e1f63b9d/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/openvx-buffer-128223b2e1f63b9d/lib-openvx_buffer b/target/release/.fingerprint/openvx-buffer-128223b2e1f63b9d/lib-openvx_buffer new file mode 100644 index 0000000..ef5c844 --- /dev/null +++ b/target/release/.fingerprint/openvx-buffer-128223b2e1f63b9d/lib-openvx_buffer @@ -0,0 +1 @@ +38b32181d75e2ac0 \ No newline at end of file diff --git a/target/release/.fingerprint/openvx-buffer-128223b2e1f63b9d/lib-openvx_buffer.json b/target/release/.fingerprint/openvx-buffer-128223b2e1f63b9d/lib-openvx_buffer.json new file mode 100644 index 0000000..961cc23 --- /dev/null +++ b/target/release/.fingerprint/openvx-buffer-128223b2e1f63b9d/lib-openvx_buffer.json @@ -0,0 +1 @@ +{"rustc":18276270781310494267,"features":"[]","declared_features":"[]","target":6591159341453408700,"profile":2040997289075261528,"path":15201106698982548229,"deps":[[4809150008149002099,"openvx_core",false,9470229054341921098]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/openvx-buffer-128223b2e1f63b9d/dep-lib-openvx_buffer","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/openvx-buffer-128223b2e1f63b9d/output-lib-openvx_buffer b/target/release/.fingerprint/openvx-buffer-128223b2e1f63b9d/output-lib-openvx_buffer new file mode 100644 index 0000000..408e285 --- /dev/null +++ b/target/release/.fingerprint/openvx-buffer-128223b2e1f63b9d/output-lib-openvx_buffer @@ -0,0 +1,6 @@ +{"$message_type":"diagnostic","message":"unused imports: `VX_READ_AND_WRITE`, `VX_READ_ONLY`, and `VX_WRITE_ONLY`","code":{"code":"unused_imports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-buffer/src/c_api.rs","byte_start":558,"byte_end":570,"line_start":13,"line_end":13,"column_start":5,"column_end":17,"is_primary":true,"text":[{"text":" VX_READ_ONLY, VX_WRITE_ONLY, VX_READ_AND_WRITE, VX_MEMORY_TYPE_HOST, VX_MEMORY_TYPE_NONE,","highlight_start":5,"highlight_end":17}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-buffer/src/c_api.rs","byte_start":572,"byte_end":585,"line_start":13,"line_end":13,"column_start":19,"column_end":32,"is_primary":true,"text":[{"text":" VX_READ_ONLY, VX_WRITE_ONLY, VX_READ_AND_WRITE, VX_MEMORY_TYPE_HOST, VX_MEMORY_TYPE_NONE,","highlight_start":19,"highlight_end":32}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-buffer/src/c_api.rs","byte_start":587,"byte_end":604,"line_start":13,"line_end":13,"column_start":34,"column_end":51,"is_primary":true,"text":[{"text":" VX_READ_ONLY, VX_WRITE_ONLY, VX_READ_AND_WRITE, VX_MEMORY_TYPE_HOST, VX_MEMORY_TYPE_NONE,","highlight_start":34,"highlight_end":51}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(unused_imports)]` (part of `#[warn(unused)]`) on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"remove the unused imports","code":null,"level":"help","spans":[{"file_name":"openvx-buffer/src/c_api.rs","byte_start":552,"byte_end":604,"line_start":12,"line_end":13,"column_start":79,"column_end":51,"is_primary":true,"text":[{"text":" VX_ARRAY_CAPACITY, VX_ARRAY_ITEMTYPE, VX_ARRAY_NUMITEMS, VX_ARRAY_ITEMSIZE,","highlight_start":79,"highlight_end":80},{"text":" VX_READ_ONLY, VX_WRITE_ONLY, VX_READ_AND_WRITE, VX_MEMORY_TYPE_HOST, VX_MEMORY_TYPE_NONE,","highlight_start":1,"highlight_end":51}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused imports: `VX_READ_AND_WRITE`, `VX_READ_ONLY`, and `VX_WRITE_ONLY`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-buffer/src/c_api.rs:13:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m13\u001b[0m \u001b[1m\u001b[94m|\u001b[0m VX_READ_ONLY, VX_WRITE_ONLY, VX_READ_AND_WRITE, VX_MEMORY_TYPE_HOST, VX_MEMORY_TYPE_NONE,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m= \u001b[0m\u001b[1mnote\u001b[0m: `#[warn(unused_imports)]` (part of `#[warn(unused)]`) on by default\n\n"} +{"$message_type":"diagnostic","message":"unused import: `std::sync::Mutex`","code":{"code":"unused_imports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-buffer/src/c_api.rs","byte_start":1942,"byte_end":1958,"line_start":55,"line_end":55,"column_start":5,"column_end":21,"is_primary":true,"text":[{"text":"use std::sync::Mutex;","highlight_start":5,"highlight_end":21}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"remove the whole `use` item","code":null,"level":"help","spans":[{"file_name":"openvx-buffer/src/c_api.rs","byte_start":1938,"byte_end":1960,"line_start":55,"line_end":56,"column_start":1,"column_end":1,"is_primary":true,"text":[{"text":"use std::sync::Mutex;","highlight_start":1,"highlight_end":22},{"text":"static ARRAY_ID_COUNTER: AtomicUsize = AtomicUsize::new(1);","highlight_start":1,"highlight_end":1}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused import: `std::sync::Mutex`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-buffer/src/c_api.rs:55:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m55\u001b[0m \u001b[1m\u001b[94m|\u001b[0m use std::sync::Mutex;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unnecessary `unsafe` block","code":{"code":"unused_unsafe","explanation":null},"level":"warning","spans":[{"file_name":"openvx-buffer/src/c_api.rs","byte_start":2934,"byte_end":2940,"line_start":94,"line_end":94,"column_start":5,"column_end":11,"is_primary":true,"text":[{"text":" unsafe {","highlight_start":5,"highlight_end":11}],"label":"unnecessary `unsafe` block","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(unused_unsafe)]` (part of `#[warn(unused)]`) on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unnecessary `unsafe` block\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-buffer/src/c_api.rs:94:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m94\u001b[0m \u001b[1m\u001b[94m|\u001b[0m unsafe {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m \u001b[1m\u001b[33munnecessary `unsafe` block\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m= \u001b[0m\u001b[1mnote\u001b[0m: `#[warn(unused_unsafe)]` (part of `#[warn(unused)]`) on by default\n\n"} +{"$message_type":"diagnostic","message":"unnecessary `unsafe` block","code":{"code":"unused_unsafe","explanation":null},"level":"warning","spans":[{"file_name":"openvx-buffer/src/c_api.rs","byte_start":3148,"byte_end":3154,"line_start":101,"line_end":101,"column_start":5,"column_end":11,"is_primary":true,"text":[{"text":" unsafe {","highlight_start":5,"highlight_end":11}],"label":"unnecessary `unsafe` block","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unnecessary `unsafe` block\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-buffer/src/c_api.rs:101:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m101\u001b[0m \u001b[1m\u001b[94m|\u001b[0m unsafe {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m \u001b[1m\u001b[33munnecessary `unsafe` block\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"field `context` is never read","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-buffer/src/c_api.rs","byte_start":861,"byte_end":869,"line_start":19,"line_end":19,"column_start":12,"column_end":20,"is_primary":false,"text":[{"text":"pub struct VxCArray {","highlight_start":12,"highlight_end":20}],"label":"field in this struct","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-buffer/src/c_api.rs","byte_start":1006,"byte_end":1013,"line_start":25,"line_end":25,"column_start":5,"column_end":12,"is_primary":true,"text":[{"text":" context: vx_context,","highlight_start":5,"highlight_end":12}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(dead_code)]` (part of `#[warn(unused)]`) on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: field `context` is never read\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-buffer/src/c_api.rs:25:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m19\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub struct VxCArray {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m--------\u001b[0m \u001b[1m\u001b[94mfield in this struct\u001b[0m\n\u001b[1m\u001b[94m...\u001b[0m\n\u001b[1m\u001b[94m25\u001b[0m \u001b[1m\u001b[94m|\u001b[0m context: vx_context,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m= \u001b[0m\u001b[1mnote\u001b[0m: `#[warn(dead_code)]` (part of `#[warn(unused)]`) on by default\n\n"} +{"$message_type":"diagnostic","message":"5 warnings emitted","code":null,"level":"warning","spans":[],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: 5 warnings emitted\u001b[0m\n\n"} diff --git a/target/release/.fingerprint/openvx-buffer-199f36f5e80c1d00/dep-test-lib-openvx_buffer b/target/release/.fingerprint/openvx-buffer-199f36f5e80c1d00/dep-test-lib-openvx_buffer new file mode 100644 index 0000000..f5f4d07 Binary files /dev/null and b/target/release/.fingerprint/openvx-buffer-199f36f5e80c1d00/dep-test-lib-openvx_buffer differ diff --git a/target/release/.fingerprint/openvx-buffer-199f36f5e80c1d00/invoked.timestamp b/target/release/.fingerprint/openvx-buffer-199f36f5e80c1d00/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/openvx-buffer-199f36f5e80c1d00/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/openvx-buffer-199f36f5e80c1d00/output-test-lib-openvx_buffer b/target/release/.fingerprint/openvx-buffer-199f36f5e80c1d00/output-test-lib-openvx_buffer new file mode 100644 index 0000000..408e285 --- /dev/null +++ b/target/release/.fingerprint/openvx-buffer-199f36f5e80c1d00/output-test-lib-openvx_buffer @@ -0,0 +1,6 @@ +{"$message_type":"diagnostic","message":"unused imports: `VX_READ_AND_WRITE`, `VX_READ_ONLY`, and `VX_WRITE_ONLY`","code":{"code":"unused_imports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-buffer/src/c_api.rs","byte_start":558,"byte_end":570,"line_start":13,"line_end":13,"column_start":5,"column_end":17,"is_primary":true,"text":[{"text":" VX_READ_ONLY, VX_WRITE_ONLY, VX_READ_AND_WRITE, VX_MEMORY_TYPE_HOST, VX_MEMORY_TYPE_NONE,","highlight_start":5,"highlight_end":17}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-buffer/src/c_api.rs","byte_start":572,"byte_end":585,"line_start":13,"line_end":13,"column_start":19,"column_end":32,"is_primary":true,"text":[{"text":" VX_READ_ONLY, VX_WRITE_ONLY, VX_READ_AND_WRITE, VX_MEMORY_TYPE_HOST, VX_MEMORY_TYPE_NONE,","highlight_start":19,"highlight_end":32}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-buffer/src/c_api.rs","byte_start":587,"byte_end":604,"line_start":13,"line_end":13,"column_start":34,"column_end":51,"is_primary":true,"text":[{"text":" VX_READ_ONLY, VX_WRITE_ONLY, VX_READ_AND_WRITE, VX_MEMORY_TYPE_HOST, VX_MEMORY_TYPE_NONE,","highlight_start":34,"highlight_end":51}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(unused_imports)]` (part of `#[warn(unused)]`) on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"remove the unused imports","code":null,"level":"help","spans":[{"file_name":"openvx-buffer/src/c_api.rs","byte_start":552,"byte_end":604,"line_start":12,"line_end":13,"column_start":79,"column_end":51,"is_primary":true,"text":[{"text":" VX_ARRAY_CAPACITY, VX_ARRAY_ITEMTYPE, VX_ARRAY_NUMITEMS, VX_ARRAY_ITEMSIZE,","highlight_start":79,"highlight_end":80},{"text":" VX_READ_ONLY, VX_WRITE_ONLY, VX_READ_AND_WRITE, VX_MEMORY_TYPE_HOST, VX_MEMORY_TYPE_NONE,","highlight_start":1,"highlight_end":51}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused imports: `VX_READ_AND_WRITE`, `VX_READ_ONLY`, and `VX_WRITE_ONLY`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-buffer/src/c_api.rs:13:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m13\u001b[0m \u001b[1m\u001b[94m|\u001b[0m VX_READ_ONLY, VX_WRITE_ONLY, VX_READ_AND_WRITE, VX_MEMORY_TYPE_HOST, VX_MEMORY_TYPE_NONE,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m= \u001b[0m\u001b[1mnote\u001b[0m: `#[warn(unused_imports)]` (part of `#[warn(unused)]`) on by default\n\n"} +{"$message_type":"diagnostic","message":"unused import: `std::sync::Mutex`","code":{"code":"unused_imports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-buffer/src/c_api.rs","byte_start":1942,"byte_end":1958,"line_start":55,"line_end":55,"column_start":5,"column_end":21,"is_primary":true,"text":[{"text":"use std::sync::Mutex;","highlight_start":5,"highlight_end":21}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"remove the whole `use` item","code":null,"level":"help","spans":[{"file_name":"openvx-buffer/src/c_api.rs","byte_start":1938,"byte_end":1960,"line_start":55,"line_end":56,"column_start":1,"column_end":1,"is_primary":true,"text":[{"text":"use std::sync::Mutex;","highlight_start":1,"highlight_end":22},{"text":"static ARRAY_ID_COUNTER: AtomicUsize = AtomicUsize::new(1);","highlight_start":1,"highlight_end":1}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused import: `std::sync::Mutex`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-buffer/src/c_api.rs:55:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m55\u001b[0m \u001b[1m\u001b[94m|\u001b[0m use std::sync::Mutex;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unnecessary `unsafe` block","code":{"code":"unused_unsafe","explanation":null},"level":"warning","spans":[{"file_name":"openvx-buffer/src/c_api.rs","byte_start":2934,"byte_end":2940,"line_start":94,"line_end":94,"column_start":5,"column_end":11,"is_primary":true,"text":[{"text":" unsafe {","highlight_start":5,"highlight_end":11}],"label":"unnecessary `unsafe` block","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(unused_unsafe)]` (part of `#[warn(unused)]`) on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unnecessary `unsafe` block\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-buffer/src/c_api.rs:94:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m94\u001b[0m \u001b[1m\u001b[94m|\u001b[0m unsafe {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m \u001b[1m\u001b[33munnecessary `unsafe` block\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m= \u001b[0m\u001b[1mnote\u001b[0m: `#[warn(unused_unsafe)]` (part of `#[warn(unused)]`) on by default\n\n"} +{"$message_type":"diagnostic","message":"unnecessary `unsafe` block","code":{"code":"unused_unsafe","explanation":null},"level":"warning","spans":[{"file_name":"openvx-buffer/src/c_api.rs","byte_start":3148,"byte_end":3154,"line_start":101,"line_end":101,"column_start":5,"column_end":11,"is_primary":true,"text":[{"text":" unsafe {","highlight_start":5,"highlight_end":11}],"label":"unnecessary `unsafe` block","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unnecessary `unsafe` block\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-buffer/src/c_api.rs:101:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m101\u001b[0m \u001b[1m\u001b[94m|\u001b[0m unsafe {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m \u001b[1m\u001b[33munnecessary `unsafe` block\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"field `context` is never read","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-buffer/src/c_api.rs","byte_start":861,"byte_end":869,"line_start":19,"line_end":19,"column_start":12,"column_end":20,"is_primary":false,"text":[{"text":"pub struct VxCArray {","highlight_start":12,"highlight_end":20}],"label":"field in this struct","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-buffer/src/c_api.rs","byte_start":1006,"byte_end":1013,"line_start":25,"line_end":25,"column_start":5,"column_end":12,"is_primary":true,"text":[{"text":" context: vx_context,","highlight_start":5,"highlight_end":12}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(dead_code)]` (part of `#[warn(unused)]`) on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: field `context` is never read\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-buffer/src/c_api.rs:25:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m19\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub struct VxCArray {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m--------\u001b[0m \u001b[1m\u001b[94mfield in this struct\u001b[0m\n\u001b[1m\u001b[94m...\u001b[0m\n\u001b[1m\u001b[94m25\u001b[0m \u001b[1m\u001b[94m|\u001b[0m context: vx_context,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m= \u001b[0m\u001b[1mnote\u001b[0m: `#[warn(dead_code)]` (part of `#[warn(unused)]`) on by default\n\n"} +{"$message_type":"diagnostic","message":"5 warnings emitted","code":null,"level":"warning","spans":[],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: 5 warnings emitted\u001b[0m\n\n"} diff --git a/target/release/.fingerprint/openvx-buffer-199f36f5e80c1d00/test-lib-openvx_buffer b/target/release/.fingerprint/openvx-buffer-199f36f5e80c1d00/test-lib-openvx_buffer new file mode 100644 index 0000000..1aecaed --- /dev/null +++ b/target/release/.fingerprint/openvx-buffer-199f36f5e80c1d00/test-lib-openvx_buffer @@ -0,0 +1 @@ +99eb7b02b6f8dacf \ No newline at end of file diff --git a/target/release/.fingerprint/openvx-buffer-199f36f5e80c1d00/test-lib-openvx_buffer.json b/target/release/.fingerprint/openvx-buffer-199f36f5e80c1d00/test-lib-openvx_buffer.json new file mode 100644 index 0000000..ff691de --- /dev/null +++ b/target/release/.fingerprint/openvx-buffer-199f36f5e80c1d00/test-lib-openvx_buffer.json @@ -0,0 +1 @@ +{"rustc":18276270781310494267,"features":"[]","declared_features":"[]","target":6591159341453408700,"profile":10220379689200424945,"path":15201106698982548229,"deps":[[4809150008149002099,"openvx_core",false,12695232944250483106]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/openvx-buffer-199f36f5e80c1d00/dep-test-lib-openvx_buffer","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/openvx-buffer-4e6847c1bb1f920a/dep-lib-openvx_buffer b/target/release/.fingerprint/openvx-buffer-4e6847c1bb1f920a/dep-lib-openvx_buffer new file mode 100644 index 0000000..f5f4d07 Binary files /dev/null and b/target/release/.fingerprint/openvx-buffer-4e6847c1bb1f920a/dep-lib-openvx_buffer differ diff --git a/target/release/.fingerprint/openvx-buffer-4e6847c1bb1f920a/invoked.timestamp b/target/release/.fingerprint/openvx-buffer-4e6847c1bb1f920a/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/openvx-buffer-4e6847c1bb1f920a/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/openvx-buffer-4e6847c1bb1f920a/lib-openvx_buffer b/target/release/.fingerprint/openvx-buffer-4e6847c1bb1f920a/lib-openvx_buffer new file mode 100644 index 0000000..ed68bcd --- /dev/null +++ b/target/release/.fingerprint/openvx-buffer-4e6847c1bb1f920a/lib-openvx_buffer @@ -0,0 +1 @@ +63538108f843f0a8 \ No newline at end of file diff --git a/target/release/.fingerprint/openvx-buffer-4e6847c1bb1f920a/lib-openvx_buffer.json b/target/release/.fingerprint/openvx-buffer-4e6847c1bb1f920a/lib-openvx_buffer.json new file mode 100644 index 0000000..421fe79 --- /dev/null +++ b/target/release/.fingerprint/openvx-buffer-4e6847c1bb1f920a/lib-openvx_buffer.json @@ -0,0 +1 @@ +{"rustc":18276270781310494267,"features":"[]","declared_features":"[]","target":6591159341453408700,"profile":2040997289075261528,"path":15201106698982548229,"deps":[[4809150008149002099,"openvx_core",false,12695232944250483106]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/openvx-buffer-4e6847c1bb1f920a/dep-lib-openvx_buffer","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/openvx-buffer-4e6847c1bb1f920a/output-lib-openvx_buffer b/target/release/.fingerprint/openvx-buffer-4e6847c1bb1f920a/output-lib-openvx_buffer new file mode 100644 index 0000000..408e285 --- /dev/null +++ b/target/release/.fingerprint/openvx-buffer-4e6847c1bb1f920a/output-lib-openvx_buffer @@ -0,0 +1,6 @@ +{"$message_type":"diagnostic","message":"unused imports: `VX_READ_AND_WRITE`, `VX_READ_ONLY`, and `VX_WRITE_ONLY`","code":{"code":"unused_imports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-buffer/src/c_api.rs","byte_start":558,"byte_end":570,"line_start":13,"line_end":13,"column_start":5,"column_end":17,"is_primary":true,"text":[{"text":" VX_READ_ONLY, VX_WRITE_ONLY, VX_READ_AND_WRITE, VX_MEMORY_TYPE_HOST, VX_MEMORY_TYPE_NONE,","highlight_start":5,"highlight_end":17}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-buffer/src/c_api.rs","byte_start":572,"byte_end":585,"line_start":13,"line_end":13,"column_start":19,"column_end":32,"is_primary":true,"text":[{"text":" VX_READ_ONLY, VX_WRITE_ONLY, VX_READ_AND_WRITE, VX_MEMORY_TYPE_HOST, VX_MEMORY_TYPE_NONE,","highlight_start":19,"highlight_end":32}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-buffer/src/c_api.rs","byte_start":587,"byte_end":604,"line_start":13,"line_end":13,"column_start":34,"column_end":51,"is_primary":true,"text":[{"text":" VX_READ_ONLY, VX_WRITE_ONLY, VX_READ_AND_WRITE, VX_MEMORY_TYPE_HOST, VX_MEMORY_TYPE_NONE,","highlight_start":34,"highlight_end":51}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(unused_imports)]` (part of `#[warn(unused)]`) on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"remove the unused imports","code":null,"level":"help","spans":[{"file_name":"openvx-buffer/src/c_api.rs","byte_start":552,"byte_end":604,"line_start":12,"line_end":13,"column_start":79,"column_end":51,"is_primary":true,"text":[{"text":" VX_ARRAY_CAPACITY, VX_ARRAY_ITEMTYPE, VX_ARRAY_NUMITEMS, VX_ARRAY_ITEMSIZE,","highlight_start":79,"highlight_end":80},{"text":" VX_READ_ONLY, VX_WRITE_ONLY, VX_READ_AND_WRITE, VX_MEMORY_TYPE_HOST, VX_MEMORY_TYPE_NONE,","highlight_start":1,"highlight_end":51}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused imports: `VX_READ_AND_WRITE`, `VX_READ_ONLY`, and `VX_WRITE_ONLY`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-buffer/src/c_api.rs:13:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m13\u001b[0m \u001b[1m\u001b[94m|\u001b[0m VX_READ_ONLY, VX_WRITE_ONLY, VX_READ_AND_WRITE, VX_MEMORY_TYPE_HOST, VX_MEMORY_TYPE_NONE,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m= \u001b[0m\u001b[1mnote\u001b[0m: `#[warn(unused_imports)]` (part of `#[warn(unused)]`) on by default\n\n"} +{"$message_type":"diagnostic","message":"unused import: `std::sync::Mutex`","code":{"code":"unused_imports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-buffer/src/c_api.rs","byte_start":1942,"byte_end":1958,"line_start":55,"line_end":55,"column_start":5,"column_end":21,"is_primary":true,"text":[{"text":"use std::sync::Mutex;","highlight_start":5,"highlight_end":21}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"remove the whole `use` item","code":null,"level":"help","spans":[{"file_name":"openvx-buffer/src/c_api.rs","byte_start":1938,"byte_end":1960,"line_start":55,"line_end":56,"column_start":1,"column_end":1,"is_primary":true,"text":[{"text":"use std::sync::Mutex;","highlight_start":1,"highlight_end":22},{"text":"static ARRAY_ID_COUNTER: AtomicUsize = AtomicUsize::new(1);","highlight_start":1,"highlight_end":1}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused import: `std::sync::Mutex`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-buffer/src/c_api.rs:55:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m55\u001b[0m \u001b[1m\u001b[94m|\u001b[0m use std::sync::Mutex;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unnecessary `unsafe` block","code":{"code":"unused_unsafe","explanation":null},"level":"warning","spans":[{"file_name":"openvx-buffer/src/c_api.rs","byte_start":2934,"byte_end":2940,"line_start":94,"line_end":94,"column_start":5,"column_end":11,"is_primary":true,"text":[{"text":" unsafe {","highlight_start":5,"highlight_end":11}],"label":"unnecessary `unsafe` block","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(unused_unsafe)]` (part of `#[warn(unused)]`) on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unnecessary `unsafe` block\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-buffer/src/c_api.rs:94:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m94\u001b[0m \u001b[1m\u001b[94m|\u001b[0m unsafe {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m \u001b[1m\u001b[33munnecessary `unsafe` block\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m= \u001b[0m\u001b[1mnote\u001b[0m: `#[warn(unused_unsafe)]` (part of `#[warn(unused)]`) on by default\n\n"} +{"$message_type":"diagnostic","message":"unnecessary `unsafe` block","code":{"code":"unused_unsafe","explanation":null},"level":"warning","spans":[{"file_name":"openvx-buffer/src/c_api.rs","byte_start":3148,"byte_end":3154,"line_start":101,"line_end":101,"column_start":5,"column_end":11,"is_primary":true,"text":[{"text":" unsafe {","highlight_start":5,"highlight_end":11}],"label":"unnecessary `unsafe` block","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unnecessary `unsafe` block\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-buffer/src/c_api.rs:101:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m101\u001b[0m \u001b[1m\u001b[94m|\u001b[0m unsafe {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m \u001b[1m\u001b[33munnecessary `unsafe` block\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"field `context` is never read","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-buffer/src/c_api.rs","byte_start":861,"byte_end":869,"line_start":19,"line_end":19,"column_start":12,"column_end":20,"is_primary":false,"text":[{"text":"pub struct VxCArray {","highlight_start":12,"highlight_end":20}],"label":"field in this struct","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-buffer/src/c_api.rs","byte_start":1006,"byte_end":1013,"line_start":25,"line_end":25,"column_start":5,"column_end":12,"is_primary":true,"text":[{"text":" context: vx_context,","highlight_start":5,"highlight_end":12}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(dead_code)]` (part of `#[warn(unused)]`) on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: field `context` is never read\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-buffer/src/c_api.rs:25:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m19\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub struct VxCArray {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m--------\u001b[0m \u001b[1m\u001b[94mfield in this struct\u001b[0m\n\u001b[1m\u001b[94m...\u001b[0m\n\u001b[1m\u001b[94m25\u001b[0m \u001b[1m\u001b[94m|\u001b[0m context: vx_context,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m= \u001b[0m\u001b[1mnote\u001b[0m: `#[warn(dead_code)]` (part of `#[warn(unused)]`) on by default\n\n"} +{"$message_type":"diagnostic","message":"5 warnings emitted","code":null,"level":"warning","spans":[],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: 5 warnings emitted\u001b[0m\n\n"} diff --git a/target/release/.fingerprint/openvx-core-2aca26941ac0a37f/dep-lib-openvx_core b/target/release/.fingerprint/openvx-core-2aca26941ac0a37f/dep-lib-openvx_core index e48e33e..2cda155 100644 Binary files a/target/release/.fingerprint/openvx-core-2aca26941ac0a37f/dep-lib-openvx_core and b/target/release/.fingerprint/openvx-core-2aca26941ac0a37f/dep-lib-openvx_core differ diff --git a/target/release/.fingerprint/openvx-core-2aca26941ac0a37f/lib-openvx_core b/target/release/.fingerprint/openvx-core-2aca26941ac0a37f/lib-openvx_core index b8272a0..02bbdb3 100644 --- a/target/release/.fingerprint/openvx-core-2aca26941ac0a37f/lib-openvx_core +++ b/target/release/.fingerprint/openvx-core-2aca26941ac0a37f/lib-openvx_core @@ -1 +1,5 @@ -66c57fee548eb66a \ No newline at end of file +<<<<<<< HEAD +4a39a24526036d83 +======= +66c57fee548eb66a +>>>>>>> origin/master diff --git a/target/release/.fingerprint/openvx-core-2aca26941ac0a37f/lib-openvx_core.json b/target/release/.fingerprint/openvx-core-2aca26941ac0a37f/lib-openvx_core.json index a4521ce..347a80b 100644 --- a/target/release/.fingerprint/openvx-core-2aca26941ac0a37f/lib-openvx_core.json +++ b/target/release/.fingerprint/openvx-core-2aca26941ac0a37f/lib-openvx_core.json @@ -1 +1,5 @@ -{"rustc":18276270781310494267,"features":"[\"default\"]","declared_features":"[\"c-api\", \"default\"]","target":1909464329141176262,"profile":2040997289075261528,"path":17993126686957639070,"deps":[[5855319743879205494,"once_cell",false,6238387259129243755],[8008191657135824715,"thiserror",false,4941837772727756167],[10630857666389190470,"log",false,1771208510127974518],[12459942763388630573,"parking_lot",false,12109111506902632338],[16532555906320553198,"petgraph",false,16293071769779772861]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/openvx-core-2aca26941ac0a37f/dep-lib-openvx_core","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file +<<<<<<< HEAD +{"rustc":18276270781310494267,"features":"[\"default\"]","declared_features":"[\"c-api\", \"default\"]","target":1909464329141176262,"profile":2040997289075261528,"path":17993126686957639070,"deps":[[5855319743879205494,"once_cell",false,6238387259129243755],[8008191657135824715,"thiserror",false,4941837772727756167],[10630857666389190470,"log",false,1771208510127974518],[12459942763388630573,"parking_lot",false,12109111506902632338],[16532555906320553198,"petgraph",false,11609772400921011127]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/openvx-core-2aca26941ac0a37f/dep-lib-openvx_core","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} +======= +{"rustc":18276270781310494267,"features":"[\"default\"]","declared_features":"[\"c-api\", \"default\"]","target":1909464329141176262,"profile":2040997289075261528,"path":17993126686957639070,"deps":[[5855319743879205494,"once_cell",false,6238387259129243755],[8008191657135824715,"thiserror",false,4941837772727756167],[10630857666389190470,"log",false,1771208510127974518],[12459942763388630573,"parking_lot",false,12109111506902632338],[16532555906320553198,"petgraph",false,16293071769779772861]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/openvx-core-2aca26941ac0a37f/dep-lib-openvx_core","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} +>>>>>>> origin/master diff --git a/target/release/.fingerprint/openvx-core-2aca26941ac0a37f/output-lib-openvx_core b/target/release/.fingerprint/openvx-core-2aca26941ac0a37f/output-lib-openvx_core index 55989d4..ea3c23b 100644 --- a/target/release/.fingerprint/openvx-core-2aca26941ac0a37f/output-lib-openvx_core +++ b/target/release/.fingerprint/openvx-core-2aca26941ac0a37f/output-lib-openvx_core @@ -1,4 +1,45 @@ {"$message_type":"diagnostic","message":"unused import: `VxCGraphData`","code":{"code":"unused_imports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":334,"byte_end":346,"line_start":11,"line_end":11,"column_start":41,"column_end":53,"is_primary":true,"text":[{"text":"use crate::unified_c_api::{GRAPHS_DATA, VxCGraphData};","highlight_start":41,"highlight_end":53}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(unused_imports)]` (part of `#[warn(unused)]`) on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"remove the unused import","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":332,"byte_end":346,"line_start":11,"line_end":11,"column_start":39,"column_end":53,"is_primary":true,"text":[{"text":"use crate::unified_c_api::{GRAPHS_DATA, VxCGraphData};","highlight_start":39,"highlight_end":53}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null},{"file_name":"openvx-core/src/c_api.rs","byte_start":320,"byte_end":321,"line_start":11,"line_end":11,"column_start":27,"column_end":28,"is_primary":true,"text":[{"text":"use crate::unified_c_api::{GRAPHS_DATA, VxCGraphData};","highlight_start":27,"highlight_end":28}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null},{"file_name":"openvx-core/src/c_api.rs","byte_start":346,"byte_end":347,"line_start":11,"line_end":11,"column_start":53,"column_end":54,"is_primary":true,"text":[{"text":"use crate::unified_c_api::{GRAPHS_DATA, VxCGraphData};","highlight_start":53,"highlight_end":54}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused import: `VxCGraphData`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api.rs:11:41\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m11\u001b[0m \u001b[1m\u001b[94m|\u001b[0m use crate::unified_c_api::{GRAPHS_DATA, VxCGraphData};\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m= \u001b[0m\u001b[1mnote\u001b[0m: `#[warn(unused_imports)]` (part of `#[warn(unused)]`) on by default\n\n"} +<<<<<<< HEAD +{"$message_type":"diagnostic","message":"type `vx_status` should have an upper camel case name","code":{"code":"non_camel_case_types","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":678,"byte_end":687,"line_start":20,"line_end":20,"column_start":10,"column_end":19,"is_primary":true,"text":[{"text":"pub type vx_status = i32;","highlight_start":10,"highlight_end":19}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(non_camel_case_types)]` (part of `#[warn(nonstandard_style)]`) on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"convert the identifier to upper camel case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":678,"byte_end":687,"line_start":20,"line_end":20,"column_start":10,"column_end":19,"is_primary":true,"text":[{"text":"pub type vx_status = i32;","highlight_start":10,"highlight_end":19}],"label":null,"suggested_replacement":"VxStatus","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: type `vx_status` should have an upper camel case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api.rs:20:10\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m20\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub type vx_status = i32;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper camel case: `VxStatus`\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m= \u001b[0m\u001b[1mnote\u001b[0m: `#[warn(non_camel_case_types)]` (part of `#[warn(nonstandard_style)]`) on by default\n\n"} +{"$message_type":"diagnostic","message":"type `vx_enum` should have an upper camel case name","code":{"code":"non_camel_case_types","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":704,"byte_end":711,"line_start":21,"line_end":21,"column_start":10,"column_end":17,"is_primary":true,"text":[{"text":"pub type vx_enum = i32;","highlight_start":10,"highlight_end":17}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to upper camel case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":704,"byte_end":711,"line_start":21,"line_end":21,"column_start":10,"column_end":17,"is_primary":true,"text":[{"text":"pub type vx_enum = i32;","highlight_start":10,"highlight_end":17}],"label":null,"suggested_replacement":"VxEnum","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: type `vx_enum` should have an upper camel case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api.rs:21:10\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m21\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub type vx_enum = i32;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper camel case: `VxEnum`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"type `vx_uint32` should have an upper camel case name","code":{"code":"non_camel_case_types","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":728,"byte_end":737,"line_start":22,"line_end":22,"column_start":10,"column_end":19,"is_primary":true,"text":[{"text":"pub type vx_uint32 = u32;","highlight_start":10,"highlight_end":19}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to upper camel case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":728,"byte_end":737,"line_start":22,"line_end":22,"column_start":10,"column_end":19,"is_primary":true,"text":[{"text":"pub type vx_uint32 = u32;","highlight_start":10,"highlight_end":19}],"label":null,"suggested_replacement":"VxUint32","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: type `vx_uint32` should have an upper camel case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api.rs:22:10\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m22\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub type vx_uint32 = u32;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper camel case: `VxUint32`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"type `vx_size` should have an upper camel case name","code":{"code":"non_camel_case_types","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":754,"byte_end":761,"line_start":23,"line_end":23,"column_start":10,"column_end":17,"is_primary":true,"text":[{"text":"pub type vx_size = usize;","highlight_start":10,"highlight_end":17}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to upper camel case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":754,"byte_end":761,"line_start":23,"line_end":23,"column_start":10,"column_end":17,"is_primary":true,"text":[{"text":"pub type vx_size = usize;","highlight_start":10,"highlight_end":17}],"label":null,"suggested_replacement":"VxSize","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: type `vx_size` should have an upper camel case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api.rs:23:10\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m23\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub type vx_size = usize;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper camel case: `VxSize`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"type `vx_char` should have an upper camel case name","code":{"code":"non_camel_case_types","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":780,"byte_end":787,"line_start":24,"line_end":24,"column_start":10,"column_end":17,"is_primary":true,"text":[{"text":"pub type vx_char = i8;","highlight_start":10,"highlight_end":17}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to upper camel case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":780,"byte_end":787,"line_start":24,"line_end":24,"column_start":10,"column_end":17,"is_primary":true,"text":[{"text":"pub type vx_char = i8;","highlight_start":10,"highlight_end":17}],"label":null,"suggested_replacement":"VxChar","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: type `vx_char` should have an upper camel case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api.rs:24:10\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m24\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub type vx_char = i8;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper camel case: `VxChar`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"type `vx_bool` should have an upper camel case name","code":{"code":"non_camel_case_types","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":803,"byte_end":810,"line_start":25,"line_end":25,"column_start":10,"column_end":17,"is_primary":true,"text":[{"text":"pub type vx_bool = i32;","highlight_start":10,"highlight_end":17}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to upper camel case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":803,"byte_end":810,"line_start":25,"line_end":25,"column_start":10,"column_end":17,"is_primary":true,"text":[{"text":"pub type vx_bool = i32;","highlight_start":10,"highlight_end":17}],"label":null,"suggested_replacement":"VxBool","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: type `vx_bool` should have an upper camel case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api.rs:25:10\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m25\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub type vx_bool = i32;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper camel case: `VxBool`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"type `vx_df_image` should have an upper camel case name","code":{"code":"non_camel_case_types","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":827,"byte_end":838,"line_start":26,"line_end":26,"column_start":10,"column_end":21,"is_primary":true,"text":[{"text":"pub type vx_df_image = u32;","highlight_start":10,"highlight_end":21}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to upper camel case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":827,"byte_end":838,"line_start":26,"line_end":26,"column_start":10,"column_end":21,"is_primary":true,"text":[{"text":"pub type vx_df_image = u32;","highlight_start":10,"highlight_end":21}],"label":null,"suggested_replacement":"VxDfImage","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: type `vx_df_image` should have an upper camel case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api.rs:26:10\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m26\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub type vx_df_image = u32;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper camel case: `VxDfImage`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"type `vx_uint64` should have an upper camel case name","code":{"code":"non_camel_case_types","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":855,"byte_end":864,"line_start":27,"line_end":27,"column_start":10,"column_end":19,"is_primary":true,"text":[{"text":"pub type vx_uint64 = u64;","highlight_start":10,"highlight_end":19}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to upper camel case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":855,"byte_end":864,"line_start":27,"line_end":27,"column_start":10,"column_end":19,"is_primary":true,"text":[{"text":"pub type vx_uint64 = u64;","highlight_start":10,"highlight_end":19}],"label":null,"suggested_replacement":"VxUint64","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: type `vx_uint64` should have an upper camel case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api.rs:27:10\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m27\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub type vx_uint64 = u64;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper camel case: `VxUint64`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"type `vx_int32` should have an upper camel case name","code":{"code":"non_camel_case_types","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":881,"byte_end":889,"line_start":28,"line_end":28,"column_start":10,"column_end":18,"is_primary":true,"text":[{"text":"pub type vx_int32 = i32;","highlight_start":10,"highlight_end":18}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to upper camel case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":881,"byte_end":889,"line_start":28,"line_end":28,"column_start":10,"column_end":18,"is_primary":true,"text":[{"text":"pub type vx_int32 = i32;","highlight_start":10,"highlight_end":18}],"label":null,"suggested_replacement":"VxInt32","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: type `vx_int32` should have an upper camel case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api.rs:28:10\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m28\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub type vx_int32 = i32;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper camel case: `VxInt32`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"type `vx_int8` should have an upper camel case name","code":{"code":"non_camel_case_types","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":906,"byte_end":913,"line_start":29,"line_end":29,"column_start":10,"column_end":17,"is_primary":true,"text":[{"text":"pub type vx_int8 = i8;","highlight_start":10,"highlight_end":17}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to upper camel case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":906,"byte_end":913,"line_start":29,"line_end":29,"column_start":10,"column_end":17,"is_primary":true,"text":[{"text":"pub type vx_int8 = i8;","highlight_start":10,"highlight_end":17}],"label":null,"suggested_replacement":"VxInt8","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: type `vx_int8` should have an upper camel case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api.rs:29:10\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m29\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub type vx_int8 = i8;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper camel case: `VxInt8`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"type `vx_float32` should have an upper camel case name","code":{"code":"non_camel_case_types","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":929,"byte_end":939,"line_start":30,"line_end":30,"column_start":10,"column_end":20,"is_primary":true,"text":[{"text":"pub type vx_float32 = f32;","highlight_start":10,"highlight_end":20}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to upper camel case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":929,"byte_end":939,"line_start":30,"line_end":30,"column_start":10,"column_end":20,"is_primary":true,"text":[{"text":"pub type vx_float32 = f32;","highlight_start":10,"highlight_end":20}],"label":null,"suggested_replacement":"VxFloat32","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: type `vx_float32` should have an upper camel case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api.rs:30:10\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m30\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub type vx_float32 = f32;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper camel case: `VxFloat32`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"type `vx_map_id` should have an upper camel case name","code":{"code":"non_camel_case_types","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":956,"byte_end":965,"line_start":31,"line_end":31,"column_start":10,"column_end":19,"is_primary":true,"text":[{"text":"pub type vx_map_id = usize;","highlight_start":10,"highlight_end":19}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to upper camel case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":956,"byte_end":965,"line_start":31,"line_end":31,"column_start":10,"column_end":19,"is_primary":true,"text":[{"text":"pub type vx_map_id = usize;","highlight_start":10,"highlight_end":19}],"label":null,"suggested_replacement":"VxMapId","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: type `vx_map_id` should have an upper camel case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api.rs:31:10\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m31\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub type vx_map_id = usize;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper camel case: `VxMapId`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"type `vx_context` should have an upper camel case name","code":{"code":"non_camel_case_types","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":1243,"byte_end":1253,"line_start":39,"line_end":39,"column_start":10,"column_end":20,"is_primary":true,"text":[{"text":"pub type vx_context = *mut VxContext;","highlight_start":10,"highlight_end":20}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to upper camel case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":1243,"byte_end":1253,"line_start":39,"line_end":39,"column_start":10,"column_end":20,"is_primary":true,"text":[{"text":"pub type vx_context = *mut VxContext;","highlight_start":10,"highlight_end":20}],"label":null,"suggested_replacement":"VxContext","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: type `vx_context` should have an upper camel case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api.rs:39:10\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m39\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub type vx_context = *mut VxContext;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper camel case: `VxContext`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"type `vx_graph` should have an upper camel case name","code":{"code":"non_camel_case_types","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":1334,"byte_end":1342,"line_start":43,"line_end":43,"column_start":10,"column_end":18,"is_primary":true,"text":[{"text":"pub type vx_graph = *mut VxGraph;","highlight_start":10,"highlight_end":18}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to upper camel case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":1334,"byte_end":1342,"line_start":43,"line_end":43,"column_start":10,"column_end":18,"is_primary":true,"text":[{"text":"pub type vx_graph = *mut VxGraph;","highlight_start":10,"highlight_end":18}],"label":null,"suggested_replacement":"VxGraph","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: type `vx_graph` should have an upper camel case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api.rs:43:10\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m43\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub type vx_graph = *mut VxGraph;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper camel case: `VxGraph`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"type `vx_node` should have an upper camel case name","code":{"code":"non_camel_case_types","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":1419,"byte_end":1426,"line_start":47,"line_end":47,"column_start":10,"column_end":17,"is_primary":true,"text":[{"text":"pub type vx_node = *mut VxNode;","highlight_start":10,"highlight_end":17}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to upper camel case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":1419,"byte_end":1426,"line_start":47,"line_end":47,"column_start":10,"column_end":17,"is_primary":true,"text":[{"text":"pub type vx_node = *mut VxNode;","highlight_start":10,"highlight_end":17}],"label":null,"suggested_replacement":"VxNode","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: type `vx_node` should have an upper camel case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api.rs:47:10\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m47\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub type vx_node = *mut VxNode;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper camel case: `VxNode`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"type `vx_kernel` should have an upper camel case name","code":{"code":"non_camel_case_types","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":1506,"byte_end":1515,"line_start":51,"line_end":51,"column_start":10,"column_end":19,"is_primary":true,"text":[{"text":"pub type vx_kernel = *mut VxKernel;","highlight_start":10,"highlight_end":19}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to upper camel case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":1506,"byte_end":1515,"line_start":51,"line_end":51,"column_start":10,"column_end":19,"is_primary":true,"text":[{"text":"pub type vx_kernel = *mut VxKernel;","highlight_start":10,"highlight_end":19}],"label":null,"suggested_replacement":"VxKernel","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: type `vx_kernel` should have an upper camel case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api.rs:51:10\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m51\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub type vx_kernel = *mut VxKernel;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper camel case: `VxKernel`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"type `vx_parameter` should have an upper camel case name","code":{"code":"non_camel_case_types","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":1603,"byte_end":1615,"line_start":55,"line_end":55,"column_start":10,"column_end":22,"is_primary":true,"text":[{"text":"pub type vx_parameter = *mut VxParameter;","highlight_start":10,"highlight_end":22}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to upper camel case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":1603,"byte_end":1615,"line_start":55,"line_end":55,"column_start":10,"column_end":22,"is_primary":true,"text":[{"text":"pub type vx_parameter = *mut VxParameter;","highlight_start":10,"highlight_end":22}],"label":null,"suggested_replacement":"VxParameter","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: type `vx_parameter` should have an upper camel case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api.rs:55:10\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m55\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub type vx_parameter = *mut VxParameter;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper camel case: `VxParameter`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"type `vx_scalar` should have an upper camel case name","code":{"code":"non_camel_case_types","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":1700,"byte_end":1709,"line_start":59,"line_end":59,"column_start":10,"column_end":19,"is_primary":true,"text":[{"text":"pub type vx_scalar = *mut VxScalar;","highlight_start":10,"highlight_end":19}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to upper camel case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":1700,"byte_end":1709,"line_start":59,"line_end":59,"column_start":10,"column_end":19,"is_primary":true,"text":[{"text":"pub type vx_scalar = *mut VxScalar;","highlight_start":10,"highlight_end":19}],"label":null,"suggested_replacement":"VxScalar","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: type `vx_scalar` should have an upper camel case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api.rs:59:10\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m59\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub type vx_scalar = *mut VxScalar;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper camel case: `VxScalar`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"type `vx_convolution` should have an upper camel case name","code":{"code":"non_camel_case_types","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":1801,"byte_end":1815,"line_start":63,"line_end":63,"column_start":10,"column_end":24,"is_primary":true,"text":[{"text":"pub type vx_convolution = *mut VxConvolution;","highlight_start":10,"highlight_end":24}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to upper camel case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":1801,"byte_end":1815,"line_start":63,"line_end":63,"column_start":10,"column_end":24,"is_primary":true,"text":[{"text":"pub type vx_convolution = *mut VxConvolution;","highlight_start":10,"highlight_end":24}],"label":null,"suggested_replacement":"VxConvolution","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: type `vx_convolution` should have an upper camel case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api.rs:63:10\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m63\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub type vx_convolution = *mut VxConvolution;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper camel case: `VxConvolution`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"type `vx_matrix` should have an upper camel case name","code":{"code":"non_camel_case_types","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":1902,"byte_end":1911,"line_start":67,"line_end":67,"column_start":10,"column_end":19,"is_primary":true,"text":[{"text":"pub type vx_matrix = *mut VxMatrix;","highlight_start":10,"highlight_end":19}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to upper camel case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":1902,"byte_end":1911,"line_start":67,"line_end":67,"column_start":10,"column_end":19,"is_primary":true,"text":[{"text":"pub type vx_matrix = *mut VxMatrix;","highlight_start":10,"highlight_end":19}],"label":null,"suggested_replacement":"VxMatrix","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: type `vx_matrix` should have an upper camel case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api.rs:67:10\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m67\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub type vx_matrix = *mut VxMatrix;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper camel case: `VxMatrix`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"type `vx_lut` should have an upper camel case name","code":{"code":"non_camel_case_types","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":1987,"byte_end":1993,"line_start":71,"line_end":71,"column_start":10,"column_end":16,"is_primary":true,"text":[{"text":"pub type vx_lut = *mut VxLUT;","highlight_start":10,"highlight_end":16}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to upper camel case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":1987,"byte_end":1993,"line_start":71,"line_end":71,"column_start":10,"column_end":16,"is_primary":true,"text":[{"text":"pub type vx_lut = *mut VxLUT;","highlight_start":10,"highlight_end":16}],"label":null,"suggested_replacement":"VxLut","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: type `vx_lut` should have an upper camel case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api.rs:71:10\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m71\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub type vx_lut = *mut VxLUT;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper camel case: `VxLut`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"type `vx_threshold` should have an upper camel case name","code":{"code":"non_camel_case_types","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":2078,"byte_end":2090,"line_start":75,"line_end":75,"column_start":10,"column_end":22,"is_primary":true,"text":[{"text":"pub type vx_threshold = *mut VxThreshold;","highlight_start":10,"highlight_end":22}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to upper camel case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":2078,"byte_end":2090,"line_start":75,"line_end":75,"column_start":10,"column_end":22,"is_primary":true,"text":[{"text":"pub type vx_threshold = *mut VxThreshold;","highlight_start":10,"highlight_end":22}],"label":null,"suggested_replacement":"VxThreshold","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: type `vx_threshold` should have an upper camel case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api.rs:75:10\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m75\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub type vx_threshold = *mut VxThreshold;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper camel case: `VxThreshold`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"type `vx_pyramid` should have an upper camel case name","code":{"code":"non_camel_case_types","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":2177,"byte_end":2187,"line_start":79,"line_end":79,"column_start":10,"column_end":20,"is_primary":true,"text":[{"text":"pub type vx_pyramid = *mut VxPyramid;","highlight_start":10,"highlight_end":20}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to upper camel case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":2177,"byte_end":2187,"line_start":79,"line_end":79,"column_start":10,"column_end":20,"is_primary":true,"text":[{"text":"pub type vx_pyramid = *mut VxPyramid;","highlight_start":10,"highlight_end":20}],"label":null,"suggested_replacement":"VxPyramid","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: type `vx_pyramid` should have an upper camel case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api.rs:79:10\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m79\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub type vx_pyramid = *mut VxPyramid;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper camel case: `VxPyramid`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"type `vx_image` should have an upper camel case name","code":{"code":"non_camel_case_types","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":2269,"byte_end":2277,"line_start":83,"line_end":83,"column_start":10,"column_end":18,"is_primary":true,"text":[{"text":"pub type vx_image = *mut VxImage;","highlight_start":10,"highlight_end":18}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to upper camel case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":2269,"byte_end":2277,"line_start":83,"line_end":83,"column_start":10,"column_end":18,"is_primary":true,"text":[{"text":"pub type vx_image = *mut VxImage;","highlight_start":10,"highlight_end":18}],"label":null,"suggested_replacement":"VxImage","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: type `vx_image` should have an upper camel case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api.rs:83:10\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m83\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub type vx_image = *mut VxImage;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper camel case: `VxImage`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"type `vx_reference` should have an upper camel case name","code":{"code":"non_camel_case_types","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":2371,"byte_end":2383,"line_start":87,"line_end":87,"column_start":10,"column_end":22,"is_primary":true,"text":[{"text":"pub type vx_reference = *mut VxReference;","highlight_start":10,"highlight_end":22}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to upper camel case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":2371,"byte_end":2383,"line_start":87,"line_end":87,"column_start":10,"column_end":22,"is_primary":true,"text":[{"text":"pub type vx_reference = *mut VxReference;","highlight_start":10,"highlight_end":22}],"label":null,"suggested_replacement":"VxReference","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: type `vx_reference` should have an upper camel case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api.rs:87:10\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m87\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub type vx_reference = *mut VxReference;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper camel case: `VxReference`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"type `vx_distribution` should have an upper camel case name","code":{"code":"non_camel_case_types","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":2480,"byte_end":2495,"line_start":91,"line_end":91,"column_start":10,"column_end":25,"is_primary":true,"text":[{"text":"pub type vx_distribution = *mut VxDistribution;","highlight_start":10,"highlight_end":25}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to upper camel case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":2480,"byte_end":2495,"line_start":91,"line_end":91,"column_start":10,"column_end":25,"is_primary":true,"text":[{"text":"pub type vx_distribution = *mut VxDistribution;","highlight_start":10,"highlight_end":25}],"label":null,"suggested_replacement":"VxDistribution","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: type `vx_distribution` should have an upper camel case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api.rs:91:10\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m91\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub type vx_distribution = *mut VxDistribution;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper camel case: `VxDistribution`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"type `vx_delay` should have an upper camel case name","code":{"code":"non_camel_case_types","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":2581,"byte_end":2589,"line_start":95,"line_end":95,"column_start":10,"column_end":18,"is_primary":true,"text":[{"text":"pub type vx_delay = *mut VxDelay;","highlight_start":10,"highlight_end":18}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to upper camel case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":2581,"byte_end":2589,"line_start":95,"line_end":95,"column_start":10,"column_end":18,"is_primary":true,"text":[{"text":"pub type vx_delay = *mut VxDelay;","highlight_start":10,"highlight_end":18}],"label":null,"suggested_replacement":"VxDelay","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: type `vx_delay` should have an upper camel case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api.rs:95:10\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m95\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub type vx_delay = *mut VxDelay;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper camel case: `VxDelay`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"type `vx_remap` should have an upper camel case name","code":{"code":"non_camel_case_types","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":2668,"byte_end":2676,"line_start":99,"line_end":99,"column_start":10,"column_end":18,"is_primary":true,"text":[{"text":"pub type vx_remap = *mut VxRemap;","highlight_start":10,"highlight_end":18}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to upper camel case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":2668,"byte_end":2676,"line_start":99,"line_end":99,"column_start":10,"column_end":18,"is_primary":true,"text":[{"text":"pub type vx_remap = *mut VxRemap;","highlight_start":10,"highlight_end":18}],"label":null,"suggested_replacement":"VxRemap","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: type `vx_remap` should have an upper camel case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api.rs:99:10\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m99\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub type vx_remap = *mut VxRemap;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper camel case: `VxRemap`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"type `vx_tensor` should have an upper camel case name","code":{"code":"non_camel_case_types","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":2757,"byte_end":2766,"line_start":103,"line_end":103,"column_start":10,"column_end":19,"is_primary":true,"text":[{"text":"pub type vx_tensor = *mut VxTensor;","highlight_start":10,"highlight_end":19}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to upper camel case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":2757,"byte_end":2766,"line_start":103,"line_end":103,"column_start":10,"column_end":19,"is_primary":true,"text":[{"text":"pub type vx_tensor = *mut VxTensor;","highlight_start":10,"highlight_end":19}],"label":null,"suggested_replacement":"VxTensor","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: type `vx_tensor` should have an upper camel case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api.rs:103:10\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m103\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub type vx_tensor = *mut VxTensor;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper camel case: `VxTensor`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"type `vx_meta_format` should have an upper camel case name","code":{"code":"non_camel_case_types","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":2857,"byte_end":2871,"line_start":107,"line_end":107,"column_start":10,"column_end":24,"is_primary":true,"text":[{"text":"pub type vx_meta_format = *mut VxMetaFormat;","highlight_start":10,"highlight_end":24}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to upper camel case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":2857,"byte_end":2871,"line_start":107,"line_end":107,"column_start":10,"column_end":24,"is_primary":true,"text":[{"text":"pub type vx_meta_format = *mut VxMetaFormat;","highlight_start":10,"highlight_end":24}],"label":null,"suggested_replacement":"VxMetaFormat","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: type `vx_meta_format` should have an upper camel case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api.rs:107:10\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m107\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub type vx_meta_format = *mut VxMetaFormat;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper camel case: `VxMetaFormat`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"type `vx_graph_parameter` should have an upper camel case name","code":{"code":"non_camel_case_types","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":2974,"byte_end":2992,"line_start":111,"line_end":111,"column_start":10,"column_end":28,"is_primary":true,"text":[{"text":"pub type vx_graph_parameter = *mut VxGraphParameter;","highlight_start":10,"highlight_end":28}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to upper camel case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":2974,"byte_end":2992,"line_start":111,"line_end":111,"column_start":10,"column_end":28,"is_primary":true,"text":[{"text":"pub type vx_graph_parameter = *mut VxGraphParameter;","highlight_start":10,"highlight_end":28}],"label":null,"suggested_replacement":"VxGraphParameter","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: type `vx_graph_parameter` should have an upper camel case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api.rs:111:10\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m111\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub type vx_graph_parameter = *mut VxGraphParameter;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper camel case: `VxGraphParameter`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"type `vx_import` should have an upper camel case name","code":{"code":"non_camel_case_types","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":3083,"byte_end":3092,"line_start":115,"line_end":115,"column_start":10,"column_end":19,"is_primary":true,"text":[{"text":"pub type vx_import = *mut VxImport;","highlight_start":10,"highlight_end":19}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to upper camel case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":3083,"byte_end":3092,"line_start":115,"line_end":115,"column_start":10,"column_end":19,"is_primary":true,"text":[{"text":"pub type vx_import = *mut VxImport;","highlight_start":10,"highlight_end":19}],"label":null,"suggested_replacement":"VxImport","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: type `vx_import` should have an upper camel case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api.rs:115:10\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m115\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub type vx_import = *mut VxImport;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper camel case: `VxImport`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"type `vx_target` should have an upper camel case name","code":{"code":"non_camel_case_types","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":3174,"byte_end":3183,"line_start":119,"line_end":119,"column_start":10,"column_end":19,"is_primary":true,"text":[{"text":"pub type vx_target = *mut VxTarget;","highlight_start":10,"highlight_end":19}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to upper camel case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":3174,"byte_end":3183,"line_start":119,"line_end":119,"column_start":10,"column_end":19,"is_primary":true,"text":[{"text":"pub type vx_target = *mut VxTarget;","highlight_start":10,"highlight_end":19}],"label":null,"suggested_replacement":"VxTarget","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: type `vx_target` should have an upper camel case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api.rs:119:10\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m119\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub type vx_target = *mut VxTarget;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper camel case: `VxTarget`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"type `vx_nodecomplete_f` should have an upper camel case name","code":{"code":"non_camel_case_types","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":3245,"byte_end":3262,"line_start":122,"line_end":122,"column_start":10,"column_end":27,"is_primary":true,"text":[{"text":"pub type vx_nodecomplete_f = Option vx_action>;","highlight_start":10,"highlight_end":27}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to upper camel case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":3245,"byte_end":3262,"line_start":122,"line_end":122,"column_start":10,"column_end":27,"is_primary":true,"text":[{"text":"pub type vx_nodecomplete_f = Option vx_action>;","highlight_start":10,"highlight_end":27}],"label":null,"suggested_replacement":"VxNodecompleteF","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: type `vx_nodecomplete_f` should have an upper camel case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api.rs:122:10\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m122\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub type vx_nodecomplete_f = Option vx_action>;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper camel case: `VxNodecompleteF`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"variant `VX_ACTION_CONTINUE` should have an upper camel case name","code":{"code":"non_camel_case_types","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":3417,"byte_end":3435,"line_start":128,"line_end":128,"column_start":5,"column_end":23,"is_primary":true,"text":[{"text":" VX_ACTION_CONTINUE = 0,","highlight_start":5,"highlight_end":23}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to upper camel case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":3417,"byte_end":3435,"line_start":128,"line_end":128,"column_start":5,"column_end":23,"is_primary":true,"text":[{"text":" VX_ACTION_CONTINUE = 0,","highlight_start":5,"highlight_end":23}],"label":null,"suggested_replacement":"VxActionContinue","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: variant `VX_ACTION_CONTINUE` should have an upper camel case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api.rs:128:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m128\u001b[0m \u001b[1m\u001b[94m|\u001b[0m VX_ACTION_CONTINUE = 0,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper camel case: `VxActionContinue`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"variant `VX_ACTION_ABANDON` should have an upper camel case name","code":{"code":"non_camel_case_types","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":3445,"byte_end":3462,"line_start":129,"line_end":129,"column_start":5,"column_end":22,"is_primary":true,"text":[{"text":" VX_ACTION_ABANDON = 1,","highlight_start":5,"highlight_end":22}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to upper camel case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":3445,"byte_end":3462,"line_start":129,"line_end":129,"column_start":5,"column_end":22,"is_primary":true,"text":[{"text":" VX_ACTION_ABANDON = 1,","highlight_start":5,"highlight_end":22}],"label":null,"suggested_replacement":"VxActionAbandon","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: variant `VX_ACTION_ABANDON` should have an upper camel case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api.rs:129:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m129\u001b[0m \u001b[1m\u001b[94m|\u001b[0m VX_ACTION_ABANDON = 1,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper camel case: `VxActionAbandon`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused import: `std::sync::atomic::Ordering`","code":{"code":"unused_imports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":7573,"byte_end":7600,"line_start":252,"line_end":252,"column_start":9,"column_end":36,"is_primary":true,"text":[{"text":" use std::sync::atomic::Ordering;","highlight_start":9,"highlight_end":36}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"remove the whole `use` item","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":7569,"byte_end":7601,"line_start":252,"line_end":252,"column_start":5,"column_end":37,"is_primary":true,"text":[{"text":" use std::sync::atomic::Ordering;","highlight_start":5,"highlight_end":37}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused import: `std::sync::atomic::Ordering`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api.rs:252:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m252\u001b[0m \u001b[1m\u001b[94m|\u001b[0m use std::sync::atomic::Ordering;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"type `vx_array` should have an upper camel case name","code":{"code":"non_camel_case_types","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":64421,"byte_end":64429,"line_start":1770,"line_end":1770,"column_start":10,"column_end":18,"is_primary":true,"text":[{"text":"pub type vx_array = *mut VxArray;","highlight_start":10,"highlight_end":18}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to upper camel case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":64421,"byte_end":64429,"line_start":1770,"line_end":1770,"column_start":10,"column_end":18,"is_primary":true,"text":[{"text":"pub type vx_array = *mut VxArray;","highlight_start":10,"highlight_end":18}],"label":null,"suggested_replacement":"VxArray","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: type `vx_array` should have an upper camel case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api.rs:1770:10\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m1770\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub type vx_array = *mut VxArray;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper camel case: `VxArray`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused import: `VX_TYPE_DISTRIBUTION`","code":{"code":"unused_imports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api_data.rs","byte_start":346,"byte_end":366,"line_start":9,"line_end":9,"column_start":41,"column_end":61,"is_primary":true,"text":[{"text":" VX_TYPE_THRESHOLD, VX_TYPE_PYRAMID, VX_TYPE_DISTRIBUTION","highlight_start":41,"highlight_end":61}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"remove the unused import","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/c_api_data.rs","byte_start":344,"byte_end":366,"line_start":9,"line_end":9,"column_start":39,"column_end":61,"is_primary":true,"text":[{"text":" VX_TYPE_THRESHOLD, VX_TYPE_PYRAMID, VX_TYPE_DISTRIBUTION","highlight_start":39,"highlight_end":61}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused import: `VX_TYPE_DISTRIBUTION`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api_data.rs:9:41\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m9\u001b[0m \u001b[1m\u001b[94m|\u001b[0m VX_TYPE_THRESHOLD, VX_TYPE_PYRAMID, VX_TYPE_DISTRIBUTION\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^\u001b[0m\n\n"} +======= {"$message_type":"diagnostic","message":"type `vx_status` should have an upper camel case name","code":{"code":"non_camel_case_types","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":695,"byte_end":704,"line_start":20,"line_end":20,"column_start":10,"column_end":19,"is_primary":true,"text":[{"text":"pub type vx_status = i32;","highlight_start":10,"highlight_end":19}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(non_camel_case_types)]` (part of `#[warn(nonstandard_style)]`) on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"convert the identifier to upper camel case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":695,"byte_end":704,"line_start":20,"line_end":20,"column_start":10,"column_end":19,"is_primary":true,"text":[{"text":"pub type vx_status = i32;","highlight_start":10,"highlight_end":19}],"label":null,"suggested_replacement":"VxStatus","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: type `vx_status` should have an upper camel case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api.rs:20:10\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m20\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub type vx_status = i32;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper camel case: `VxStatus`\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m= \u001b[0m\u001b[1mnote\u001b[0m: `#[warn(non_camel_case_types)]` (part of `#[warn(nonstandard_style)]`) on by default\n\n"} {"$message_type":"diagnostic","message":"type `vx_enum` should have an upper camel case name","code":{"code":"non_camel_case_types","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":721,"byte_end":728,"line_start":21,"line_end":21,"column_start":10,"column_end":17,"is_primary":true,"text":[{"text":"pub type vx_enum = i32;","highlight_start":10,"highlight_end":17}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to upper camel case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":721,"byte_end":728,"line_start":21,"line_end":21,"column_start":10,"column_end":17,"is_primary":true,"text":[{"text":"pub type vx_enum = i32;","highlight_start":10,"highlight_end":17}],"label":null,"suggested_replacement":"VxEnum","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: type `vx_enum` should have an upper camel case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api.rs:21:10\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m21\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub type vx_enum = i32;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper camel case: `VxEnum`\u001b[0m\n\n"} {"$message_type":"diagnostic","message":"type `vx_uint32` should have an upper camel case name","code":{"code":"non_camel_case_types","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":745,"byte_end":754,"line_start":22,"line_end":22,"column_start":10,"column_end":19,"is_primary":true,"text":[{"text":"pub type vx_uint32 = u32;","highlight_start":10,"highlight_end":19}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to upper camel case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":745,"byte_end":754,"line_start":22,"line_end":22,"column_start":10,"column_end":19,"is_primary":true,"text":[{"text":"pub type vx_uint32 = u32;","highlight_start":10,"highlight_end":19}],"label":null,"suggested_replacement":"VxUint32","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: type `vx_uint32` should have an upper camel case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api.rs:22:10\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m22\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub type vx_uint32 = u32;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper camel case: `VxUint32`\u001b[0m\n\n"} @@ -39,12 +80,245 @@ {"$message_type":"diagnostic","message":"unused import: `std::sync::atomic::Ordering`","code":{"code":"unused_imports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":8031,"byte_end":8058,"line_start":260,"line_end":260,"column_start":9,"column_end":36,"is_primary":true,"text":[{"text":" use std::sync::atomic::Ordering;","highlight_start":9,"highlight_end":36}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"remove the whole `use` item","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":8027,"byte_end":8059,"line_start":260,"line_end":260,"column_start":5,"column_end":37,"is_primary":true,"text":[{"text":" use std::sync::atomic::Ordering;","highlight_start":5,"highlight_end":37}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused import: `std::sync::atomic::Ordering`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api.rs:260:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m260\u001b[0m \u001b[1m\u001b[94m|\u001b[0m use std::sync::atomic::Ordering;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^^^^^^^\u001b[0m\n\n"} {"$message_type":"diagnostic","message":"type `vx_array` should have an upper camel case name","code":{"code":"non_camel_case_types","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":86344,"byte_end":86352,"line_start":2223,"line_end":2223,"column_start":10,"column_end":18,"is_primary":true,"text":[{"text":"pub type vx_array = *mut VxArray;","highlight_start":10,"highlight_end":18}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to upper camel case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":86344,"byte_end":86352,"line_start":2223,"line_end":2223,"column_start":10,"column_end":18,"is_primary":true,"text":[{"text":"pub type vx_array = *mut VxArray;","highlight_start":10,"highlight_end":18}],"label":null,"suggested_replacement":"VxArray","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: type `vx_array` should have an upper camel case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api.rs:2223:10\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m2223\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub type vx_array = *mut VxArray;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper camel case: `VxArray`\u001b[0m\n\n"} {"$message_type":"diagnostic","message":"unused imports: `VX_TYPE_DISTRIBUTION` and `VX_TYPE_PYRAMID`","code":{"code":"unused_imports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api_data.rs","byte_start":329,"byte_end":344,"line_start":9,"line_end":9,"column_start":24,"column_end":39,"is_primary":true,"text":[{"text":" VX_TYPE_THRESHOLD, VX_TYPE_PYRAMID, VX_TYPE_DISTRIBUTION","highlight_start":24,"highlight_end":39}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/c_api_data.rs","byte_start":346,"byte_end":366,"line_start":9,"line_end":9,"column_start":41,"column_end":61,"is_primary":true,"text":[{"text":" VX_TYPE_THRESHOLD, VX_TYPE_PYRAMID, VX_TYPE_DISTRIBUTION","highlight_start":41,"highlight_end":61}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"remove the unused imports","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/c_api_data.rs","byte_start":327,"byte_end":366,"line_start":9,"line_end":9,"column_start":22,"column_end":61,"is_primary":true,"text":[{"text":" VX_TYPE_THRESHOLD, VX_TYPE_PYRAMID, VX_TYPE_DISTRIBUTION","highlight_start":22,"highlight_end":61}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused imports: `VX_TYPE_DISTRIBUTION` and `VX_TYPE_PYRAMID`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api_data.rs:9:24\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m9\u001b[0m \u001b[1m\u001b[94m|\u001b[0m VX_TYPE_THRESHOLD, VX_TYPE_PYRAMID, VX_TYPE_DISTRIBUTION\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^\u001b[0m\n\n"} +>>>>>>> origin/master {"$message_type":"diagnostic","message":"private item shadows public glob re-export","code":{"code":"hidden_glob_reexports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api_data.rs","byte_start":255,"byte_end":274,"line_start":8,"line_end":8,"column_start":5,"column_end":24,"is_primary":true,"text":[{"text":" VX_TYPE_CONVOLUTION, VX_TYPE_MATRIX, VX_TYPE_LUT, ","highlight_start":5,"highlight_end":24}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"the name `VX_TYPE_CONVOLUTION` in the value namespace is supposed to be publicly re-exported here","code":null,"level":"note","spans":[{"file_name":"openvx-core/src/c_api_data.rs","byte_start":143,"byte_end":158,"line_start":5,"line_end":5,"column_start":9,"column_end":24,"is_primary":true,"text":[{"text":"pub use crate::c_api::*;","highlight_start":9,"highlight_end":24}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":null},{"message":"but the private item here shadows it","code":null,"level":"note","spans":[{"file_name":"openvx-core/src/c_api_data.rs","byte_start":255,"byte_end":274,"line_start":8,"line_end":8,"column_start":5,"column_end":24,"is_primary":true,"text":[{"text":" VX_TYPE_CONVOLUTION, VX_TYPE_MATRIX, VX_TYPE_LUT, ","highlight_start":5,"highlight_end":24}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":null},{"message":"`#[warn(hidden_glob_reexports)]` on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: private item shadows public glob re-export\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api_data.rs:8:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m8\u001b[0m \u001b[1m\u001b[94m|\u001b[0m VX_TYPE_CONVOLUTION, VX_TYPE_MATRIX, VX_TYPE_LUT, \n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[92mnote\u001b[0m: the name `VX_TYPE_CONVOLUTION` in the value namespace is supposed to be publicly re-exported here\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api_data.rs:5:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m5\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use crate::c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[92m^^^^^^^^^^^^^^^\u001b[0m\n\u001b[1m\u001b[92mnote\u001b[0m: but the private item here shadows it\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api_data.rs:8:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m8\u001b[0m \u001b[1m\u001b[94m|\u001b[0m VX_TYPE_CONVOLUTION, VX_TYPE_MATRIX, VX_TYPE_LUT, \n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[92m^^^^^^^^^^^^^^^^^^^\u001b[0m\n \u001b[1m\u001b[94m= \u001b[0m\u001b[1mnote\u001b[0m: `#[warn(hidden_glob_reexports)]` on by default\n\n"} {"$message_type":"diagnostic","message":"private item shadows public glob re-export","code":{"code":"hidden_glob_reexports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api_data.rs","byte_start":276,"byte_end":290,"line_start":8,"line_end":8,"column_start":26,"column_end":40,"is_primary":true,"text":[{"text":" VX_TYPE_CONVOLUTION, VX_TYPE_MATRIX, VX_TYPE_LUT, ","highlight_start":26,"highlight_end":40}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"the name `VX_TYPE_MATRIX` in the value namespace is supposed to be publicly re-exported here","code":null,"level":"note","spans":[{"file_name":"openvx-core/src/c_api_data.rs","byte_start":143,"byte_end":158,"line_start":5,"line_end":5,"column_start":9,"column_end":24,"is_primary":true,"text":[{"text":"pub use crate::c_api::*;","highlight_start":9,"highlight_end":24}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":null},{"message":"but the private item here shadows it","code":null,"level":"note","spans":[{"file_name":"openvx-core/src/c_api_data.rs","byte_start":276,"byte_end":290,"line_start":8,"line_end":8,"column_start":26,"column_end":40,"is_primary":true,"text":[{"text":" VX_TYPE_CONVOLUTION, VX_TYPE_MATRIX, VX_TYPE_LUT, ","highlight_start":26,"highlight_end":40}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: private item shadows public glob re-export\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api_data.rs:8:26\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m8\u001b[0m \u001b[1m\u001b[94m|\u001b[0m VX_TYPE_CONVOLUTION, VX_TYPE_MATRIX, VX_TYPE_LUT, \n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[92mnote\u001b[0m: the name `VX_TYPE_MATRIX` in the value namespace is supposed to be publicly re-exported here\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api_data.rs:5:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m5\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use crate::c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[92m^^^^^^^^^^^^^^^\u001b[0m\n\u001b[1m\u001b[92mnote\u001b[0m: but the private item here shadows it\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api_data.rs:8:26\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m8\u001b[0m \u001b[1m\u001b[94m|\u001b[0m VX_TYPE_CONVOLUTION, VX_TYPE_MATRIX, VX_TYPE_LUT, \n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[92m^^^^^^^^^^^^^^\u001b[0m\n\n"} {"$message_type":"diagnostic","message":"private item shadows public glob re-export","code":{"code":"hidden_glob_reexports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api_data.rs","byte_start":292,"byte_end":303,"line_start":8,"line_end":8,"column_start":42,"column_end":53,"is_primary":true,"text":[{"text":" VX_TYPE_CONVOLUTION, VX_TYPE_MATRIX, VX_TYPE_LUT, ","highlight_start":42,"highlight_end":53}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"the name `VX_TYPE_LUT` in the value namespace is supposed to be publicly re-exported here","code":null,"level":"note","spans":[{"file_name":"openvx-core/src/c_api_data.rs","byte_start":143,"byte_end":158,"line_start":5,"line_end":5,"column_start":9,"column_end":24,"is_primary":true,"text":[{"text":"pub use crate::c_api::*;","highlight_start":9,"highlight_end":24}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":null},{"message":"but the private item here shadows it","code":null,"level":"note","spans":[{"file_name":"openvx-core/src/c_api_data.rs","byte_start":292,"byte_end":303,"line_start":8,"line_end":8,"column_start":42,"column_end":53,"is_primary":true,"text":[{"text":" VX_TYPE_CONVOLUTION, VX_TYPE_MATRIX, VX_TYPE_LUT, ","highlight_start":42,"highlight_end":53}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: private item shadows public glob re-export\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api_data.rs:8:42\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m8\u001b[0m \u001b[1m\u001b[94m|\u001b[0m VX_TYPE_CONVOLUTION, VX_TYPE_MATRIX, VX_TYPE_LUT, \n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[92mnote\u001b[0m: the name `VX_TYPE_LUT` in the value namespace is supposed to be publicly re-exported here\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api_data.rs:5:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m5\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use crate::c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[92m^^^^^^^^^^^^^^^\u001b[0m\n\u001b[1m\u001b[92mnote\u001b[0m: but the private item here shadows it\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api_data.rs:8:42\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m8\u001b[0m \u001b[1m\u001b[94m|\u001b[0m VX_TYPE_CONVOLUTION, VX_TYPE_MATRIX, VX_TYPE_LUT, \n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[92m^^^^^^^^^^^\u001b[0m\n\n"} {"$message_type":"diagnostic","message":"private item shadows public glob re-export","code":{"code":"hidden_glob_reexports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api_data.rs","byte_start":310,"byte_end":327,"line_start":9,"line_end":9,"column_start":5,"column_end":22,"is_primary":true,"text":[{"text":" VX_TYPE_THRESHOLD, VX_TYPE_PYRAMID, VX_TYPE_DISTRIBUTION","highlight_start":5,"highlight_end":22}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"the name `VX_TYPE_THRESHOLD` in the value namespace is supposed to be publicly re-exported here","code":null,"level":"note","spans":[{"file_name":"openvx-core/src/c_api_data.rs","byte_start":143,"byte_end":158,"line_start":5,"line_end":5,"column_start":9,"column_end":24,"is_primary":true,"text":[{"text":"pub use crate::c_api::*;","highlight_start":9,"highlight_end":24}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":null},{"message":"but the private item here shadows it","code":null,"level":"note","spans":[{"file_name":"openvx-core/src/c_api_data.rs","byte_start":310,"byte_end":327,"line_start":9,"line_end":9,"column_start":5,"column_end":22,"is_primary":true,"text":[{"text":" VX_TYPE_THRESHOLD, VX_TYPE_PYRAMID, VX_TYPE_DISTRIBUTION","highlight_start":5,"highlight_end":22}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: private item shadows public glob re-export\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api_data.rs:9:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m9\u001b[0m \u001b[1m\u001b[94m|\u001b[0m VX_TYPE_THRESHOLD, VX_TYPE_PYRAMID, VX_TYPE_DISTRIBUTION\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[92mnote\u001b[0m: the name `VX_TYPE_THRESHOLD` in the value namespace is supposed to be publicly re-exported here\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api_data.rs:5:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m5\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use crate::c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[92m^^^^^^^^^^^^^^^\u001b[0m\n\u001b[1m\u001b[92mnote\u001b[0m: but the private item here shadows it\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api_data.rs:9:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m9\u001b[0m \u001b[1m\u001b[94m|\u001b[0m VX_TYPE_THRESHOLD, VX_TYPE_PYRAMID, VX_TYPE_DISTRIBUTION\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[92m^^^^^^^^^^^^^^^^^\u001b[0m\n\n"} {"$message_type":"diagnostic","message":"private item shadows public glob re-export","code":{"code":"hidden_glob_reexports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api_data.rs","byte_start":329,"byte_end":344,"line_start":9,"line_end":9,"column_start":24,"column_end":39,"is_primary":true,"text":[{"text":" VX_TYPE_THRESHOLD, VX_TYPE_PYRAMID, VX_TYPE_DISTRIBUTION","highlight_start":24,"highlight_end":39}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"the name `VX_TYPE_PYRAMID` in the value namespace is supposed to be publicly re-exported here","code":null,"level":"note","spans":[{"file_name":"openvx-core/src/c_api_data.rs","byte_start":143,"byte_end":158,"line_start":5,"line_end":5,"column_start":9,"column_end":24,"is_primary":true,"text":[{"text":"pub use crate::c_api::*;","highlight_start":9,"highlight_end":24}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":null},{"message":"but the private item here shadows it","code":null,"level":"note","spans":[{"file_name":"openvx-core/src/c_api_data.rs","byte_start":329,"byte_end":344,"line_start":9,"line_end":9,"column_start":24,"column_end":39,"is_primary":true,"text":[{"text":" VX_TYPE_THRESHOLD, VX_TYPE_PYRAMID, VX_TYPE_DISTRIBUTION","highlight_start":24,"highlight_end":39}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: private item shadows public glob re-export\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api_data.rs:9:24\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m9\u001b[0m \u001b[1m\u001b[94m|\u001b[0m VX_TYPE_THRESHOLD, VX_TYPE_PYRAMID, VX_TYPE_DISTRIBUTION\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[92mnote\u001b[0m: the name `VX_TYPE_PYRAMID` in the value namespace is supposed to be publicly re-exported here\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api_data.rs:5:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m5\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use crate::c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[92m^^^^^^^^^^^^^^^\u001b[0m\n\u001b[1m\u001b[92mnote\u001b[0m: but the private item here shadows it\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api_data.rs:9:24\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m9\u001b[0m \u001b[1m\u001b[94m|\u001b[0m VX_TYPE_THRESHOLD, VX_TYPE_PYRAMID, VX_TYPE_DISTRIBUTION\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[92m^^^^^^^^^^^^^^^\u001b[0m\n\n"} {"$message_type":"diagnostic","message":"private item shadows public glob re-export","code":{"code":"hidden_glob_reexports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":314,"byte_end":349,"line_start":11,"line_end":11,"column_start":5,"column_end":40,"is_primary":true,"text":[{"text":"use crate::c_api_data::vx_pixel_value_t;","highlight_start":5,"highlight_end":40}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"the name `vx_pixel_value_t` in the type namespace is supposed to be publicly re-exported here","code":null,"level":"note","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":236,"byte_end":256,"line_start":8,"line_end":8,"column_start":9,"column_end":29,"is_primary":true,"text":[{"text":"pub use crate::c_api_data::*;","highlight_start":9,"highlight_end":29}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":null},{"message":"but the private item here shadows it","code":null,"level":"note","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":314,"byte_end":349,"line_start":11,"line_end":11,"column_start":5,"column_end":40,"is_primary":true,"text":[{"text":"use crate::c_api_data::vx_pixel_value_t;","highlight_start":5,"highlight_end":40}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: private item shadows public glob re-export\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:11:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m11\u001b[0m \u001b[1m\u001b[94m|\u001b[0m use crate::c_api_data::vx_pixel_value_t;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[92mnote\u001b[0m: the name `vx_pixel_value_t` in the type namespace is supposed to be publicly re-exported here\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:8:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m 8\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use crate::c_api_data::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[92m^^^^^^^^^^^^^^^^^^^^\u001b[0m\n\u001b[1m\u001b[92mnote\u001b[0m: but the private item here shadows it\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:11:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m11\u001b[0m \u001b[1m\u001b[94m|\u001b[0m use crate::c_api_data::vx_pixel_value_t;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[92m^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\u001b[0m\n\n"} +<<<<<<< HEAD +{"$message_type":"diagnostic","message":"private item shadows public glob re-export","code":{"code":"hidden_glob_reexports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":12312,"byte_end":12417,"line_start":411,"line_end":413,"column_start":1,"column_end":4,"is_primary":true,"text":[{"text":"static NODES: Lazy>>> = Lazy::new(|| {","highlight_start":1,"highlight_end":71},{"text":" Mutex::new(HashMap::new())","highlight_start":1,"highlight_end":31},{"text":"});","highlight_start":1,"highlight_end":4}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"the name `NODES` in the value namespace is supposed to be publicly re-exported here","code":null,"level":"note","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":211,"byte_end":226,"line_start":7,"line_end":7,"column_start":9,"column_end":24,"is_primary":true,"text":[{"text":"pub use crate::c_api::*;","highlight_start":9,"highlight_end":24}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":null},{"message":"but the private item here shadows it","code":null,"level":"note","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":12312,"byte_end":12417,"line_start":411,"line_end":413,"column_start":1,"column_end":4,"is_primary":true,"text":[{"text":"static NODES: Lazy>>> = Lazy::new(|| {","highlight_start":1,"highlight_end":71},{"text":" Mutex::new(HashMap::new())","highlight_start":1,"highlight_end":31},{"text":"});","highlight_start":1,"highlight_end":4}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: private item shadows public glob re-export\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:411:1\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m411\u001b[0m \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m/\u001b[0m static NODES: Lazy>>> = Lazy::new(|| {\n\u001b[1m\u001b[94m412\u001b[0m \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m|\u001b[0m Mutex::new(HashMap::new())\n\u001b[1m\u001b[94m413\u001b[0m \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m|\u001b[0m });\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m|___^\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[92mnote\u001b[0m: the name `NODES` in the value namespace is supposed to be publicly re-exported here\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:7:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m 7\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use crate::c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[92m^^^^^^^^^^^^^^^\u001b[0m\n\u001b[1m\u001b[92mnote\u001b[0m: but the private item here shadows it\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:411:1\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m411\u001b[0m \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[92m/\u001b[0m static NODES: Lazy>>> = Lazy::new(|| {\n\u001b[1m\u001b[94m412\u001b[0m \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[92m|\u001b[0m Mutex::new(HashMap::new())\n\u001b[1m\u001b[94m413\u001b[0m \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[92m|\u001b[0m });\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[92m|___^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"type `vx_distribution` should have an upper camel case name","code":{"code":"non_camel_case_types","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":80633,"byte_end":80648,"line_start":2390,"line_end":2390,"column_start":10,"column_end":25,"is_primary":true,"text":[{"text":"pub type vx_distribution = *mut VxDistribution;","highlight_start":10,"highlight_end":25}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to upper camel case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":80633,"byte_end":80648,"line_start":2390,"line_end":2390,"column_start":10,"column_end":25,"is_primary":true,"text":[{"text":"pub type vx_distribution = *mut VxDistribution;","highlight_start":10,"highlight_end":25}],"label":null,"suggested_replacement":"VxDistribution","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: type `vx_distribution` should have an upper camel case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:2390:10\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m2390\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub type vx_distribution = *mut VxDistribution;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper camel case: `VxDistribution`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"type `vx_remap` should have an upper camel case name","code":{"code":"non_camel_case_types","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":80724,"byte_end":80732,"line_start":2394,"line_end":2394,"column_start":10,"column_end":18,"is_primary":true,"text":[{"text":"pub type vx_remap = *mut VxRemap;","highlight_start":10,"highlight_end":18}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to upper camel case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":80724,"byte_end":80732,"line_start":2394,"line_end":2394,"column_start":10,"column_end":18,"is_primary":true,"text":[{"text":"pub type vx_remap = *mut VxRemap;","highlight_start":10,"highlight_end":18}],"label":null,"suggested_replacement":"VxRemap","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: type `vx_remap` should have an upper camel case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:2394:10\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m2394\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub type vx_remap = *mut VxRemap;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper camel case: `VxRemap`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"type `vx_delay` should have an upper camel case name","code":{"code":"non_camel_case_types","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":80801,"byte_end":80809,"line_start":2398,"line_end":2398,"column_start":10,"column_end":18,"is_primary":true,"text":[{"text":"pub type vx_delay = *mut VxDelay;","highlight_start":10,"highlight_end":18}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to upper camel case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":80801,"byte_end":80809,"line_start":2398,"line_end":2398,"column_start":10,"column_end":18,"is_primary":true,"text":[{"text":"pub type vx_delay = *mut VxDelay;","highlight_start":10,"highlight_end":18}],"label":null,"suggested_replacement":"VxDelay","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: type `vx_delay` should have an upper camel case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:2398:10\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m2398\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub type vx_delay = *mut VxDelay;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper camel case: `VxDelay`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"type `vx_object_array` should have an upper camel case name","code":{"code":"non_camel_case_types","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":80891,"byte_end":80906,"line_start":2402,"line_end":2402,"column_start":10,"column_end":25,"is_primary":true,"text":[{"text":"pub type vx_object_array = *mut VxObjectArray;","highlight_start":10,"highlight_end":25}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to upper camel case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":80891,"byte_end":80906,"line_start":2402,"line_end":2402,"column_start":10,"column_end":25,"is_primary":true,"text":[{"text":"pub type vx_object_array = *mut VxObjectArray;","highlight_start":10,"highlight_end":25}],"label":null,"suggested_replacement":"VxObjectArray","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: type `vx_object_array` should have an upper camel case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:2402:10\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m2402\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub type vx_object_array = *mut VxObjectArray;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper camel case: `VxObjectArray`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"type `vx_tensor` should have an upper camel case name","code":{"code":"non_camel_case_types","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":80998,"byte_end":81007,"line_start":2406,"line_end":2406,"column_start":10,"column_end":19,"is_primary":true,"text":[{"text":"pub type vx_tensor = *mut VxTensor;","highlight_start":10,"highlight_end":19}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to upper camel case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":80998,"byte_end":81007,"line_start":2406,"line_end":2406,"column_start":10,"column_end":19,"is_primary":true,"text":[{"text":"pub type vx_tensor = *mut VxTensor;","highlight_start":10,"highlight_end":19}],"label":null,"suggested_replacement":"VxTensor","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: type `vx_tensor` should have an upper camel case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:2406:10\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m2406\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub type vx_tensor = *mut VxTensor;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper camel case: `VxTensor`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"type `vx_import` should have an upper camel case name","code":{"code":"non_camel_case_types","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":81079,"byte_end":81088,"line_start":2410,"line_end":2410,"column_start":10,"column_end":19,"is_primary":true,"text":[{"text":"pub type vx_import = *mut VxImport;","highlight_start":10,"highlight_end":19}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to upper camel case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":81079,"byte_end":81088,"line_start":2410,"line_end":2410,"column_start":10,"column_end":19,"is_primary":true,"text":[{"text":"pub type vx_import = *mut VxImport;","highlight_start":10,"highlight_end":19}],"label":null,"suggested_replacement":"VxImport","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: type `vx_import` should have an upper camel case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:2410:10\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m2410\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub type vx_import = *mut VxImport;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper camel case: `VxImport`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"type `vx_meta_format` should have an upper camel case name","code":{"code":"non_camel_case_types","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":81169,"byte_end":81183,"line_start":2414,"line_end":2414,"column_start":10,"column_end":24,"is_primary":true,"text":[{"text":"pub type vx_meta_format = *mut VxMetaFormat;","highlight_start":10,"highlight_end":24}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to upper camel case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":81169,"byte_end":81183,"line_start":2414,"line_end":2414,"column_start":10,"column_end":24,"is_primary":true,"text":[{"text":"pub type vx_meta_format = *mut VxMetaFormat;","highlight_start":10,"highlight_end":24}],"label":null,"suggested_replacement":"VxMetaFormat","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: type `vx_meta_format` should have an upper camel case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:2414:10\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m2414\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub type vx_meta_format = *mut VxMetaFormat;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper camel case: `VxMetaFormat`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"type `vx_target` should have an upper camel case name","code":{"code":"non_camel_case_types","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":81259,"byte_end":81268,"line_start":2418,"line_end":2418,"column_start":10,"column_end":19,"is_primary":true,"text":[{"text":"pub type vx_target = *mut VxTarget;","highlight_start":10,"highlight_end":19}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to upper camel case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":81259,"byte_end":81268,"line_start":2418,"line_end":2418,"column_start":10,"column_end":19,"is_primary":true,"text":[{"text":"pub type vx_target = *mut VxTarget;","highlight_start":10,"highlight_end":19}],"label":null,"suggested_replacement":"VxTarget","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: type `vx_target` should have an upper camel case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:2418:10\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m2418\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub type vx_target = *mut VxTarget;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper camel case: `VxTarget`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"type `vx_graph_parameter` should have an upper camel case name","code":{"code":"non_camel_case_types","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":81357,"byte_end":81375,"line_start":2422,"line_end":2422,"column_start":10,"column_end":28,"is_primary":true,"text":[{"text":"pub type vx_graph_parameter = *mut VxGraphParameter;","highlight_start":10,"highlight_end":28}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to upper camel case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":81357,"byte_end":81375,"line_start":2422,"line_end":2422,"column_start":10,"column_end":28,"is_primary":true,"text":[{"text":"pub type vx_graph_parameter = *mut VxGraphParameter;","highlight_start":10,"highlight_end":28}],"label":null,"suggested_replacement":"VxGraphParameter","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: type `vx_graph_parameter` should have an upper camel case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:2422:10\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m2422\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub type vx_graph_parameter = *mut VxGraphParameter;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper camel case: `VxGraphParameter`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused import: `std::ffi::c_void`","code":{"code":"unused_imports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/vxu_impl.rs","byte_start":200,"byte_end":216,"line_start":6,"line_end":6,"column_start":5,"column_end":21,"is_primary":true,"text":[{"text":"use std::ffi::c_void;","highlight_start":5,"highlight_end":21}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"remove the whole `use` item","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/vxu_impl.rs","byte_start":196,"byte_end":218,"line_start":6,"line_end":7,"column_start":1,"column_end":1,"is_primary":true,"text":[{"text":"use std::ffi::c_void;","highlight_start":1,"highlight_end":22},{"text":"use crate::c_api::{","highlight_start":1,"highlight_end":1}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused import: `std::ffi::c_void`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/vxu_impl.rs:6:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m6\u001b[0m \u001b[1m\u001b[94m|\u001b[0m use std::ffi::c_void;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused imports: `vx_char` and `vx_uint32`","code":{"code":"unused_imports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/vxu_impl.rs","byte_start":388,"byte_end":397,"line_start":10,"line_end":10,"column_start":27,"column_end":36,"is_primary":true,"text":[{"text":" vx_enum, vx_df_image, vx_uint32, vx_size, vx_char,","highlight_start":27,"highlight_end":36}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/vxu_impl.rs","byte_start":408,"byte_end":415,"line_start":10,"line_end":10,"column_start":47,"column_end":54,"is_primary":true,"text":[{"text":" vx_enum, vx_df_image, vx_uint32, vx_size, vx_char,","highlight_start":47,"highlight_end":54}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"remove the unused imports","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/vxu_impl.rs","byte_start":386,"byte_end":397,"line_start":10,"line_end":10,"column_start":25,"column_end":36,"is_primary":true,"text":[{"text":" vx_enum, vx_df_image, vx_uint32, vx_size, vx_char,","highlight_start":25,"highlight_end":36}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null},{"file_name":"openvx-core/src/vxu_impl.rs","byte_start":406,"byte_end":415,"line_start":10,"line_end":10,"column_start":45,"column_end":54,"is_primary":true,"text":[{"text":" vx_enum, vx_df_image, vx_uint32, vx_size, vx_char,","highlight_start":45,"highlight_end":54}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused imports: `vx_char` and `vx_uint32`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/vxu_impl.rs:10:27\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m10\u001b[0m \u001b[1m\u001b[94m|\u001b[0m vx_enum, vx_df_image, vx_uint32, vx_size, vx_char,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m \u001b[1m\u001b[33m^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused import: `crate::c_api_data::vx_pixel_value_t`","code":{"code":"unused_imports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/vxu_impl.rs","byte_start":89187,"byte_end":89222,"line_start":2416,"line_end":2416,"column_start":5,"column_end":40,"is_primary":true,"text":[{"text":"use crate::c_api_data::vx_pixel_value_t;","highlight_start":5,"highlight_end":40}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"remove the whole `use` item","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/vxu_impl.rs","byte_start":89183,"byte_end":89224,"line_start":2416,"line_end":2417,"column_start":1,"column_end":1,"is_primary":true,"text":[{"text":"use crate::c_api_data::vx_pixel_value_t;","highlight_start":1,"highlight_end":41},{"text":"","highlight_start":1,"highlight_end":1}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused import: `crate::c_api_data::vx_pixel_value_t`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/vxu_impl.rs:2416:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m2416\u001b[0m \u001b[1m\u001b[94m|\u001b[0m use crate::c_api_data::vx_pixel_value_t;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused attribute","code":{"code":"unused_attributes","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":173875,"byte_end":173887,"line_start":5806,"line_end":5806,"column_start":1,"column_end":13,"is_primary":true,"text":[{"text":"#[no_mangle]","highlight_start":1,"highlight_end":13}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"attribute also specified here","code":null,"level":"note","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":173823,"byte_end":173835,"line_start":5804,"line_end":5804,"column_start":1,"column_end":13,"is_primary":true,"text":[{"text":"#[no_mangle]","highlight_start":1,"highlight_end":13}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":null},{"message":"`#[warn(unused_attributes)]` (part of `#[warn(unused)]`) on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"remove this attribute","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":173875,"byte_end":173888,"line_start":5806,"line_end":5807,"column_start":1,"column_end":1,"is_primary":true,"text":[{"text":"#[no_mangle]","highlight_start":1,"highlight_end":13},{"text":"pub extern \"C\" fn vxGetParameterByIndex(node: vx_node, index: vx_uint32) -> vx_parameter {","highlight_start":1,"highlight_end":1}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused attribute\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:5806:1\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m5806\u001b[0m \u001b[1m\u001b[94m|\u001b[0m #[no_mangle]\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: remove this attribute\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[92mnote\u001b[0m: attribute also specified here\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:5804:1\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m5804\u001b[0m \u001b[1m\u001b[94m|\u001b[0m #[no_mangle]\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[92m^^^^^^^^^^^^\u001b[0m\n \u001b[1m\u001b[94m= \u001b[0m\u001b[1mnote\u001b[0m: `#[warn(unused_attributes)]` (part of `#[warn(unused)]`) on by default\n\n"} +{"$message_type":"diagnostic","message":"unnecessary `unsafe` block","code":{"code":"unused_unsafe","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":30335,"byte_end":30341,"line_start":916,"line_end":916,"column_start":5,"column_end":11,"is_primary":true,"text":[{"text":" unsafe {","highlight_start":5,"highlight_end":11}],"label":"unnecessary `unsafe` block","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(unused_unsafe)]` (part of `#[warn(unused)]`) on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unnecessary `unsafe` block\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api.rs:916:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m916\u001b[0m \u001b[1m\u001b[94m|\u001b[0m unsafe {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m \u001b[1m\u001b[33munnecessary `unsafe` block\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m= \u001b[0m\u001b[1mnote\u001b[0m: `#[warn(unused_unsafe)]` (part of `#[warn(unused)]`) on by default\n\n"} +{"$message_type":"diagnostic","message":"unnecessary `unsafe` block","code":{"code":"unused_unsafe","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":38806,"byte_end":38812,"line_start":1136,"line_end":1136,"column_start":5,"column_end":11,"is_primary":true,"text":[{"text":" unsafe {","highlight_start":5,"highlight_end":11}],"label":"unnecessary `unsafe` block","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unnecessary `unsafe` block\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api.rs:1136:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m1136\u001b[0m \u001b[1m\u001b[94m|\u001b[0m unsafe {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m \u001b[1m\u001b[33munnecessary `unsafe` block\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unnecessary `unsafe` block","code":{"code":"unused_unsafe","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":42744,"byte_end":42750,"line_start":1242,"line_end":1242,"column_start":5,"column_end":11,"is_primary":true,"text":[{"text":" unsafe {","highlight_start":5,"highlight_end":11}],"label":"unnecessary `unsafe` block","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unnecessary `unsafe` block\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api.rs:1242:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m1242\u001b[0m \u001b[1m\u001b[94m|\u001b[0m unsafe {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m \u001b[1m\u001b[33munnecessary `unsafe` block\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `kernel_data`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":49818,"byte_end":49829,"line_start":1427,"line_end":1427,"column_start":29,"column_end":40,"is_primary":true,"text":[{"text":" if let Some(kernel_data) = kernels.get(&kid) {","highlight_start":29,"highlight_end":40}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(unused_variables)]` (part of `#[warn(unused)]`) on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":49818,"byte_end":49829,"line_start":1427,"line_end":1427,"column_start":29,"column_end":40,"is_primary":true,"text":[{"text":" if let Some(kernel_data) = kernels.get(&kid) {","highlight_start":29,"highlight_end":40}],"label":null,"suggested_replacement":"_kernel_data","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `kernel_data`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api.rs:1427:29\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m1427\u001b[0m \u001b[1m\u001b[94m|\u001b[0m if let Some(kernel_data) = kernels.get(&kid) {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_kernel_data`\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m= \u001b[0m\u001b[1mnote\u001b[0m: `#[warn(unused_variables)]` (part of `#[warn(unused)]`) on by default\n\n"} +{"$message_type":"diagnostic","message":"unnecessary `unsafe` block","code":{"code":"unused_unsafe","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api_data.rs","byte_start":3471,"byte_end":3477,"line_start":110,"line_end":110,"column_start":5,"column_end":11,"is_primary":true,"text":[{"text":" unsafe {","highlight_start":5,"highlight_end":11}],"label":"unnecessary `unsafe` block","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unnecessary `unsafe` block\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api_data.rs:110:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m110\u001b[0m \u001b[1m\u001b[94m|\u001b[0m unsafe {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m \u001b[1m\u001b[33munnecessary `unsafe` block\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unnecessary `unsafe` block","code":{"code":"unused_unsafe","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api_data.rs","byte_start":6879,"byte_end":6885,"line_start":236,"line_end":236,"column_start":5,"column_end":11,"is_primary":true,"text":[{"text":" unsafe {","highlight_start":5,"highlight_end":11}],"label":"unnecessary `unsafe` block","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unnecessary `unsafe` block\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api_data.rs:236:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m236\u001b[0m \u001b[1m\u001b[94m|\u001b[0m unsafe {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m \u001b[1m\u001b[33munnecessary `unsafe` block\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unnecessary `unsafe` block","code":{"code":"unused_unsafe","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api_data.rs","byte_start":12266,"byte_end":12272,"line_start":424,"line_end":424,"column_start":5,"column_end":11,"is_primary":true,"text":[{"text":" unsafe {","highlight_start":5,"highlight_end":11}],"label":"unnecessary `unsafe` block","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unnecessary `unsafe` block\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api_data.rs:424:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m424\u001b[0m \u001b[1m\u001b[94m|\u001b[0m unsafe {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m \u001b[1m\u001b[33munnecessary `unsafe` block\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unnecessary `unsafe` block","code":{"code":"unused_unsafe","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api_data.rs","byte_start":16514,"byte_end":16520,"line_start":582,"line_end":582,"column_start":5,"column_end":11,"is_primary":true,"text":[{"text":" unsafe {","highlight_start":5,"highlight_end":11}],"label":"unnecessary `unsafe` block","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unnecessary `unsafe` block\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api_data.rs:582:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m582\u001b[0m \u001b[1m\u001b[94m|\u001b[0m unsafe {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m \u001b[1m\u001b[33munnecessary `unsafe` block\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unnecessary `unsafe` block","code":{"code":"unused_unsafe","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api_data.rs","byte_start":20478,"byte_end":20484,"line_start":727,"line_end":727,"column_start":5,"column_end":11,"is_primary":true,"text":[{"text":" unsafe {","highlight_start":5,"highlight_end":11}],"label":"unnecessary `unsafe` block","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unnecessary `unsafe` block\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api_data.rs:727:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m727\u001b[0m \u001b[1m\u001b[94m|\u001b[0m unsafe {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m \u001b[1m\u001b[33munnecessary `unsafe` block\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `input_format`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api_data.rs","byte_start":22732,"byte_end":22744,"line_start":800,"line_end":800,"column_start":5,"column_end":17,"is_primary":true,"text":[{"text":" input_format: vx_df_image,","highlight_start":5,"highlight_end":17}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/c_api_data.rs","byte_start":22732,"byte_end":22744,"line_start":800,"line_end":800,"column_start":5,"column_end":17,"is_primary":true,"text":[{"text":" input_format: vx_df_image,","highlight_start":5,"highlight_end":17}],"label":null,"suggested_replacement":"_input_format","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `input_format`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api_data.rs:800:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m800\u001b[0m \u001b[1m\u001b[94m|\u001b[0m input_format: vx_df_image,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_input_format`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unnecessary `unsafe` block","code":{"code":"unused_unsafe","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api_data.rs","byte_start":31319,"byte_end":31325,"line_start":1090,"line_end":1090,"column_start":25,"column_end":31,"is_primary":true,"text":[{"text":" let t = unsafe { &mut *(thresh as *mut VxCThresholdData) };","highlight_start":25,"highlight_end":31}],"label":"unnecessary `unsafe` block","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/c_api_data.rs","byte_start":30986,"byte_end":30992,"line_start":1081,"line_end":1081,"column_start":5,"column_end":11,"is_primary":false,"text":[{"text":" unsafe {","highlight_start":5,"highlight_end":11}],"label":"because it's nested under this `unsafe` block","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unnecessary `unsafe` block\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api_data.rs:1090:25\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m1081\u001b[0m \u001b[1m\u001b[94m|\u001b[0m unsafe {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m------\u001b[0m \u001b[1m\u001b[94mbecause it's nested under this `unsafe` block\u001b[0m\n\u001b[1m\u001b[94m...\u001b[0m\n\u001b[1m\u001b[94m1090\u001b[0m \u001b[1m\u001b[94m|\u001b[0m let t = unsafe { &mut *(thresh as *mut VxCThresholdData) };\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m \u001b[1m\u001b[33munnecessary `unsafe` block\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unreachable pattern","code":{"code":"unreachable_patterns","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api_data.rs","byte_start":32738,"byte_end":32754,"line_start":1146,"line_end":1146,"column_start":28,"column_end":44,"is_primary":true,"text":[{"text":" VX_DF_IMAGE_RGBA | VX_DF_IMAGE_RGBX => 4,","highlight_start":28,"highlight_end":44}],"label":"no value can reach this","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/c_api_data.rs","byte_start":32719,"byte_end":32735,"line_start":1146,"line_end":1146,"column_start":9,"column_end":25,"is_primary":false,"text":[{"text":" VX_DF_IMAGE_RGBA | VX_DF_IMAGE_RGBX => 4,","highlight_start":9,"highlight_end":25}],"label":"matches all the relevant values","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(unreachable_patterns)]` (part of `#[warn(unused)]`) on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unreachable pattern\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api_data.rs:1146:28\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m1146\u001b[0m \u001b[1m\u001b[94m|\u001b[0m VX_DF_IMAGE_RGBA | VX_DF_IMAGE_RGBX => 4,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m----------------\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mno value can reach this\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94mmatches all the relevant values\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m= \u001b[0m\u001b[1mnote\u001b[0m: `#[warn(unreachable_patterns)]` (part of `#[warn(unused)]`) on by default\n\n"} +{"$message_type":"diagnostic","message":"unnecessary `unsafe` block","code":{"code":"unused_unsafe","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api_data.rs","byte_start":33781,"byte_end":33787,"line_start":1185,"line_end":1185,"column_start":5,"column_end":11,"is_primary":true,"text":[{"text":" unsafe {","highlight_start":5,"highlight_end":11}],"label":"unnecessary `unsafe` block","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unnecessary `unsafe` block\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api_data.rs:1185:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m1185\u001b[0m \u001b[1m\u001b[94m|\u001b[0m unsafe {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m \u001b[1m\u001b[33munnecessary `unsafe` block\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unnecessary `unsafe` block","code":{"code":"unused_unsafe","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":21028,"byte_end":21034,"line_start":644,"line_end":644,"column_start":25,"column_end":31,"is_primary":true,"text":[{"text":" unsafe { crate::c_api::vxGetContext(input as vx_reference) },","highlight_start":25,"highlight_end":31}],"label":"unnecessary `unsafe` block","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unnecessary `unsafe` block\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:644:25\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m644\u001b[0m \u001b[1m\u001b[94m|\u001b[0m unsafe { crate::c_api::vxGetContext(input as vx_reference) },\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m \u001b[1m\u001b[33munnecessary `unsafe` block\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unnecessary `unsafe` block","code":{"code":"unused_unsafe","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":21746,"byte_end":21752,"line_start":663,"line_end":663,"column_start":25,"column_end":31,"is_primary":true,"text":[{"text":" unsafe { crate::c_api::vxGetContext(input as vx_reference) },","highlight_start":25,"highlight_end":31}],"label":"unnecessary `unsafe` block","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unnecessary `unsafe` block\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:663:25\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m663\u001b[0m \u001b[1m\u001b[94m|\u001b[0m unsafe { crate::c_api::vxGetContext(input as vx_reference) },\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m \u001b[1m\u001b[33munnecessary `unsafe` block\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unnecessary `unsafe` block","code":{"code":"unused_unsafe","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":22474,"byte_end":22480,"line_start":682,"line_end":682,"column_start":25,"column_end":31,"is_primary":true,"text":[{"text":" unsafe { crate::c_api::vxGetContext(input as vx_reference) },","highlight_start":25,"highlight_end":31}],"label":"unnecessary `unsafe` block","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unnecessary `unsafe` block\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:682:25\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m682\u001b[0m \u001b[1m\u001b[94m|\u001b[0m unsafe { crate::c_api::vxGetContext(input as vx_reference) },\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m \u001b[1m\u001b[33munnecessary `unsafe` block\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unnecessary `unsafe` block","code":{"code":"unused_unsafe","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":23202,"byte_end":23208,"line_start":701,"line_end":701,"column_start":25,"column_end":31,"is_primary":true,"text":[{"text":" unsafe { crate::c_api::vxGetContext(input as vx_reference) },","highlight_start":25,"highlight_end":31}],"label":"unnecessary `unsafe` block","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unnecessary `unsafe` block\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:701:25\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m701\u001b[0m \u001b[1m\u001b[94m|\u001b[0m unsafe { crate::c_api::vxGetContext(input as vx_reference) },\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m \u001b[1m\u001b[33munnecessary `unsafe` block\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unnecessary `unsafe` block","code":{"code":"unused_unsafe","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":23913,"byte_end":23919,"line_start":720,"line_end":720,"column_start":25,"column_end":31,"is_primary":true,"text":[{"text":" unsafe { crate::c_api::vxGetContext(input as vx_reference) },","highlight_start":25,"highlight_end":31}],"label":"unnecessary `unsafe` block","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unnecessary `unsafe` block\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:720:25\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m720\u001b[0m \u001b[1m\u001b[94m|\u001b[0m unsafe { crate::c_api::vxGetContext(input as vx_reference) },\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m \u001b[1m\u001b[33munnecessary `unsafe` block\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unnecessary `unsafe` block","code":{"code":"unused_unsafe","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":24621,"byte_end":24627,"line_start":739,"line_end":739,"column_start":25,"column_end":31,"is_primary":true,"text":[{"text":" unsafe { crate::c_api::vxGetContext(input as vx_reference) },","highlight_start":25,"highlight_end":31}],"label":"unnecessary `unsafe` block","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unnecessary `unsafe` block\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:739:25\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m739\u001b[0m \u001b[1m\u001b[94m|\u001b[0m unsafe { crate::c_api::vxGetContext(input as vx_reference) },\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m \u001b[1m\u001b[33munnecessary `unsafe` block\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unnecessary `unsafe` block","code":{"code":"unused_unsafe","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":25334,"byte_end":25340,"line_start":758,"line_end":758,"column_start":25,"column_end":31,"is_primary":true,"text":[{"text":" unsafe { crate::c_api::vxGetContext(input as vx_reference) },","highlight_start":25,"highlight_end":31}],"label":"unnecessary `unsafe` block","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unnecessary `unsafe` block\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:758:25\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m758\u001b[0m \u001b[1m\u001b[94m|\u001b[0m unsafe { crate::c_api::vxGetContext(input as vx_reference) },\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m \u001b[1m\u001b[33munnecessary `unsafe` block\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unnecessary `unsafe` block","code":{"code":"unused_unsafe","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":26098,"byte_end":26104,"line_start":777,"line_end":777,"column_start":25,"column_end":31,"is_primary":true,"text":[{"text":" unsafe { crate::c_api::vxGetContext(input as vx_reference) },","highlight_start":25,"highlight_end":31}],"label":"unnecessary `unsafe` block","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unnecessary `unsafe` block\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:777:25\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m777\u001b[0m \u001b[1m\u001b[94m|\u001b[0m unsafe { crate::c_api::vxGetContext(input as vx_reference) },\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m \u001b[1m\u001b[33munnecessary `unsafe` block\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unnecessary `unsafe` block","code":{"code":"unused_unsafe","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":26920,"byte_end":26926,"line_start":798,"line_end":798,"column_start":25,"column_end":31,"is_primary":true,"text":[{"text":" unsafe { crate::c_api::vxGetContext(input as vx_reference) },","highlight_start":25,"highlight_end":31}],"label":"unnecessary `unsafe` block","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unnecessary `unsafe` block\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:798:25\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m798\u001b[0m \u001b[1m\u001b[94m|\u001b[0m unsafe { crate::c_api::vxGetContext(input as vx_reference) },\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m \u001b[1m\u001b[33munnecessary `unsafe` block\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unnecessary `unsafe` block","code":{"code":"unused_unsafe","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":32260,"byte_end":32266,"line_start":955,"line_end":955,"column_start":5,"column_end":11,"is_primary":true,"text":[{"text":" unsafe {","highlight_start":5,"highlight_end":11}],"label":"unnecessary `unsafe` block","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unnecessary `unsafe` block\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:955:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m955\u001b[0m \u001b[1m\u001b[94m|\u001b[0m unsafe {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m \u001b[1m\u001b[33munnecessary `unsafe` block\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"value assigned to `count` is never read","code":{"code":"unused_assignments","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":35155,"byte_end":35159,"line_start":1039,"line_end":1039,"column_start":37,"column_end":41,"is_primary":true,"text":[{"text":" let mut count = 0u32;","highlight_start":37,"highlight_end":41}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"maybe it is overwritten before being read?","code":null,"level":"help","spans":[],"children":[],"rendered":null},{"message":"`#[warn(unused_assignments)]` (part of `#[warn(unused)]`) on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: value assigned to `count` is never read\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:1039:37\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m1039\u001b[0m \u001b[1m\u001b[94m|\u001b[0m let mut count = 0u32;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m= \u001b[0m\u001b[1mhelp\u001b[0m: maybe it is overwritten before being read?\n \u001b[1m\u001b[94m= \u001b[0m\u001b[1mnote\u001b[0m: `#[warn(unused_assignments)]` (part of `#[warn(unused)]`) on by default\n\n"} +{"$message_type":"diagnostic","message":"unreachable pattern","code":{"code":"unreachable_patterns","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":39911,"byte_end":39912,"line_start":1154,"line_end":1154,"column_start":9,"column_end":10,"is_primary":true,"text":[{"text":" _ => VX_ERROR_NOT_IMPLEMENTED,","highlight_start":9,"highlight_end":10}],"label":"no value can reach this","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"multiple earlier patterns match some of the same values","code":null,"level":"note","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":39089,"byte_end":39121,"line_start":1134,"line_end":1134,"column_start":9,"column_end":41,"is_primary":false,"text":[{"text":" VX_CONTEXT_ATTRIBUTE_USER_MEMORY => {","highlight_start":9,"highlight_end":41}],"label":"matches some of the same values","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":39211,"byte_end":39248,"line_start":1138,"line_end":1138,"column_start":9,"column_end":46,"is_primary":false,"text":[{"text":" VX_CONTEXT_ATTRIBUTE_IMMEDIATE_BORDER => {","highlight_start":9,"highlight_end":46}],"label":"matches some of the same values","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":39911,"byte_end":39912,"line_start":1154,"line_end":1154,"column_start":9,"column_end":10,"is_primary":true,"text":[{"text":" _ => VX_ERROR_NOT_IMPLEMENTED,","highlight_start":9,"highlight_end":10}],"label":"collectively making this unreachable","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unreachable pattern\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:1154:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m1154\u001b[0m \u001b[1m\u001b[94m|\u001b[0m _ => VX_ERROR_NOT_IMPLEMENTED,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^\u001b[0m \u001b[1m\u001b[33mno value can reach this\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[92mnote\u001b[0m: multiple earlier patterns match some of the same values\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:1154:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m1134\u001b[0m \u001b[1m\u001b[94m|\u001b[0m VX_CONTEXT_ATTRIBUTE_USER_MEMORY => {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m--------------------------------\u001b[0m \u001b[1m\u001b[94mmatches some of the same values\u001b[0m\n\u001b[1m\u001b[94m...\u001b[0m\n\u001b[1m\u001b[94m1138\u001b[0m \u001b[1m\u001b[94m|\u001b[0m VX_CONTEXT_ATTRIBUTE_IMMEDIATE_BORDER => {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m-------------------------------------\u001b[0m \u001b[1m\u001b[94mmatches some of the same values\u001b[0m\n\u001b[1m\u001b[94m...\u001b[0m\n\u001b[1m\u001b[94m1154\u001b[0m \u001b[1m\u001b[94m|\u001b[0m _ => VX_ERROR_NOT_IMPLEMENTED,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[92m^\u001b[0m \u001b[1m\u001b[92mcollectively making this unreachable\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `VX_CONTEXT_ATTRIBUTE_IMMEDIATE_BORDER`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":39211,"byte_end":39248,"line_start":1138,"line_end":1138,"column_start":9,"column_end":46,"is_primary":true,"text":[{"text":" VX_CONTEXT_ATTRIBUTE_IMMEDIATE_BORDER => {","highlight_start":9,"highlight_end":46}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"you might have meant to pattern match on the similarly named constant `VX_CONTEXT_ATTRIBUTE_UNIQUE_KERNELS`","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":39211,"byte_end":39248,"line_start":1138,"line_end":1138,"column_start":9,"column_end":46,"is_primary":true,"text":[{"text":" VX_CONTEXT_ATTRIBUTE_IMMEDIATE_BORDER => {","highlight_start":9,"highlight_end":46}],"label":null,"suggested_replacement":"unified_c_api::VX_CONTEXT_ATTRIBUTE_UNIQUE_KERNELS","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null},{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":39211,"byte_end":39248,"line_start":1138,"line_end":1138,"column_start":9,"column_end":46,"is_primary":true,"text":[{"text":" VX_CONTEXT_ATTRIBUTE_IMMEDIATE_BORDER => {","highlight_start":9,"highlight_end":46}],"label":null,"suggested_replacement":"_VX_CONTEXT_ATTRIBUTE_IMMEDIATE_BORDER","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `VX_CONTEXT_ATTRIBUTE_IMMEDIATE_BORDER`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:1138:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m1138\u001b[0m \u001b[1m\u001b[94m|\u001b[0m VX_CONTEXT_ATTRIBUTE_IMMEDIATE_BORDER => {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[96mhelp\u001b[0m: you might have meant to pattern match on the similarly named constant `VX_CONTEXT_ATTRIBUTE_UNIQUE_KERNELS`\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m1138\u001b[0m \u001b[91m- \u001b[0m \u001b[91mVX_CONTEXT_ATTRIBUTE_IMMEDIATE_BORDER\u001b[0m => {\n\u001b[1m\u001b[94m1138\u001b[0m \u001b[92m+ \u001b[0m \u001b[92munified_c_api::VX_CONTEXT_ATTRIBUTE_UNIQUE_KERNELS\u001b[0m => {\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[96mhelp\u001b[0m: if this is intentional, prefix it with an underscore\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m1138\u001b[0m \u001b[1m\u001b[94m| \u001b[0m \u001b[92m_\u001b[0mVX_CONTEXT_ATTRIBUTE_IMMEDIATE_BORDER => {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[92m+\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"variable does not need to be mutable","code":{"code":"unused_mut","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":44188,"byte_end":44202,"line_start":1270,"line_end":1270,"column_start":23,"column_end":37,"is_primary":true,"text":[{"text":" if let Ok(mut params_mut) = PARAMETERS.lock() {","highlight_start":23,"highlight_end":37}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(unused_mut)]` (part of `#[warn(unused)]`) on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"remove this `mut`","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":44188,"byte_end":44192,"line_start":1270,"line_end":1270,"column_start":23,"column_end":27,"is_primary":true,"text":[{"text":" if let Ok(mut params_mut) = PARAMETERS.lock() {","highlight_start":23,"highlight_end":27}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: variable does not need to be mutable\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:1270:23\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m1270\u001b[0m \u001b[1m\u001b[94m|\u001b[0m if let Ok(mut params_mut) = PARAMETERS.lock() {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m----\u001b[0m\u001b[1m\u001b[33m^^^^^^^^^^\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94mhelp: remove this `mut`\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m= \u001b[0m\u001b[1mnote\u001b[0m: `#[warn(unused_mut)]` (part of `#[warn(unused)]`) on by default\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `context_id`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":43970,"byte_end":43980,"line_start":1263,"line_end":1263,"column_start":5,"column_end":15,"is_primary":true,"text":[{"text":" context_id: u32,","highlight_start":5,"highlight_end":15}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":43970,"byte_end":43980,"line_start":1263,"line_end":1263,"column_start":5,"column_end":15,"is_primary":true,"text":[{"text":" context_id: u32,","highlight_start":5,"highlight_end":15}],"label":null,"suggested_replacement":"_context_id","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `context_id`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:1263:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m1263\u001b[0m \u001b[1m\u001b[94m|\u001b[0m context_id: u32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_context_id`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `kernel_id`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":43991,"byte_end":44000,"line_start":1264,"line_end":1264,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" kernel_id: u64,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":43991,"byte_end":44000,"line_start":1264,"line_end":1264,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" kernel_id: u64,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":"_kernel_id","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `kernel_id`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:1264:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m1264\u001b[0m \u001b[1m\u001b[94m|\u001b[0m kernel_id: u64,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_kernel_id`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unnecessary `unsafe` block","code":{"code":"unused_unsafe","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":59938,"byte_end":59944,"line_start":1704,"line_end":1704,"column_start":25,"column_end":31,"is_primary":true,"text":[{"text":" unsafe {","highlight_start":25,"highlight_end":31}],"label":"unnecessary `unsafe` block","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":49643,"byte_end":49649,"line_start":1453,"line_end":1453,"column_start":5,"column_end":11,"is_primary":false,"text":[{"text":" unsafe {","highlight_start":5,"highlight_end":11}],"label":"because it's nested under this `unsafe` block","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unnecessary `unsafe` block\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:1704:25\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m1453\u001b[0m \u001b[1m\u001b[94m|\u001b[0m unsafe {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m------\u001b[0m \u001b[1m\u001b[94mbecause it's nested under this `unsafe` block\u001b[0m\n\u001b[1m\u001b[94m...\u001b[0m\n\u001b[1m\u001b[94m1704\u001b[0m \u001b[1m\u001b[94m|\u001b[0m unsafe {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m \u001b[1m\u001b[33munnecessary `unsafe` block\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unnecessary `unsafe` block","code":{"code":"unused_unsafe","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":60218,"byte_end":60224,"line_start":1711,"line_end":1711,"column_start":17,"column_end":23,"is_primary":true,"text":[{"text":" unsafe {","highlight_start":17,"highlight_end":23}],"label":"unnecessary `unsafe` block","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":49643,"byte_end":49649,"line_start":1453,"line_end":1453,"column_start":5,"column_end":11,"is_primary":false,"text":[{"text":" unsafe {","highlight_start":5,"highlight_end":11}],"label":"because it's nested under this `unsafe` block","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unnecessary `unsafe` block\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:1711:17\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m1453\u001b[0m \u001b[1m\u001b[94m|\u001b[0m unsafe {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m------\u001b[0m \u001b[1m\u001b[94mbecause it's nested under this `unsafe` block\u001b[0m\n\u001b[1m\u001b[94m...\u001b[0m\n\u001b[1m\u001b[94m1711\u001b[0m \u001b[1m\u001b[94m|\u001b[0m unsafe {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m \u001b[1m\u001b[33munnecessary `unsafe` block\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `msg`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":73598,"byte_end":73601,"line_start":2163,"line_end":2163,"column_start":9,"column_end":12,"is_primary":true,"text":[{"text":" let msg = CStr::from_ptr(message).to_string_lossy();","highlight_start":9,"highlight_end":12}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":73598,"byte_end":73601,"line_start":2163,"line_end":2163,"column_start":9,"column_end":12,"is_primary":true,"text":[{"text":" let msg = CStr::from_ptr(message).to_string_lossy();","highlight_start":9,"highlight_end":12}],"label":null,"suggested_replacement":"_msg","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `msg`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:2163:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m2163\u001b[0m \u001b[1m\u001b[94m|\u001b[0m let msg = CStr::from_ptr(message).to_string_lossy();\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_msg`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `attribute`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":91549,"byte_end":91558,"line_start":2675,"line_end":2675,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" attribute: i32,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":91549,"byte_end":91558,"line_start":2675,"line_end":2675,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" attribute: i32,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":"_attribute","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `attribute`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:2675:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m2675\u001b[0m \u001b[1m\u001b[94m|\u001b[0m attribute: i32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_attribute`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `size`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":91591,"byte_end":91595,"line_start":2677,"line_end":2677,"column_start":5,"column_end":9,"is_primary":true,"text":[{"text":" size: usize,","highlight_start":5,"highlight_end":9}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":91591,"byte_end":91595,"line_start":2677,"line_end":2677,"column_start":5,"column_end":9,"is_primary":true,"text":[{"text":" size: usize,","highlight_start":5,"highlight_end":9}],"label":null,"suggested_replacement":"_size","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `size`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:2677:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m2677\u001b[0m \u001b[1m\u001b[94m|\u001b[0m size: usize,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_size`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `index`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":91916,"byte_end":91921,"line_start":2698,"line_end":2698,"column_start":5,"column_end":10,"is_primary":true,"text":[{"text":" index: u32,","highlight_start":5,"highlight_end":10}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":91916,"byte_end":91921,"line_start":2698,"line_end":2698,"column_start":5,"column_end":10,"is_primary":true,"text":[{"text":" index: u32,","highlight_start":5,"highlight_end":10}],"label":null,"suggested_replacement":"_index","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `index`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:2698:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m2698\u001b[0m \u001b[1m\u001b[94m|\u001b[0m index: u32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_index`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `usage`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":92026,"byte_end":92031,"line_start":2702,"line_end":2702,"column_start":5,"column_end":10,"is_primary":true,"text":[{"text":" usage: i32,","highlight_start":5,"highlight_end":10}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":92026,"byte_end":92031,"line_start":2702,"line_end":2702,"column_start":5,"column_end":10,"is_primary":true,"text":[{"text":" usage: i32,","highlight_start":5,"highlight_end":10}],"label":null,"suggested_replacement":"_usage","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `usage`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:2702:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m2702\u001b[0m \u001b[1m\u001b[94m|\u001b[0m usage: i32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_usage`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `mem_type`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":92042,"byte_end":92050,"line_start":2703,"line_end":2703,"column_start":5,"column_end":13,"is_primary":true,"text":[{"text":" mem_type: i32,","highlight_start":5,"highlight_end":13}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":92042,"byte_end":92050,"line_start":2703,"line_end":2703,"column_start":5,"column_end":13,"is_primary":true,"text":[{"text":" mem_type: i32,","highlight_start":5,"highlight_end":13}],"label":null,"suggested_replacement":"_mem_type","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `mem_type`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:2703:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m2703\u001b[0m \u001b[1m\u001b[94m|\u001b[0m mem_type: i32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_mem_type`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `index`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":92276,"byte_end":92281,"line_start":2715,"line_end":2715,"column_start":5,"column_end":10,"is_primary":true,"text":[{"text":" index: u32,","highlight_start":5,"highlight_end":10}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":92276,"byte_end":92281,"line_start":2715,"line_end":2715,"column_start":5,"column_end":10,"is_primary":true,"text":[{"text":" index: u32,","highlight_start":5,"highlight_end":10}],"label":null,"suggested_replacement":"_index","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `index`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:2715:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m2715\u001b[0m \u001b[1m\u001b[94m|\u001b[0m index: u32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_index`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `map_id`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":92292,"byte_end":92298,"line_start":2716,"line_end":2716,"column_start":5,"column_end":11,"is_primary":true,"text":[{"text":" map_id: usize,","highlight_start":5,"highlight_end":11}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":92292,"byte_end":92298,"line_start":2716,"line_end":2716,"column_start":5,"column_end":11,"is_primary":true,"text":[{"text":" map_id: usize,","highlight_start":5,"highlight_end":11}],"label":null,"suggested_replacement":"_map_id","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `map_id`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:2716:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m2716\u001b[0m \u001b[1m\u001b[94m|\u001b[0m map_id: usize,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_map_id`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `usage`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":92469,"byte_end":92474,"line_start":2728,"line_end":2728,"column_start":5,"column_end":10,"is_primary":true,"text":[{"text":" usage: i32,","highlight_start":5,"highlight_end":10}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":92469,"byte_end":92474,"line_start":2728,"line_end":2728,"column_start":5,"column_end":10,"is_primary":true,"text":[{"text":" usage: i32,","highlight_start":5,"highlight_end":10}],"label":null,"suggested_replacement":"_usage","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `usage`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:2728:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m2728\u001b[0m \u001b[1m\u001b[94m|\u001b[0m usage: i32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_usage`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `user_mem_type`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":92485,"byte_end":92498,"line_start":2729,"line_end":2729,"column_start":5,"column_end":18,"is_primary":true,"text":[{"text":" user_mem_type: i32,","highlight_start":5,"highlight_end":18}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":92485,"byte_end":92498,"line_start":2729,"line_end":2729,"column_start":5,"column_end":18,"is_primary":true,"text":[{"text":" user_mem_type: i32,","highlight_start":5,"highlight_end":18}],"label":null,"suggested_replacement":"_user_mem_type","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `user_mem_type`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:2729:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m2729\u001b[0m \u001b[1m\u001b[94m|\u001b[0m user_mem_type: i32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_user_mem_type`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `start`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":92667,"byte_end":92672,"line_start":2740,"line_end":2740,"column_start":5,"column_end":10,"is_primary":true,"text":[{"text":" start: usize,","highlight_start":5,"highlight_end":10}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":92667,"byte_end":92672,"line_start":2740,"line_end":2740,"column_start":5,"column_end":10,"is_primary":true,"text":[{"text":" start: usize,","highlight_start":5,"highlight_end":10}],"label":null,"suggested_replacement":"_start","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `start`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:2740:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m2740\u001b[0m \u001b[1m\u001b[94m|\u001b[0m start: usize,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_start`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `end`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":92685,"byte_end":92688,"line_start":2741,"line_end":2741,"column_start":5,"column_end":8,"is_primary":true,"text":[{"text":" end: usize,","highlight_start":5,"highlight_end":8}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":92685,"byte_end":92688,"line_start":2741,"line_end":2741,"column_start":5,"column_end":8,"is_primary":true,"text":[{"text":" end: usize,","highlight_start":5,"highlight_end":8}],"label":null,"suggested_replacement":"_end","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `end`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:2741:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m2741\u001b[0m \u001b[1m\u001b[94m|\u001b[0m end: usize,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_end`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `stride`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":92701,"byte_end":92707,"line_start":2742,"line_end":2742,"column_start":5,"column_end":11,"is_primary":true,"text":[{"text":" stride: usize,","highlight_start":5,"highlight_end":11}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":92701,"byte_end":92707,"line_start":2742,"line_end":2742,"column_start":5,"column_end":11,"is_primary":true,"text":[{"text":" stride: usize,","highlight_start":5,"highlight_end":11}],"label":null,"suggested_replacement":"_stride","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `stride`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:2742:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m2742\u001b[0m \u001b[1m\u001b[94m|\u001b[0m stride: usize,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_stride`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `user_mem_type`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":92747,"byte_end":92760,"line_start":2744,"line_end":2744,"column_start":5,"column_end":18,"is_primary":true,"text":[{"text":" user_mem_type: i32,","highlight_start":5,"highlight_end":18}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":92747,"byte_end":92760,"line_start":2744,"line_end":2744,"column_start":5,"column_end":18,"is_primary":true,"text":[{"text":" user_mem_type: i32,","highlight_start":5,"highlight_end":18}],"label":null,"suggested_replacement":"_user_mem_type","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `user_mem_type`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:2744:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m2744\u001b[0m \u001b[1m\u001b[94m|\u001b[0m user_mem_type: i32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_user_mem_type`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `attribute`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":92930,"byte_end":92939,"line_start":2755,"line_end":2755,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" attribute: i32,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":92930,"byte_end":92939,"line_start":2755,"line_end":2755,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" attribute: i32,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":"_attribute","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `attribute`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:2755:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m2755\u001b[0m \u001b[1m\u001b[94m|\u001b[0m attribute: i32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_attribute`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `size`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":92972,"byte_end":92976,"line_start":2757,"line_end":2757,"column_start":5,"column_end":9,"is_primary":true,"text":[{"text":" size: usize,","highlight_start":5,"highlight_end":9}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":92972,"byte_end":92976,"line_start":2757,"line_end":2757,"column_start":5,"column_end":9,"is_primary":true,"text":[{"text":" size: usize,","highlight_start":5,"highlight_end":9}],"label":null,"suggested_replacement":"_size","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `size`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:2757:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m2757\u001b[0m \u001b[1m\u001b[94m|\u001b[0m size: usize,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_size`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `attribute`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":93155,"byte_end":93164,"line_start":2768,"line_end":2768,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" attribute: i32,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":93155,"byte_end":93164,"line_start":2768,"line_end":2768,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" attribute: i32,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":"_attribute","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `attribute`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:2768:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m2768\u001b[0m \u001b[1m\u001b[94m|\u001b[0m attribute: i32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_attribute`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `size`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":93199,"byte_end":93203,"line_start":2770,"line_end":2770,"column_start":5,"column_end":9,"is_primary":true,"text":[{"text":" size: usize,","highlight_start":5,"highlight_end":9}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":93199,"byte_end":93203,"line_start":2770,"line_end":2770,"column_start":5,"column_end":9,"is_primary":true,"text":[{"text":" size: usize,","highlight_start":5,"highlight_end":9}],"label":null,"suggested_replacement":"_size","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `size`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:2770:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m2770\u001b[0m \u001b[1m\u001b[94m|\u001b[0m size: usize,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_size`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `attribute`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":93383,"byte_end":93392,"line_start":2781,"line_end":2781,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" attribute: i32,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":93383,"byte_end":93392,"line_start":2781,"line_end":2781,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" attribute: i32,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":"_attribute","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `attribute`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:2781:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m2781\u001b[0m \u001b[1m\u001b[94m|\u001b[0m attribute: i32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_attribute`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `size`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":93425,"byte_end":93429,"line_start":2783,"line_end":2783,"column_start":5,"column_end":9,"is_primary":true,"text":[{"text":" size: usize,","highlight_start":5,"highlight_end":9}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":93425,"byte_end":93429,"line_start":2783,"line_end":2783,"column_start":5,"column_end":9,"is_primary":true,"text":[{"text":" size: usize,","highlight_start":5,"highlight_end":9}],"label":null,"suggested_replacement":"_size","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `size`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:2783:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m2783\u001b[0m \u001b[1m\u001b[94m|\u001b[0m size: usize,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_size`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `attribute`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":93614,"byte_end":93623,"line_start":2794,"line_end":2794,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" attribute: i32,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":93614,"byte_end":93623,"line_start":2794,"line_end":2794,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" attribute: i32,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":"_attribute","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `attribute`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:2794:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m2794\u001b[0m \u001b[1m\u001b[94m|\u001b[0m attribute: i32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_attribute`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `size`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":93658,"byte_end":93662,"line_start":2796,"line_end":2796,"column_start":5,"column_end":9,"is_primary":true,"text":[{"text":" size: usize,","highlight_start":5,"highlight_end":9}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":93658,"byte_end":93662,"line_start":2796,"line_end":2796,"column_start":5,"column_end":9,"is_primary":true,"text":[{"text":" size: usize,","highlight_start":5,"highlight_end":9}],"label":null,"suggested_replacement":"_size","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `size`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:2796:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m2796\u001b[0m \u001b[1m\u001b[94m|\u001b[0m size: usize,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_size`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `attribute`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":93823,"byte_end":93832,"line_start":2807,"line_end":2807,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" attribute: i32,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":93823,"byte_end":93832,"line_start":2807,"line_end":2807,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" attribute: i32,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":"_attribute","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `attribute`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:2807:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m2807\u001b[0m \u001b[1m\u001b[94m|\u001b[0m attribute: i32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_attribute`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `size`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":93865,"byte_end":93869,"line_start":2809,"line_end":2809,"column_start":5,"column_end":9,"is_primary":true,"text":[{"text":" size: usize,","highlight_start":5,"highlight_end":9}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":93865,"byte_end":93869,"line_start":2809,"line_end":2809,"column_start":5,"column_end":9,"is_primary":true,"text":[{"text":" size: usize,","highlight_start":5,"highlight_end":9}],"label":null,"suggested_replacement":"_size","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `size`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:2809:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m2809\u001b[0m \u001b[1m\u001b[94m|\u001b[0m size: usize,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_size`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unnecessary `unsafe` block","code":{"code":"unused_unsafe","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":94525,"byte_end":94531,"line_start":2839,"line_end":2839,"column_start":5,"column_end":11,"is_primary":true,"text":[{"text":" unsafe {","highlight_start":5,"highlight_end":11}],"label":"unnecessary `unsafe` block","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unnecessary `unsafe` block\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:2839:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m2839\u001b[0m \u001b[1m\u001b[94m|\u001b[0m unsafe {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m \u001b[1m\u001b[33munnecessary `unsafe` block\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `usage`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":96308,"byte_end":96313,"line_start":2903,"line_end":2903,"column_start":5,"column_end":10,"is_primary":true,"text":[{"text":" usage: i32,","highlight_start":5,"highlight_end":10}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":96308,"byte_end":96313,"line_start":2903,"line_end":2903,"column_start":5,"column_end":10,"is_primary":true,"text":[{"text":" usage: i32,","highlight_start":5,"highlight_end":10}],"label":null,"suggested_replacement":"_usage","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `usage`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:2903:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m2903\u001b[0m \u001b[1m\u001b[94m|\u001b[0m usage: i32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_usage`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `user_mem_type`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":96324,"byte_end":96337,"line_start":2904,"line_end":2904,"column_start":5,"column_end":18,"is_primary":true,"text":[{"text":" user_mem_type: i32,","highlight_start":5,"highlight_end":18}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":96324,"byte_end":96337,"line_start":2904,"line_end":2904,"column_start":5,"column_end":18,"is_primary":true,"text":[{"text":" user_mem_type: i32,","highlight_start":5,"highlight_end":18}],"label":null,"suggested_replacement":"_user_mem_type","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `user_mem_type`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:2904:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m2904\u001b[0m \u001b[1m\u001b[94m|\u001b[0m user_mem_type: i32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_user_mem_type`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unnecessary `unsafe` block","code":{"code":"unused_unsafe","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":97590,"byte_end":97596,"line_start":2958,"line_end":2958,"column_start":5,"column_end":11,"is_primary":true,"text":[{"text":" unsafe {","highlight_start":5,"highlight_end":11}],"label":"unnecessary `unsafe` block","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unnecessary `unsafe` block\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:2958:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m2958\u001b[0m \u001b[1m\u001b[94m|\u001b[0m unsafe {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m \u001b[1m\u001b[33munnecessary `unsafe` block\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `attribute`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":97960,"byte_end":97969,"line_start":2973,"line_end":2973,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" attribute: i32,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":97960,"byte_end":97969,"line_start":2973,"line_end":2973,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" attribute: i32,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":"_attribute","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `attribute`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:2973:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m2973\u001b[0m \u001b[1m\u001b[94m|\u001b[0m attribute: i32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_attribute`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `size`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":98002,"byte_end":98006,"line_start":2975,"line_end":2975,"column_start":5,"column_end":9,"is_primary":true,"text":[{"text":" size: usize,","highlight_start":5,"highlight_end":9}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":98002,"byte_end":98006,"line_start":2975,"line_end":2975,"column_start":5,"column_end":9,"is_primary":true,"text":[{"text":" size: usize,","highlight_start":5,"highlight_end":9}],"label":null,"suggested_replacement":"_size","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `size`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:2975:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m2975\u001b[0m \u001b[1m\u001b[94m|\u001b[0m size: usize,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_size`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `usage`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":98200,"byte_end":98205,"line_start":2987,"line_end":2987,"column_start":5,"column_end":10,"is_primary":true,"text":[{"text":" usage: i32,","highlight_start":5,"highlight_end":10}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":98200,"byte_end":98205,"line_start":2987,"line_end":2987,"column_start":5,"column_end":10,"is_primary":true,"text":[{"text":" usage: i32,","highlight_start":5,"highlight_end":10}],"label":null,"suggested_replacement":"_usage","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `usage`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:2987:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m2987\u001b[0m \u001b[1m\u001b[94m|\u001b[0m usage: i32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_usage`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `user_mem_type`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":98216,"byte_end":98229,"line_start":2988,"line_end":2988,"column_start":5,"column_end":18,"is_primary":true,"text":[{"text":" user_mem_type: i32,","highlight_start":5,"highlight_end":18}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":98216,"byte_end":98229,"line_start":2988,"line_end":2988,"column_start":5,"column_end":18,"is_primary":true,"text":[{"text":" user_mem_type: i32,","highlight_start":5,"highlight_end":18}],"label":null,"suggested_replacement":"_user_mem_type","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `user_mem_type`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:2988:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m2988\u001b[0m \u001b[1m\u001b[94m|\u001b[0m user_mem_type: i32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_user_mem_type`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `usage`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":98528,"byte_end":98533,"line_start":3003,"line_end":3003,"column_start":5,"column_end":10,"is_primary":true,"text":[{"text":" usage: i32,","highlight_start":5,"highlight_end":10}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":98528,"byte_end":98533,"line_start":3003,"line_end":3003,"column_start":5,"column_end":10,"is_primary":true,"text":[{"text":" usage: i32,","highlight_start":5,"highlight_end":10}],"label":null,"suggested_replacement":"_usage","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `usage`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:3003:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m3003\u001b[0m \u001b[1m\u001b[94m|\u001b[0m usage: i32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_usage`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `mem_type`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":98544,"byte_end":98552,"line_start":3004,"line_end":3004,"column_start":5,"column_end":13,"is_primary":true,"text":[{"text":" mem_type: i32,","highlight_start":5,"highlight_end":13}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":98544,"byte_end":98552,"line_start":3004,"line_end":3004,"column_start":5,"column_end":13,"is_primary":true,"text":[{"text":" mem_type: i32,","highlight_start":5,"highlight_end":13}],"label":null,"suggested_replacement":"_mem_type","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `mem_type`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:3004:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m3004\u001b[0m \u001b[1m\u001b[94m|\u001b[0m mem_type: i32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_mem_type`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unnecessary `unsafe` block","code":{"code":"unused_unsafe","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":99787,"byte_end":99793,"line_start":3058,"line_end":3058,"column_start":25,"column_end":31,"is_primary":true,"text":[{"text":" let exemplar_type = unsafe {","highlight_start":25,"highlight_end":31}],"label":"unnecessary `unsafe` block","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unnecessary `unsafe` block\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:3058:25\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m3058\u001b[0m \u001b[1m\u001b[94m|\u001b[0m let exemplar_type = unsafe {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m \u001b[1m\u001b[33munnecessary `unsafe` block\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unnecessary `unsafe` block","code":{"code":"unused_unsafe","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":100337,"byte_end":100343,"line_start":3077,"line_end":3077,"column_start":5,"column_end":11,"is_primary":true,"text":[{"text":" unsafe {","highlight_start":5,"highlight_end":11}],"label":"unnecessary `unsafe` block","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unnecessary `unsafe` block\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:3077:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m3077\u001b[0m \u001b[1m\u001b[94m|\u001b[0m unsafe {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m \u001b[1m\u001b[33munnecessary `unsafe` block\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `attribute`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":102294,"byte_end":102303,"line_start":3143,"line_end":3143,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" attribute: i32,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":102294,"byte_end":102303,"line_start":3143,"line_end":3143,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" attribute: i32,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":"_attribute","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `attribute`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:3143:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m3143\u001b[0m \u001b[1m\u001b[94m|\u001b[0m attribute: i32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_attribute`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `size`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":102336,"byte_end":102340,"line_start":3145,"line_end":3145,"column_start":5,"column_end":9,"is_primary":true,"text":[{"text":" size: usize,","highlight_start":5,"highlight_end":9}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":102336,"byte_end":102340,"line_start":3145,"line_end":3145,"column_start":5,"column_end":9,"is_primary":true,"text":[{"text":" size: usize,","highlight_start":5,"highlight_end":9}],"label":null,"suggested_replacement":"_size","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `size`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:3145:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m3145\u001b[0m \u001b[1m\u001b[94m|\u001b[0m size: usize,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_size`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `index`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":102527,"byte_end":102532,"line_start":3156,"line_end":3156,"column_start":5,"column_end":10,"is_primary":true,"text":[{"text":" index: u32,","highlight_start":5,"highlight_end":10}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":102527,"byte_end":102532,"line_start":3156,"line_end":3156,"column_start":5,"column_end":10,"is_primary":true,"text":[{"text":" index: u32,","highlight_start":5,"highlight_end":10}],"label":null,"suggested_replacement":"_index","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `index`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:3156:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m3156\u001b[0m \u001b[1m\u001b[94m|\u001b[0m index: u32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_index`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `index`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":102744,"byte_end":102749,"line_start":3167,"line_end":3167,"column_start":5,"column_end":10,"is_primary":true,"text":[{"text":" index: u32,","highlight_start":5,"highlight_end":10}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":102744,"byte_end":102749,"line_start":3167,"line_end":3167,"column_start":5,"column_end":10,"is_primary":true,"text":[{"text":" index: u32,","highlight_start":5,"highlight_end":10}],"label":null,"suggested_replacement":"_index","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `index`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:3167:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m3167\u001b[0m \u001b[1m\u001b[94m|\u001b[0m index: u32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_index`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `data_type`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":103602,"byte_end":103611,"line_start":3204,"line_end":3204,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" data_type: i32,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":103602,"byte_end":103611,"line_start":3204,"line_end":3204,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" data_type: i32,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":"_data_type","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `data_type`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:3204:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m3204\u001b[0m \u001b[1m\u001b[94m|\u001b[0m data_type: i32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_data_type`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `fixed_point_pos`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":103622,"byte_end":103637,"line_start":3205,"line_end":3205,"column_start":5,"column_end":20,"is_primary":true,"text":[{"text":" fixed_point_pos: i8,","highlight_start":5,"highlight_end":20}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":103622,"byte_end":103637,"line_start":3205,"line_end":3205,"column_start":5,"column_end":20,"is_primary":true,"text":[{"text":" fixed_point_pos: i8,","highlight_start":5,"highlight_end":20}],"label":null,"suggested_replacement":"_fixed_point_pos","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `fixed_point_pos`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:3205:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m3205\u001b[0m \u001b[1m\u001b[94m|\u001b[0m fixed_point_pos: i8,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_fixed_point_pos`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `num_dims`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":103875,"byte_end":103883,"line_start":3216,"line_end":3216,"column_start":5,"column_end":13,"is_primary":true,"text":[{"text":" num_dims: usize,","highlight_start":5,"highlight_end":13}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":103875,"byte_end":103883,"line_start":3216,"line_end":3216,"column_start":5,"column_end":13,"is_primary":true,"text":[{"text":" num_dims: usize,","highlight_start":5,"highlight_end":13}],"label":null,"suggested_replacement":"_num_dims","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `num_dims`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:3216:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m3216\u001b[0m \u001b[1m\u001b[94m|\u001b[0m num_dims: usize,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_num_dims`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `attribute`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":104179,"byte_end":104188,"line_start":3229,"line_end":3229,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" attribute: i32,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":104179,"byte_end":104188,"line_start":3229,"line_end":3229,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" attribute: i32,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":"_attribute","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `attribute`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:3229:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m3229\u001b[0m \u001b[1m\u001b[94m|\u001b[0m attribute: i32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_attribute`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `size`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":104221,"byte_end":104225,"line_start":3231,"line_end":3231,"column_start":5,"column_end":9,"is_primary":true,"text":[{"text":" size: usize,","highlight_start":5,"highlight_end":9}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":104221,"byte_end":104225,"line_start":3231,"line_end":3231,"column_start":5,"column_end":9,"is_primary":true,"text":[{"text":" size: usize,","highlight_start":5,"highlight_end":9}],"label":null,"suggested_replacement":"_size","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `size`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:3231:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m3231\u001b[0m \u001b[1m\u001b[94m|\u001b[0m size: usize,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_size`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `usage`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":104423,"byte_end":104428,"line_start":3243,"line_end":3243,"column_start":5,"column_end":10,"is_primary":true,"text":[{"text":" usage: i32,","highlight_start":5,"highlight_end":10}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":104423,"byte_end":104428,"line_start":3243,"line_end":3243,"column_start":5,"column_end":10,"is_primary":true,"text":[{"text":" usage: i32,","highlight_start":5,"highlight_end":10}],"label":null,"suggested_replacement":"_usage","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `usage`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:3243:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m3243\u001b[0m \u001b[1m\u001b[94m|\u001b[0m usage: i32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_usage`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `user_mem_type`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":104439,"byte_end":104452,"line_start":3244,"line_end":3244,"column_start":5,"column_end":18,"is_primary":true,"text":[{"text":" user_mem_type: i32,","highlight_start":5,"highlight_end":18}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":104439,"byte_end":104452,"line_start":3244,"line_end":3244,"column_start":5,"column_end":18,"is_primary":true,"text":[{"text":" user_mem_type: i32,","highlight_start":5,"highlight_end":18}],"label":null,"suggested_replacement":"_user_mem_type","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `user_mem_type`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:3244:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m3244\u001b[0m \u001b[1m\u001b[94m|\u001b[0m user_mem_type: i32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_user_mem_type`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `num_dims`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":104628,"byte_end":104636,"line_start":3255,"line_end":3255,"column_start":5,"column_end":13,"is_primary":true,"text":[{"text":" num_dims: usize,","highlight_start":5,"highlight_end":13}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":104628,"byte_end":104636,"line_start":3255,"line_end":3255,"column_start":5,"column_end":13,"is_primary":true,"text":[{"text":" num_dims: usize,","highlight_start":5,"highlight_end":13}],"label":null,"suggested_replacement":"_num_dims","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `num_dims`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:3255:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m3255\u001b[0m \u001b[1m\u001b[94m|\u001b[0m num_dims: usize,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_num_dims`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `usage`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":104780,"byte_end":104785,"line_start":3261,"line_end":3261,"column_start":5,"column_end":10,"is_primary":true,"text":[{"text":" usage: i32,","highlight_start":5,"highlight_end":10}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":104780,"byte_end":104785,"line_start":3261,"line_end":3261,"column_start":5,"column_end":10,"is_primary":true,"text":[{"text":" usage: i32,","highlight_start":5,"highlight_end":10}],"label":null,"suggested_replacement":"_usage","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `usage`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:3261:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m3261\u001b[0m \u001b[1m\u001b[94m|\u001b[0m usage: i32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_usage`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `mem_type`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":104796,"byte_end":104804,"line_start":3262,"line_end":3262,"column_start":5,"column_end":13,"is_primary":true,"text":[{"text":" mem_type: i32,","highlight_start":5,"highlight_end":13}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":104796,"byte_end":104804,"line_start":3262,"line_end":3262,"column_start":5,"column_end":13,"is_primary":true,"text":[{"text":" mem_type: i32,","highlight_start":5,"highlight_end":13}],"label":null,"suggested_replacement":"_mem_type","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `mem_type`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:3262:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m3262\u001b[0m \u001b[1m\u001b[94m|\u001b[0m mem_type: i32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_mem_type`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `attribute`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":106464,"byte_end":106473,"line_start":3340,"line_end":3340,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" attribute: i32,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":106464,"byte_end":106473,"line_start":3340,"line_end":3340,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" attribute: i32,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":"_attribute","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `attribute`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:3340:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m3340\u001b[0m \u001b[1m\u001b[94m|\u001b[0m attribute: i32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_attribute`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `size`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":106506,"byte_end":106510,"line_start":3342,"line_end":3342,"column_start":5,"column_end":9,"is_primary":true,"text":[{"text":" size: usize,","highlight_start":5,"highlight_end":9}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":106506,"byte_end":106510,"line_start":3342,"line_end":3342,"column_start":5,"column_end":9,"is_primary":true,"text":[{"text":" size: usize,","highlight_start":5,"highlight_end":9}],"label":null,"suggested_replacement":"_size","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `size`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:3342:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m3342\u001b[0m \u001b[1m\u001b[94m|\u001b[0m size: usize,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_size`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unnecessary `unsafe` block","code":{"code":"unused_unsafe","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":107249,"byte_end":107255,"line_start":3369,"line_end":3369,"column_start":20,"column_end":26,"is_primary":true,"text":[{"text":" let ref_type = unsafe {","highlight_start":20,"highlight_end":26}],"label":"unnecessary `unsafe` block","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unnecessary `unsafe` block\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:3369:20\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m3369\u001b[0m \u001b[1m\u001b[94m|\u001b[0m let ref_type = unsafe {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m \u001b[1m\u001b[33munnecessary `unsafe` block\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `num_refs`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":115115,"byte_end":115123,"line_start":3635,"line_end":3635,"column_start":5,"column_end":13,"is_primary":true,"text":[{"text":" num_refs: usize,","highlight_start":5,"highlight_end":13}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":115115,"byte_end":115123,"line_start":3635,"line_end":3635,"column_start":5,"column_end":13,"is_primary":true,"text":[{"text":" num_refs: usize,","highlight_start":5,"highlight_end":13}],"label":null,"suggested_replacement":"_num_refs","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `num_refs`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:3635:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m3635\u001b[0m \u001b[1m\u001b[94m|\u001b[0m num_refs: usize,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_num_refs`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `uses`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":115167,"byte_end":115171,"line_start":3637,"line_end":3637,"column_start":5,"column_end":9,"is_primary":true,"text":[{"text":" uses: *const usize,","highlight_start":5,"highlight_end":9}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":115167,"byte_end":115171,"line_start":3637,"line_end":3637,"column_start":5,"column_end":9,"is_primary":true,"text":[{"text":" uses: *const usize,","highlight_start":5,"highlight_end":9}],"label":null,"suggested_replacement":"_uses","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `uses`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:3637:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m3637\u001b[0m \u001b[1m\u001b[94m|\u001b[0m uses: *const usize,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_uses`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `attribute`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":115926,"byte_end":115935,"line_start":3675,"line_end":3675,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" attribute: i32,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":115926,"byte_end":115935,"line_start":3675,"line_end":3675,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" attribute: i32,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":"_attribute","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `attribute`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:3675:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m3675\u001b[0m \u001b[1m\u001b[94m|\u001b[0m attribute: i32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_attribute`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `size`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":115968,"byte_end":115972,"line_start":3677,"line_end":3677,"column_start":5,"column_end":9,"is_primary":true,"text":[{"text":" size: usize,","highlight_start":5,"highlight_end":9}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":115968,"byte_end":115972,"line_start":3677,"line_end":3677,"column_start":5,"column_end":9,"is_primary":true,"text":[{"text":" size: usize,","highlight_start":5,"highlight_end":9}],"label":null,"suggested_replacement":"_size","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `size`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:3677:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m3677\u001b[0m \u001b[1m\u001b[94m|\u001b[0m size: usize,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_size`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `attribute`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":116349,"byte_end":116358,"line_start":3696,"line_end":3696,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" attribute: i32,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":116349,"byte_end":116358,"line_start":3696,"line_end":3696,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" attribute: i32,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":"_attribute","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `attribute`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:3696:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m3696\u001b[0m \u001b[1m\u001b[94m|\u001b[0m attribute: i32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_attribute`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `size`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":116391,"byte_end":116395,"line_start":3698,"line_end":3698,"column_start":5,"column_end":9,"is_primary":true,"text":[{"text":" size: usize,","highlight_start":5,"highlight_end":9}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":116391,"byte_end":116395,"line_start":3698,"line_end":3698,"column_start":5,"column_end":9,"is_primary":true,"text":[{"text":" size: usize,","highlight_start":5,"highlight_end":9}],"label":null,"suggested_replacement":"_size","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `size`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:3698:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m3698\u001b[0m \u001b[1m\u001b[94m|\u001b[0m size: usize,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_size`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `attribute`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":116579,"byte_end":116588,"line_start":3709,"line_end":3709,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" attribute: i32,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":116579,"byte_end":116588,"line_start":3709,"line_end":3709,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" attribute: i32,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":"_attribute","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `attribute`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:3709:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m3709\u001b[0m \u001b[1m\u001b[94m|\u001b[0m attribute: i32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_attribute`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `size`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":116623,"byte_end":116627,"line_start":3711,"line_end":3711,"column_start":5,"column_end":9,"is_primary":true,"text":[{"text":" size: usize,","highlight_start":5,"highlight_end":9}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":116623,"byte_end":116627,"line_start":3711,"line_end":3711,"column_start":5,"column_end":9,"is_primary":true,"text":[{"text":" size: usize,","highlight_start":5,"highlight_end":9}],"label":null,"suggested_replacement":"_size","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `size`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:3711:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m3711\u001b[0m \u001b[1m\u001b[94m|\u001b[0m size: usize,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_size`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `index`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":116942,"byte_end":116947,"line_start":3730,"line_end":3730,"column_start":5,"column_end":10,"is_primary":true,"text":[{"text":" index: u32,","highlight_start":5,"highlight_end":10}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":116942,"byte_end":116947,"line_start":3730,"line_end":3730,"column_start":5,"column_end":10,"is_primary":true,"text":[{"text":" index: u32,","highlight_start":5,"highlight_end":10}],"label":null,"suggested_replacement":"_index","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `index`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:3730:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m3730\u001b[0m \u001b[1m\u001b[94m|\u001b[0m index: u32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_index`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `direction`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":116958,"byte_end":116967,"line_start":3731,"line_end":3731,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" direction: i32,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":116958,"byte_end":116967,"line_start":3731,"line_end":3731,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" direction: i32,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":"_direction","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `direction`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:3731:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m3731\u001b[0m \u001b[1m\u001b[94m|\u001b[0m direction: i32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_direction`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `data_type`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":116978,"byte_end":116987,"line_start":3732,"line_end":3732,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" data_type: i32,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":116978,"byte_end":116987,"line_start":3732,"line_end":3732,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" data_type: i32,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":"_data_type","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `data_type`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:3732:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m3732\u001b[0m \u001b[1m\u001b[94m|\u001b[0m data_type: i32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_data_type`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `state`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":116998,"byte_end":117003,"line_start":3733,"line_end":3733,"column_start":5,"column_end":10,"is_primary":true,"text":[{"text":" state: i32,","highlight_start":5,"highlight_end":10}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":116998,"byte_end":117003,"line_start":3733,"line_end":3733,"column_start":5,"column_end":10,"is_primary":true,"text":[{"text":" state: i32,","highlight_start":5,"highlight_end":10}],"label":null,"suggested_replacement":"_state","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `state`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:3733:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m3733\u001b[0m \u001b[1m\u001b[94m|\u001b[0m state: i32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_state`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `pattern`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":117925,"byte_end":117932,"line_start":3789,"line_end":3789,"column_start":5,"column_end":12,"is_primary":true,"text":[{"text":" pattern: i32,","highlight_start":5,"highlight_end":12}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":117925,"byte_end":117932,"line_start":3789,"line_end":3789,"column_start":5,"column_end":12,"is_primary":true,"text":[{"text":" pattern: i32,","highlight_start":5,"highlight_end":12}],"label":null,"suggested_replacement":"_pattern","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `pattern`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:3789:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m3789\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pattern: i32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_pattern`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `pattern`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":118212,"byte_end":118219,"line_start":3802,"line_end":3802,"column_start":5,"column_end":12,"is_primary":true,"text":[{"text":" pattern: i32,","highlight_start":5,"highlight_end":12}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":118212,"byte_end":118219,"line_start":3802,"line_end":3802,"column_start":5,"column_end":12,"is_primary":true,"text":[{"text":" pattern: i32,","highlight_start":5,"highlight_end":12}],"label":null,"suggested_replacement":"_pattern","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `pattern`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:3802:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m3802\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pattern: i32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_pattern`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unnecessary `unsafe` block","code":{"code":"unused_unsafe","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":118535,"byte_end":118541,"line_start":3814,"line_end":3814,"column_start":5,"column_end":11,"is_primary":true,"text":[{"text":" unsafe {","highlight_start":5,"highlight_end":11}],"label":"unnecessary `unsafe` block","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unnecessary `unsafe` block\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:3814:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m3814\u001b[0m \u001b[1m\u001b[94m|\u001b[0m unsafe {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m \u001b[1m\u001b[33munnecessary `unsafe` block\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `usage`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":164194,"byte_end":164199,"line_start":5444,"line_end":5444,"column_start":5,"column_end":10,"is_primary":true,"text":[{"text":" usage: vx_enum,","highlight_start":5,"highlight_end":10}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":164194,"byte_end":164199,"line_start":5444,"line_end":5444,"column_start":5,"column_end":10,"is_primary":true,"text":[{"text":" usage: vx_enum,","highlight_start":5,"highlight_end":10}],"label":null,"suggested_replacement":"_usage","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `usage`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:5444:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m5444\u001b[0m \u001b[1m\u001b[94m|\u001b[0m usage: vx_enum,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_usage`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `range_start`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":167191,"byte_end":167202,"line_start":5560,"line_end":5560,"column_start":5,"column_end":16,"is_primary":true,"text":[{"text":" range_start: vx_size,","highlight_start":5,"highlight_end":16}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":167191,"byte_end":167202,"line_start":5560,"line_end":5560,"column_start":5,"column_end":16,"is_primary":true,"text":[{"text":" range_start: vx_size,","highlight_start":5,"highlight_end":16}],"label":null,"suggested_replacement":"_range_start","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `range_start`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:5560:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m5560\u001b[0m \u001b[1m\u001b[94m|\u001b[0m range_start: vx_size,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_range_start`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `range_end`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":167217,"byte_end":167226,"line_start":5561,"line_end":5561,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" range_end: vx_size,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":167217,"byte_end":167226,"line_start":5561,"line_end":5561,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" range_end: vx_size,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":"_range_end","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `range_end`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:5561:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m5561\u001b[0m \u001b[1m\u001b[94m|\u001b[0m range_end: vx_size,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_range_end`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `user_stride`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":167241,"byte_end":167252,"line_start":5562,"line_end":5562,"column_start":5,"column_end":16,"is_primary":true,"text":[{"text":" user_stride: vx_size,","highlight_start":5,"highlight_end":16}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":167241,"byte_end":167252,"line_start":5562,"line_end":5562,"column_start":5,"column_end":16,"is_primary":true,"text":[{"text":" user_stride: vx_size,","highlight_start":5,"highlight_end":16}],"label":null,"suggested_replacement":"_user_stride","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `user_stride`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:5562:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m5562\u001b[0m \u001b[1m\u001b[94m|\u001b[0m user_stride: vx_size,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_user_stride`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `usage`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":167294,"byte_end":167299,"line_start":5564,"line_end":5564,"column_start":5,"column_end":10,"is_primary":true,"text":[{"text":" usage: vx_enum,","highlight_start":5,"highlight_end":10}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":167294,"byte_end":167299,"line_start":5564,"line_end":5564,"column_start":5,"column_end":10,"is_primary":true,"text":[{"text":" usage: vx_enum,","highlight_start":5,"highlight_end":10}],"label":null,"suggested_replacement":"_usage","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `usage`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:5564:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m5564\u001b[0m \u001b[1m\u001b[94m|\u001b[0m usage: vx_enum,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_usage`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `function`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":172513,"byte_end":172521,"line_start":5756,"line_end":5756,"column_start":5,"column_end":13,"is_primary":true,"text":[{"text":" function: vx_enum,","highlight_start":5,"highlight_end":13}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":172513,"byte_end":172521,"line_start":5756,"line_end":5756,"column_start":5,"column_end":13,"is_primary":true,"text":[{"text":" function: vx_enum,","highlight_start":5,"highlight_end":13}],"label":null,"suggested_replacement":"_function","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `function`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:5756:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m5756\u001b[0m \u001b[1m\u001b[94m|\u001b[0m function: vx_enum,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_function`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `mask_size`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":172557,"byte_end":172566,"line_start":5758,"line_end":5758,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" mask_size: vx_size,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":172557,"byte_end":172566,"line_start":5758,"line_end":5758,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" mask_size: vx_size,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":"_mask_size","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `mask_size`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:5758:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m5758\u001b[0m \u001b[1m\u001b[94m|\u001b[0m mask_size: vx_size,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_mask_size`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `target_enum`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":174855,"byte_end":174866,"line_start":5834,"line_end":5834,"column_start":65,"column_end":76,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxSetImmediateModeTarget(context: vx_context, target_enum: vx_enum, target_string: *const vx_char) -> vx_status {","highlight_start":65,"highlight_end":76}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":174855,"byte_end":174866,"line_start":5834,"line_end":5834,"column_start":65,"column_end":76,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxSetImmediateModeTarget(context: vx_context, target_enum: vx_enum, target_string: *const vx_char) -> vx_status {","highlight_start":65,"highlight_end":76}],"label":null,"suggested_replacement":"_target_enum","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `target_enum`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:5834:65\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m5834\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub extern \"C\" fn vxSetImmediateModeTarget(context: vx_context, target_enum: vx_enum, target_string: *const vx_char) -> vx_status {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_target_enum`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `target_string`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":174877,"byte_end":174890,"line_start":5834,"line_end":5834,"column_start":87,"column_end":100,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxSetImmediateModeTarget(context: vx_context, target_enum: vx_enum, target_string: *const vx_char) -> vx_status {","highlight_start":87,"highlight_end":100}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":174877,"byte_end":174890,"line_start":5834,"line_end":5834,"column_start":87,"column_end":100,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxSetImmediateModeTarget(context: vx_context, target_enum: vx_enum, target_string: *const vx_char) -> vx_status {","highlight_start":87,"highlight_end":100}],"label":null,"suggested_replacement":"_target_string","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `target_string`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:5834:87\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m5834\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub extern \"C\" fn vxSetImmediateModeTarget(context: vx_context, target_enum: vx_enum, target_string: *const vx_char) -> vx_status {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_target_string`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `data_type`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":175120,"byte_end":175129,"line_start":5843,"line_end":5843,"column_start":63,"column_end":72,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxCreateScalarWithSize(context: vx_context, data_type: vx_enum, ptr: *const c_void, size: vx_size) -> vx_scalar {","highlight_start":63,"highlight_end":72}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":175120,"byte_end":175129,"line_start":5843,"line_end":5843,"column_start":63,"column_end":72,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxCreateScalarWithSize(context: vx_context, data_type: vx_enum, ptr: *const c_void, size: vx_size) -> vx_scalar {","highlight_start":63,"highlight_end":72}],"label":null,"suggested_replacement":"_data_type","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `data_type`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:5843:63\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m5843\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub extern \"C\" fn vxCreateScalarWithSize(context: vx_context, data_type: vx_enum, ptr: *const c_void, size: vx_size) -> vx_scalar {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_data_type`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `data_type`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":175964,"byte_end":175973,"line_start":5867,"line_end":5867,"column_start":59,"column_end":68,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxCopyScalarWithSize(scalar: vx_scalar, data_type: vx_enum, ptr: *mut c_void, size: vx_size, usage: vx_enum) -> vx_status {","highlight_start":59,"highlight_end":68}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":175964,"byte_end":175973,"line_start":5867,"line_end":5867,"column_start":59,"column_end":68,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxCopyScalarWithSize(scalar: vx_scalar, data_type: vx_enum, ptr: *mut c_void, size: vx_size, usage: vx_enum) -> vx_status {","highlight_start":59,"highlight_end":68}],"label":null,"suggested_replacement":"_data_type","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `data_type`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:5867:59\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m5867\u001b[0m \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m...\u001b[0mze(scalar: vx_scalar, data_type: vx_enum, ptr: *mut c_void, size: vx_size, usage: vx_enum) -> vx_status {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_data_type`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `size`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":176002,"byte_end":176006,"line_start":5867,"line_end":5867,"column_start":97,"column_end":101,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxCopyScalarWithSize(scalar: vx_scalar, data_type: vx_enum, ptr: *mut c_void, size: vx_size, usage: vx_enum) -> vx_status {","highlight_start":97,"highlight_end":101}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":176002,"byte_end":176006,"line_start":5867,"line_end":5867,"column_start":97,"column_end":101,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxCopyScalarWithSize(scalar: vx_scalar, data_type: vx_enum, ptr: *mut c_void, size: vx_size, usage: vx_enum) -> vx_status {","highlight_start":97,"highlight_end":101}],"label":null,"suggested_replacement":"_size","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `size`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:5867:97\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m5867\u001b[0m \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m...\u001b[0mvx_enum, ptr: *mut c_void, size: vx_size, usage: vx_enum) -> vx_status {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_size`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `usage`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":176017,"byte_end":176022,"line_start":5867,"line_end":5867,"column_start":112,"column_end":117,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxCopyScalarWithSize(scalar: vx_scalar, data_type: vx_enum, ptr: *mut c_void, size: vx_size, usage: vx_enum) -> vx_status {","highlight_start":112,"highlight_end":117}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":176017,"byte_end":176022,"line_start":5867,"line_end":5867,"column_start":112,"column_end":117,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxCopyScalarWithSize(scalar: vx_scalar, data_type: vx_enum, ptr: *mut c_void, size: vx_size, usage: vx_enum) -> vx_status {","highlight_start":112,"highlight_end":117}],"label":null,"suggested_replacement":"_usage","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `usage`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:5867:112\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m5867\u001b[0m \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m...\u001b[0mut c_void, size: vx_size, usage: vx_enum) -> vx_status {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_usage`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unnecessary `unsafe` block","code":{"code":"unused_unsafe","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":176388,"byte_end":176394,"line_start":5880,"line_end":5880,"column_start":5,"column_end":11,"is_primary":true,"text":[{"text":" unsafe {","highlight_start":5,"highlight_end":11}],"label":"unnecessary `unsafe` block","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unnecessary `unsafe` block\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:5880:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m5880\u001b[0m \u001b[1m\u001b[94m|\u001b[0m unsafe {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m \u001b[1m\u001b[33munnecessary `unsafe` block\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unnecessary `unsafe` block","code":{"code":"unused_unsafe","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":176898,"byte_end":176904,"line_start":5894,"line_end":5894,"column_start":5,"column_end":11,"is_primary":true,"text":[{"text":" unsafe {","highlight_start":5,"highlight_end":11}],"label":"unnecessary `unsafe` block","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unnecessary `unsafe` block\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:5894:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m5894\u001b[0m \u001b[1m\u001b[94m|\u001b[0m unsafe {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m \u001b[1m\u001b[33munnecessary `unsafe` block\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `policy`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":176740,"byte_end":176746,"line_start":5890,"line_end":5890,"column_start":90,"column_end":96,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxConvertDepthNode(graph: vx_graph, input: vx_image, output: vx_image, policy: vx_enum, shift: vx_int32) -> vx_node {","highlight_start":90,"highlight_end":96}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":176740,"byte_end":176746,"line_start":5890,"line_end":5890,"column_start":90,"column_end":96,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxConvertDepthNode(graph: vx_graph, input: vx_image, output: vx_image, policy: vx_enum, shift: vx_int32) -> vx_node {","highlight_start":90,"highlight_end":96}],"label":null,"suggested_replacement":"_policy","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `policy`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:5890:90\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m5890\u001b[0m \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m...\u001b[0mimage, output: vx_image, policy: vx_enum, shift: vx_int32) -> vx_node {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_policy`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `shift`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":176757,"byte_end":176762,"line_start":5890,"line_end":5890,"column_start":107,"column_end":112,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxConvertDepthNode(graph: vx_graph, input: vx_image, output: vx_image, policy: vx_enum, shift: vx_int32) -> vx_node {","highlight_start":107,"highlight_end":112}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":176757,"byte_end":176762,"line_start":5890,"line_end":5890,"column_start":107,"column_end":112,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxConvertDepthNode(graph: vx_graph, input: vx_image, output: vx_image, policy: vx_enum, shift: vx_int32) -> vx_node {","highlight_start":107,"highlight_end":112}],"label":null,"suggested_replacement":"_shift","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `shift`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:5890:107\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m5890\u001b[0m \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m...\u001b[0mx_image, policy: vx_enum, shift: vx_int32) -> vx_node {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_shift`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `old_images`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":177249,"byte_end":177259,"line_start":5906,"line_end":5906,"column_start":5,"column_end":15,"is_primary":true,"text":[{"text":" old_images: vx_pyramid,","highlight_start":5,"highlight_end":15}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":177249,"byte_end":177259,"line_start":5906,"line_end":5906,"column_start":5,"column_end":15,"is_primary":true,"text":[{"text":" old_images: vx_pyramid,","highlight_start":5,"highlight_end":15}],"label":null,"suggested_replacement":"_old_images","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `old_images`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:5906:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m5906\u001b[0m \u001b[1m\u001b[94m|\u001b[0m old_images: vx_pyramid,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_old_images`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `new_images`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":177277,"byte_end":177287,"line_start":5907,"line_end":5907,"column_start":5,"column_end":15,"is_primary":true,"text":[{"text":" new_images: vx_pyramid,","highlight_start":5,"highlight_end":15}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":177277,"byte_end":177287,"line_start":5907,"line_end":5907,"column_start":5,"column_end":15,"is_primary":true,"text":[{"text":" new_images: vx_pyramid,","highlight_start":5,"highlight_end":15}],"label":null,"suggested_replacement":"_new_images","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `new_images`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:5907:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m5907\u001b[0m \u001b[1m\u001b[94m|\u001b[0m new_images: vx_pyramid,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_new_images`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `old_points`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":177305,"byte_end":177315,"line_start":5908,"line_end":5908,"column_start":5,"column_end":15,"is_primary":true,"text":[{"text":" old_points: vx_array,","highlight_start":5,"highlight_end":15}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":177305,"byte_end":177315,"line_start":5908,"line_end":5908,"column_start":5,"column_end":15,"is_primary":true,"text":[{"text":" old_points: vx_array,","highlight_start":5,"highlight_end":15}],"label":null,"suggested_replacement":"_old_points","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `old_points`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:5908:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m5908\u001b[0m \u001b[1m\u001b[94m|\u001b[0m old_points: vx_array,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_old_points`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `new_points_estimates`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":177331,"byte_end":177351,"line_start":5909,"line_end":5909,"column_start":5,"column_end":25,"is_primary":true,"text":[{"text":" new_points_estimates: vx_array,","highlight_start":5,"highlight_end":25}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":177331,"byte_end":177351,"line_start":5909,"line_end":5909,"column_start":5,"column_end":25,"is_primary":true,"text":[{"text":" new_points_estimates: vx_array,","highlight_start":5,"highlight_end":25}],"label":null,"suggested_replacement":"_new_points_estimates","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `new_points_estimates`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:5909:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m5909\u001b[0m \u001b[1m\u001b[94m|\u001b[0m new_points_estimates: vx_array,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_new_points_estimates`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `new_points`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":177367,"byte_end":177377,"line_start":5910,"line_end":5910,"column_start":5,"column_end":15,"is_primary":true,"text":[{"text":" new_points: vx_array,","highlight_start":5,"highlight_end":15}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":177367,"byte_end":177377,"line_start":5910,"line_end":5910,"column_start":5,"column_end":15,"is_primary":true,"text":[{"text":" new_points: vx_array,","highlight_start":5,"highlight_end":15}],"label":null,"suggested_replacement":"_new_points","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `new_points`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:5910:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m5910\u001b[0m \u001b[1m\u001b[94m|\u001b[0m new_points: vx_array,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_new_points`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `termination`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":177393,"byte_end":177404,"line_start":5911,"line_end":5911,"column_start":5,"column_end":16,"is_primary":true,"text":[{"text":" termination: vx_enum,","highlight_start":5,"highlight_end":16}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":177393,"byte_end":177404,"line_start":5911,"line_end":5911,"column_start":5,"column_end":16,"is_primary":true,"text":[{"text":" termination: vx_enum,","highlight_start":5,"highlight_end":16}],"label":null,"suggested_replacement":"_termination","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `termination`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:5911:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m5911\u001b[0m \u001b[1m\u001b[94m|\u001b[0m termination: vx_enum,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_termination`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `epsilon`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":177419,"byte_end":177426,"line_start":5912,"line_end":5912,"column_start":5,"column_end":12,"is_primary":true,"text":[{"text":" epsilon: vx_float32,","highlight_start":5,"highlight_end":12}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":177419,"byte_end":177426,"line_start":5912,"line_end":5912,"column_start":5,"column_end":12,"is_primary":true,"text":[{"text":" epsilon: vx_float32,","highlight_start":5,"highlight_end":12}],"label":null,"suggested_replacement":"_epsilon","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `epsilon`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:5912:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m5912\u001b[0m \u001b[1m\u001b[94m|\u001b[0m epsilon: vx_float32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_epsilon`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `num_iterations`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":177444,"byte_end":177458,"line_start":5913,"line_end":5913,"column_start":5,"column_end":19,"is_primary":true,"text":[{"text":" num_iterations: vx_uint32,","highlight_start":5,"highlight_end":19}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":177444,"byte_end":177458,"line_start":5913,"line_end":5913,"column_start":5,"column_end":19,"is_primary":true,"text":[{"text":" num_iterations: vx_uint32,","highlight_start":5,"highlight_end":19}],"label":null,"suggested_replacement":"_num_iterations","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `num_iterations`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:5913:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m5913\u001b[0m \u001b[1m\u001b[94m|\u001b[0m num_iterations: vx_uint32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_num_iterations`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `use_initial_estimate`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":177475,"byte_end":177495,"line_start":5914,"line_end":5914,"column_start":5,"column_end":25,"is_primary":true,"text":[{"text":" use_initial_estimate: vx_bool,","highlight_start":5,"highlight_end":25}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":177475,"byte_end":177495,"line_start":5914,"line_end":5914,"column_start":5,"column_end":25,"is_primary":true,"text":[{"text":" use_initial_estimate: vx_bool,","highlight_start":5,"highlight_end":25}],"label":null,"suggested_replacement":"_use_initial_estimate","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `use_initial_estimate`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:5914:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m5914\u001b[0m \u001b[1m\u001b[94m|\u001b[0m use_initial_estimate: vx_bool,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_use_initial_estimate`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `window_dimension`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":177510,"byte_end":177526,"line_start":5915,"line_end":5915,"column_start":5,"column_end":21,"is_primary":true,"text":[{"text":" window_dimension: vx_size,","highlight_start":5,"highlight_end":21}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":177510,"byte_end":177526,"line_start":5915,"line_end":5915,"column_start":5,"column_end":21,"is_primary":true,"text":[{"text":" window_dimension: vx_size,","highlight_start":5,"highlight_end":21}],"label":null,"suggested_replacement":"_window_dimension","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `window_dimension`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:5915:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m5915\u001b[0m \u001b[1m\u001b[94m|\u001b[0m window_dimension: vx_size,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_window_dimension`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `usage`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":180752,"byte_end":180757,"line_start":6007,"line_end":6007,"column_start":88,"column_end":93,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxMapLUT(lut: vx_lut, map_id: *mut vx_map_id, ptr: *mut *mut c_void, usage: vx_enum, mem_type: vx_enum, copy_enable: vx_bool) -> vx_status {","highlight_start":88,"highlight_end":93}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":180752,"byte_end":180757,"line_start":6007,"line_end":6007,"column_start":88,"column_end":93,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxMapLUT(lut: vx_lut, map_id: *mut vx_map_id, ptr: *mut *mut c_void, usage: vx_enum, mem_type: vx_enum, copy_enable: vx_bool) -> vx_status {","highlight_start":88,"highlight_end":93}],"label":null,"suggested_replacement":"_usage","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `usage`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:6007:88\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m6007\u001b[0m \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m...\u001b[0md, ptr: *mut *mut c_void, usage: vx_enum, mem_type: vx_enum, copy_enable: vx_bool) -> vx_status {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_usage`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `copy_enable`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":180787,"byte_end":180798,"line_start":6007,"line_end":6007,"column_start":123,"column_end":134,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxMapLUT(lut: vx_lut, map_id: *mut vx_map_id, ptr: *mut *mut c_void, usage: vx_enum, mem_type: vx_enum, copy_enable: vx_bool) -> vx_status {","highlight_start":123,"highlight_end":134}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":180787,"byte_end":180798,"line_start":6007,"line_end":6007,"column_start":123,"column_end":134,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxMapLUT(lut: vx_lut, map_id: *mut vx_map_id, ptr: *mut *mut c_void, usage: vx_enum, mem_type: vx_enum, copy_enable: vx_bool) -> vx_status {","highlight_start":123,"highlight_end":134}],"label":null,"suggested_replacement":"_copy_enable","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `copy_enable`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:6007:123\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m6007\u001b[0m \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m...\u001b[0m mem_type: vx_enum, copy_enable: vx_bool) -> vx_status {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_copy_enable`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `map_id`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":181164,"byte_end":181170,"line_start":6022,"line_end":6022,"column_start":43,"column_end":49,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxUnmapLUT(lut: vx_lut, map_id: vx_map_id) -> vx_status {","highlight_start":43,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":181164,"byte_end":181170,"line_start":6022,"line_end":6022,"column_start":43,"column_end":49,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxUnmapLUT(lut: vx_lut, map_id: vx_map_id) -> vx_status {","highlight_start":43,"highlight_end":49}],"label":null,"suggested_replacement":"_map_id","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `map_id`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:6022:43\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m6022\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub extern \"C\" fn vxUnmapLUT(lut: vx_lut, map_id: vx_map_id) -> vx_status {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_map_id`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `pattern`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":182339,"byte_end":182346,"line_start":6059,"line_end":6059,"column_start":75,"column_end":82,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxCreateMatrixFromPatternAndOrigin(context: vx_context, pattern: vx_enum, origin_x: vx_size, origin_y: vx_size, rows: vx_size, cols: vx_size) -> vx_matrix {","highlight_start":75,"highlight_end":82}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":182339,"byte_end":182346,"line_start":6059,"line_end":6059,"column_start":75,"column_end":82,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxCreateMatrixFromPatternAndOrigin(context: vx_context, pattern: vx_enum, origin_x: vx_size, origin_y: vx_size, rows: vx_size, cols: vx_size) -> vx_matrix {","highlight_start":75,"highlight_end":82}],"label":null,"suggested_replacement":"_pattern","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `pattern`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:6059:75\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m6059\u001b[0m \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m...\u001b[0min(context: vx_context, pattern: vx_enum, origin_x: vx_size, origin_y: vx_size, rows: vx_size, cols: vx_size) -> vx_matrix {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_pattern`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `origin_x`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":182357,"byte_end":182365,"line_start":6059,"line_end":6059,"column_start":93,"column_end":101,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxCreateMatrixFromPatternAndOrigin(context: vx_context, pattern: vx_enum, origin_x: vx_size, origin_y: vx_size, rows: vx_size, cols: vx_size) -> vx_matrix {","highlight_start":93,"highlight_end":101}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":182357,"byte_end":182365,"line_start":6059,"line_end":6059,"column_start":93,"column_end":101,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxCreateMatrixFromPatternAndOrigin(context: vx_context, pattern: vx_enum, origin_x: vx_size, origin_y: vx_size, rows: vx_size, cols: vx_size) -> vx_matrix {","highlight_start":93,"highlight_end":101}],"label":null,"suggested_replacement":"_origin_x","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `origin_x`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:6059:93\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m6059\u001b[0m \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m...\u001b[0mext, pattern: vx_enum, origin_x: vx_size, origin_y: vx_size, rows: vx_size, cols: vx_size) -> vx_matrix {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_origin_x`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `origin_y`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":182376,"byte_end":182384,"line_start":6059,"line_end":6059,"column_start":112,"column_end":120,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxCreateMatrixFromPatternAndOrigin(context: vx_context, pattern: vx_enum, origin_x: vx_size, origin_y: vx_size, rows: vx_size, cols: vx_size) -> vx_matrix {","highlight_start":112,"highlight_end":120}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":182376,"byte_end":182384,"line_start":6059,"line_end":6059,"column_start":112,"column_end":120,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxCreateMatrixFromPatternAndOrigin(context: vx_context, pattern: vx_enum, origin_x: vx_size, origin_y: vx_size, rows: vx_size, cols: vx_size) -> vx_matrix {","highlight_start":112,"highlight_end":120}],"label":null,"suggested_replacement":"_origin_y","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `origin_y`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:6059:112\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m6059\u001b[0m \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m...\u001b[0mum, origin_x: vx_size, origin_y: vx_size, rows: vx_size, cols: vx_size) -> vx_matrix {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_origin_y`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `index`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":183100,"byte_end":183105,"line_start":6078,"line_end":6078,"column_start":63,"column_end":68,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxSetGraphParameterByIndex(graph: vx_graph, index: vx_uint32, param: vx_reference) -> vx_status {","highlight_start":63,"highlight_end":68}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":183100,"byte_end":183105,"line_start":6078,"line_end":6078,"column_start":63,"column_end":68,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxSetGraphParameterByIndex(graph: vx_graph, index: vx_uint32, param: vx_reference) -> vx_status {","highlight_start":63,"highlight_end":68}],"label":null,"suggested_replacement":"_index","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `index`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:6078:63\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m6078\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub extern \"C\" fn vxSetGraphParameterByIndex(graph: vx_graph, index: vx_uint32, param: vx_reference) -> vx_status {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_index`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `index`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":183428,"byte_end":183433,"line_start":6090,"line_end":6090,"column_start":63,"column_end":68,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxGetGraphParameterByIndex(graph: vx_graph, index: vx_uint32) -> vx_parameter {","highlight_start":63,"highlight_end":68}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":183428,"byte_end":183433,"line_start":6090,"line_end":6090,"column_start":63,"column_end":68,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxGetGraphParameterByIndex(graph: vx_graph, index: vx_uint32) -> vx_parameter {","highlight_start":63,"highlight_end":68}],"label":null,"suggested_replacement":"_index","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `index`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:6090:63\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m6090\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub extern \"C\" fn vxGetGraphParameterByIndex(graph: vx_graph, index: vx_uint32) -> vx_parameter {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_index`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `callback`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":184593,"byte_end":184601,"line_start":6132,"line_end":6132,"column_start":57,"column_end":65,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxRetrieveNodeCallback(node: vx_node, callback: *mut vx_nodecomplete_f, parameter: *mut *mut c_void) -> vx_status {","highlight_start":57,"highlight_end":65}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":184593,"byte_end":184601,"line_start":6132,"line_end":6132,"column_start":57,"column_end":65,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxRetrieveNodeCallback(node: vx_node, callback: *mut vx_nodecomplete_f, parameter: *mut *mut c_void) -> vx_status {","highlight_start":57,"highlight_end":65}],"label":null,"suggested_replacement":"_callback","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `callback`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:6132:57\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m6132\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub extern \"C\" fn vxRetrieveNodeCallback(node: vx_node, callback: *mut vx_nodecomplete_f, parameter: *mut *mut c_void) -> vx_status {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_callback`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `parameter`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":184627,"byte_end":184636,"line_start":6132,"line_end":6132,"column_start":91,"column_end":100,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxRetrieveNodeCallback(node: vx_node, callback: *mut vx_nodecomplete_f, parameter: *mut *mut c_void) -> vx_status {","highlight_start":91,"highlight_end":100}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":184627,"byte_end":184636,"line_start":6132,"line_end":6132,"column_start":91,"column_end":100,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxRetrieveNodeCallback(node: vx_node, callback: *mut vx_nodecomplete_f, parameter: *mut *mut c_void) -> vx_status {","highlight_start":91,"highlight_end":100}],"label":null,"suggested_replacement":"_parameter","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `parameter`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:6132:91\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m6132\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub extern \"C\" fn vxRetrieveNodeCallback(node: vx_node, callback: *mut vx_nodecomplete_f, parameter: *mut *mut c_void) -> vx_status {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_parameter`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unnecessary `unsafe` block","code":{"code":"unused_unsafe","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":185044,"byte_end":185050,"line_start":6145,"line_end":6145,"column_start":5,"column_end":11,"is_primary":true,"text":[{"text":" unsafe {","highlight_start":5,"highlight_end":11}],"label":"unnecessary `unsafe` block","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unnecessary `unsafe` block\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:6145:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m6145\u001b[0m \u001b[1m\u001b[94m|\u001b[0m unsafe {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m \u001b[1m\u001b[33munnecessary `unsafe` block\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `kernel_size`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":184898,"byte_end":184909,"line_start":6141,"line_end":6141,"column_start":95,"column_end":106,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxHalfScaleGaussianNode(graph: vx_graph, input: vx_image, output: vx_image, kernel_size: vx_size) -> vx_node {","highlight_start":95,"highlight_end":106}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":184898,"byte_end":184909,"line_start":6141,"line_end":6141,"column_start":95,"column_end":106,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxHalfScaleGaussianNode(graph: vx_graph, input: vx_image, output: vx_image, kernel_size: vx_size) -> vx_node {","highlight_start":95,"highlight_end":106}],"label":null,"suggested_replacement":"_kernel_size","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `kernel_size`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:6141:95\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m6141\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub extern \"C\" fn vxHalfScaleGaussianNode(graph: vx_graph, input: vx_image, output: vx_image, kernel_size: vx_size) -> vx_node {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_kernel_size`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `kernel_size`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":185418,"byte_end":185429,"line_start":6155,"line_end":6155,"column_start":96,"column_end":107,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxuHalfScaleGaussian(context: vx_context, input: vx_image, output: vx_image, kernel_size: vx_size) -> vx_status {","highlight_start":96,"highlight_end":107}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":185418,"byte_end":185429,"line_start":6155,"line_end":6155,"column_start":96,"column_end":107,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxuHalfScaleGaussian(context: vx_context, input: vx_image, output: vx_image, kernel_size: vx_size) -> vx_status {","highlight_start":96,"highlight_end":107}],"label":null,"suggested_replacement":"_kernel_size","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `kernel_size`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:6155:96\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m6155\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub extern \"C\" fn vxuHalfScaleGaussian(context: vx_context, input: vx_image, output: vx_image, kernel_size: vx_size) -> vx_status {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_kernel_size`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `map_id`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":185689,"byte_end":185695,"line_start":6164,"line_end":6164,"column_start":68,"column_end":74,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxMapDistribution(distribution: vx_distribution, map_id: *mut vx_map_id, ptr: *mut *mut c_void, usage: vx_enum, mem_type: vx_enum, copy_enable: vx_bool) -> vx_status {","highlight_start":68,"highlight_end":74}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":185689,"byte_end":185695,"line_start":6164,"line_end":6164,"column_start":68,"column_end":74,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxMapDistribution(distribution: vx_distribution, map_id: *mut vx_map_id, ptr: *mut *mut c_void, usage: vx_enum, mem_type: vx_enum, copy_enable: vx_bool) -> vx_status {","highlight_start":68,"highlight_end":74}],"label":null,"suggested_replacement":"_map_id","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `map_id`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:6164:68\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m6164\u001b[0m \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m...\u001b[0mbution: vx_distribution, map_id: *mut vx_map_id, ptr: *mut *mut c_void, usage: vx_enum, mem_type: vx_enum, copy_enable: vx_bool\u001b[1m\u001b[94m...\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_map_id`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `usage`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":185736,"byte_end":185741,"line_start":6164,"line_end":6164,"column_start":115,"column_end":120,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxMapDistribution(distribution: vx_distribution, map_id: *mut vx_map_id, ptr: *mut *mut c_void, usage: vx_enum, mem_type: vx_enum, copy_enable: vx_bool) -> vx_status {","highlight_start":115,"highlight_end":120}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":185736,"byte_end":185741,"line_start":6164,"line_end":6164,"column_start":115,"column_end":120,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxMapDistribution(distribution: vx_distribution, map_id: *mut vx_map_id, ptr: *mut *mut c_void, usage: vx_enum, mem_type: vx_enum, copy_enable: vx_bool) -> vx_status {","highlight_start":115,"highlight_end":120}],"label":null,"suggested_replacement":"_usage","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `usage`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:6164:115\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m6164\u001b[0m \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m...\u001b[0md, ptr: *mut *mut c_void, usage: vx_enum, mem_type: vx_enum, copy_enable: vx_bool) -> vx_status {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_usage`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `mem_type`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":185752,"byte_end":185760,"line_start":6164,"line_end":6164,"column_start":131,"column_end":139,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxMapDistribution(distribution: vx_distribution, map_id: *mut vx_map_id, ptr: *mut *mut c_void, usage: vx_enum, mem_type: vx_enum, copy_enable: vx_bool) -> vx_status {","highlight_start":131,"highlight_end":139}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":185752,"byte_end":185760,"line_start":6164,"line_end":6164,"column_start":131,"column_end":139,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxMapDistribution(distribution: vx_distribution, map_id: *mut vx_map_id, ptr: *mut *mut c_void, usage: vx_enum, mem_type: vx_enum, copy_enable: vx_bool) -> vx_status {","highlight_start":131,"highlight_end":139}],"label":null,"suggested_replacement":"_mem_type","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `mem_type`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:6164:131\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m6164\u001b[0m \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m...\u001b[0m_void, usage: vx_enum, mem_type: vx_enum, copy_enable: vx_bool) -> vx_status {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_mem_type`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `copy_enable`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":185771,"byte_end":185782,"line_start":6164,"line_end":6164,"column_start":150,"column_end":161,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxMapDistribution(distribution: vx_distribution, map_id: *mut vx_map_id, ptr: *mut *mut c_void, usage: vx_enum, mem_type: vx_enum, copy_enable: vx_bool) -> vx_status {","highlight_start":150,"highlight_end":161}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":185771,"byte_end":185782,"line_start":6164,"line_end":6164,"column_start":150,"column_end":161,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxMapDistribution(distribution: vx_distribution, map_id: *mut vx_map_id, ptr: *mut *mut c_void, usage: vx_enum, mem_type: vx_enum, copy_enable: vx_bool) -> vx_status {","highlight_start":150,"highlight_end":161}],"label":null,"suggested_replacement":"_copy_enable","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `copy_enable`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:6164:150\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m6164\u001b[0m \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m...\u001b[0m mem_type: vx_enum, copy_enable: vx_bool) -> vx_status {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_copy_enable`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `map_id`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":186092,"byte_end":186098,"line_start":6176,"line_end":6176,"column_start":70,"column_end":76,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxUnmapDistribution(distribution: vx_distribution, map_id: vx_map_id) -> vx_status {","highlight_start":70,"highlight_end":76}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":186092,"byte_end":186098,"line_start":6176,"line_end":6176,"column_start":70,"column_end":76,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxUnmapDistribution(distribution: vx_distribution, map_id: vx_map_id) -> vx_status {","highlight_start":70,"highlight_end":76}],"label":null,"suggested_replacement":"_map_id","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `map_id`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:6176:70\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m6176\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub extern \"C\" fn vxUnmapDistribution(distribution: vx_distribution, map_id: vx_map_id) -> vx_status {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_map_id`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `policy`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":186397,"byte_end":186403,"line_start":6187,"line_end":6187,"column_start":91,"column_end":97,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxuConvertDepth(context: vx_context, input: vx_image, output: vx_image, policy: vx_enum, shift: vx_int32) -> vx_status {","highlight_start":91,"highlight_end":97}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":186397,"byte_end":186403,"line_start":6187,"line_end":6187,"column_start":91,"column_end":97,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxuConvertDepth(context: vx_context, input: vx_image, output: vx_image, policy: vx_enum, shift: vx_int32) -> vx_status {","highlight_start":91,"highlight_end":97}],"label":null,"suggested_replacement":"_policy","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `policy`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:6187:91\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m6187\u001b[0m \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m...\u001b[0mimage, output: vx_image, policy: vx_enum, shift: vx_int32) -> vx_status {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_policy`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `shift`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":186414,"byte_end":186419,"line_start":6187,"line_end":6187,"column_start":108,"column_end":113,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxuConvertDepth(context: vx_context, input: vx_image, output: vx_image, policy: vx_enum, shift: vx_int32) -> vx_status {","highlight_start":108,"highlight_end":113}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":186414,"byte_end":186419,"line_start":6187,"line_end":6187,"column_start":108,"column_end":113,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxuConvertDepth(context: vx_context, input: vx_image, output: vx_image, policy: vx_enum, shift: vx_int32) -> vx_status {","highlight_start":108,"highlight_end":113}],"label":null,"suggested_replacement":"_shift","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `shift`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:6187:108\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m6187\u001b[0m \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m...\u001b[0mx_image, policy: vx_enum, shift: vx_int32) -> vx_status {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_shift`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unnecessary `unsafe` block","code":{"code":"unused_unsafe","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":186833,"byte_end":186839,"line_start":6200,"line_end":6200,"column_start":5,"column_end":11,"is_primary":true,"text":[{"text":" unsafe {","highlight_start":5,"highlight_end":11}],"label":"unnecessary `unsafe` block","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unnecessary `unsafe` block\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:6200:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m6200\u001b[0m \u001b[1m\u001b[94m|\u001b[0m unsafe {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m \u001b[1m\u001b[33munnecessary `unsafe` block\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unnecessary `unsafe` block","code":{"code":"unused_unsafe","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":187658,"byte_end":187664,"line_start":6223,"line_end":6223,"column_start":5,"column_end":11,"is_primary":true,"text":[{"text":" unsafe {","highlight_start":5,"highlight_end":11}],"label":"unnecessary `unsafe` block","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unnecessary `unsafe` block\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:6223:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m6223\u001b[0m \u001b[1m\u001b[94m|\u001b[0m unsafe {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m \u001b[1m\u001b[33munnecessary `unsafe` block\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `strength_thresh`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":187454,"byte_end":187469,"line_start":6219,"line_end":6219,"column_start":71,"column_end":86,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxFastCornersNode(graph: vx_graph, input: vx_image, strength_thresh: vx_float32, nonmax_suppression: vx_bool, num_corners: vx_array, corners: vx_array) -> vx_node {","highlight_start":71,"highlight_end":86}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":187454,"byte_end":187469,"line_start":6219,"line_end":6219,"column_start":71,"column_end":86,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxFastCornersNode(graph: vx_graph, input: vx_image, strength_thresh: vx_float32, nonmax_suppression: vx_bool, num_corners: vx_array, corners: vx_array) -> vx_node {","highlight_start":71,"highlight_end":86}],"label":null,"suggested_replacement":"_strength_thresh","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `strength_thresh`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:6219:71\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m6219\u001b[0m \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m...\u001b[0mnput: vx_image, strength_thresh: vx_float32, nonmax_suppression: vx_bool, num_corners: vx_array, corners: vx_array) -> vx_node {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_strength_thresh`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `nonmax_suppression`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":187483,"byte_end":187501,"line_start":6219,"line_end":6219,"column_start":100,"column_end":118,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxFastCornersNode(graph: vx_graph, input: vx_image, strength_thresh: vx_float32, nonmax_suppression: vx_bool, num_corners: vx_array, corners: vx_array) -> vx_node {","highlight_start":100,"highlight_end":118}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":187483,"byte_end":187501,"line_start":6219,"line_end":6219,"column_start":100,"column_end":118,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxFastCornersNode(graph: vx_graph, input: vx_image, strength_thresh: vx_float32, nonmax_suppression: vx_bool, num_corners: vx_array, corners: vx_array) -> vx_node {","highlight_start":100,"highlight_end":118}],"label":null,"suggested_replacement":"_nonmax_suppression","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `nonmax_suppression`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:6219:100\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m6219\u001b[0m \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m...\u001b[0m vx_float32, nonmax_suppression: vx_bool, num_corners: vx_array, corners: vx_array) -> vx_node {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_nonmax_suppression`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `num_corners`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":187512,"byte_end":187523,"line_start":6219,"line_end":6219,"column_start":129,"column_end":140,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxFastCornersNode(graph: vx_graph, input: vx_image, strength_thresh: vx_float32, nonmax_suppression: vx_bool, num_corners: vx_array, corners: vx_array) -> vx_node {","highlight_start":129,"highlight_end":140}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":187512,"byte_end":187523,"line_start":6219,"line_end":6219,"column_start":129,"column_end":140,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxFastCornersNode(graph: vx_graph, input: vx_image, strength_thresh: vx_float32, nonmax_suppression: vx_bool, num_corners: vx_array, corners: vx_array) -> vx_node {","highlight_start":129,"highlight_end":140}],"label":null,"suggested_replacement":"_num_corners","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `num_corners`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:6219:129\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m6219\u001b[0m \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m...\u001b[0mppression: vx_bool, num_corners: vx_array, corners: vx_array) -> vx_node {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_num_corners`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `corners`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":187535,"byte_end":187542,"line_start":6219,"line_end":6219,"column_start":152,"column_end":159,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxFastCornersNode(graph: vx_graph, input: vx_image, strength_thresh: vx_float32, nonmax_suppression: vx_bool, num_corners: vx_array, corners: vx_array) -> vx_node {","highlight_start":152,"highlight_end":159}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":187535,"byte_end":187542,"line_start":6219,"line_end":6219,"column_start":152,"column_end":159,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxFastCornersNode(graph: vx_graph, input: vx_image, strength_thresh: vx_float32, nonmax_suppression: vx_bool, num_corners: vx_array, corners: vx_array) -> vx_node {","highlight_start":152,"highlight_end":159}],"label":null,"suggested_replacement":"_corners","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `corners`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:6219:152\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m6219\u001b[0m \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m...\u001b[0m num_corners: vx_array, corners: vx_array) -> vx_node {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_corners`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `strength_thresh`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":187937,"byte_end":187952,"line_start":6232,"line_end":6232,"column_start":72,"column_end":87,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxuFastCorners(context: vx_context, input: vx_image, strength_thresh: vx_float32, nonmax_suppression: vx_bool, num_corners: vx_array, corners: vx_array) -> vx_status {","highlight_start":72,"highlight_end":87}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":187937,"byte_end":187952,"line_start":6232,"line_end":6232,"column_start":72,"column_end":87,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxuFastCorners(context: vx_context, input: vx_image, strength_thresh: vx_float32, nonmax_suppression: vx_bool, num_corners: vx_array, corners: vx_array) -> vx_status {","highlight_start":72,"highlight_end":87}],"label":null,"suggested_replacement":"_strength_thresh","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `strength_thresh`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:6232:72\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m6232\u001b[0m \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m...\u001b[0mnput: vx_image, strength_thresh: vx_float32, nonmax_suppression: vx_bool, num_corners: vx_array, corners: vx_array) -> vx_status {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_strength_thresh`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `nonmax_suppression`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":187966,"byte_end":187984,"line_start":6232,"line_end":6232,"column_start":101,"column_end":119,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxuFastCorners(context: vx_context, input: vx_image, strength_thresh: vx_float32, nonmax_suppression: vx_bool, num_corners: vx_array, corners: vx_array) -> vx_status {","highlight_start":101,"highlight_end":119}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":187966,"byte_end":187984,"line_start":6232,"line_end":6232,"column_start":101,"column_end":119,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxuFastCorners(context: vx_context, input: vx_image, strength_thresh: vx_float32, nonmax_suppression: vx_bool, num_corners: vx_array, corners: vx_array) -> vx_status {","highlight_start":101,"highlight_end":119}],"label":null,"suggested_replacement":"_nonmax_suppression","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `nonmax_suppression`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:6232:101\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m6232\u001b[0m \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m...\u001b[0m vx_float32, nonmax_suppression: vx_bool, num_corners: vx_array, corners: vx_array) -> vx_status {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_nonmax_suppression`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `num_corners`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":187995,"byte_end":188006,"line_start":6232,"line_end":6232,"column_start":130,"column_end":141,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxuFastCorners(context: vx_context, input: vx_image, strength_thresh: vx_float32, nonmax_suppression: vx_bool, num_corners: vx_array, corners: vx_array) -> vx_status {","highlight_start":130,"highlight_end":141}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":187995,"byte_end":188006,"line_start":6232,"line_end":6232,"column_start":130,"column_end":141,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxuFastCorners(context: vx_context, input: vx_image, strength_thresh: vx_float32, nonmax_suppression: vx_bool, num_corners: vx_array, corners: vx_array) -> vx_status {","highlight_start":130,"highlight_end":141}],"label":null,"suggested_replacement":"_num_corners","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `num_corners`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:6232:130\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m6232\u001b[0m \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m...\u001b[0mppression: vx_bool, num_corners: vx_array, corners: vx_array) -> vx_status {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_num_corners`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `corners`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":188018,"byte_end":188025,"line_start":6232,"line_end":6232,"column_start":153,"column_end":160,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxuFastCorners(context: vx_context, input: vx_image, strength_thresh: vx_float32, nonmax_suppression: vx_bool, num_corners: vx_array, corners: vx_array) -> vx_status {","highlight_start":153,"highlight_end":160}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":188018,"byte_end":188025,"line_start":6232,"line_end":6232,"column_start":153,"column_end":160,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxuFastCorners(context: vx_context, input: vx_image, strength_thresh: vx_float32, nonmax_suppression: vx_bool, num_corners: vx_array, corners: vx_array) -> vx_status {","highlight_start":153,"highlight_end":160}],"label":null,"suggested_replacement":"_corners","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `corners`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:6232:153\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m6232\u001b[0m \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m...\u001b[0m num_corners: vx_array, corners: vx_array) -> vx_status {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_corners`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `context`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/vxu_impl.rs","byte_start":16883,"byte_end":16890,"line_start":470,"line_end":470,"column_start":5,"column_end":12,"is_primary":true,"text":[{"text":" context: vx_context,","highlight_start":5,"highlight_end":12}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/vxu_impl.rs","byte_start":16883,"byte_end":16890,"line_start":470,"line_end":470,"column_start":5,"column_end":12,"is_primary":true,"text":[{"text":" context: vx_context,","highlight_start":5,"highlight_end":12}],"label":null,"suggested_replacement":"_context","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `context`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/vxu_impl.rs:470:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m470\u001b[0m \u001b[1m\u001b[94m|\u001b[0m context: vx_context,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_context`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `half_h`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/vxu_impl.rs","byte_start":23999,"byte_end":24005,"line_start":634,"line_end":634,"column_start":25,"column_end":31,"is_primary":true,"text":[{"text":" let half_h = (height + 1) / 2;","highlight_start":25,"highlight_end":31}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/vxu_impl.rs","byte_start":23999,"byte_end":24005,"line_start":634,"line_end":634,"column_start":25,"column_end":31,"is_primary":true,"text":[{"text":" let half_h = (height + 1) / 2;","highlight_start":25,"highlight_end":31}],"label":null,"suggested_replacement":"_half_h","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `half_h`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/vxu_impl.rs:634:25\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m634\u001b[0m \u001b[1m\u001b[94m|\u001b[0m let half_h = (height + 1) / 2;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_half_h`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `half_h`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/vxu_impl.rs","byte_start":37276,"byte_end":37282,"line_start":907,"line_end":907,"column_start":25,"column_end":31,"is_primary":true,"text":[{"text":" let half_h = (height + 1) / 2;","highlight_start":25,"highlight_end":31}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/vxu_impl.rs","byte_start":37276,"byte_end":37282,"line_start":907,"line_end":907,"column_start":25,"column_end":31,"is_primary":true,"text":[{"text":" let half_h = (height + 1) / 2;","highlight_start":25,"highlight_end":31}],"label":null,"suggested_replacement":"_half_h","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `half_h`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/vxu_impl.rs:907:25\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m907\u001b[0m \u001b[1m\u001b[94m|\u001b[0m let half_h = (height + 1) / 2;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_half_h`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `half_h`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/vxu_impl.rs","byte_start":40415,"byte_end":40421,"line_start":971,"line_end":971,"column_start":25,"column_end":31,"is_primary":true,"text":[{"text":" let half_h = (height + 1) / 2;","highlight_start":25,"highlight_end":31}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/vxu_impl.rs","byte_start":40415,"byte_end":40421,"line_start":971,"line_end":971,"column_start":25,"column_end":31,"is_primary":true,"text":[{"text":" let half_h = (height + 1) / 2;","highlight_start":25,"highlight_end":31}],"label":null,"suggested_replacement":"_half_h","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `half_h`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/vxu_impl.rs:971:25\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m971\u001b[0m \u001b[1m\u001b[94m|\u001b[0m let half_h = (height + 1) / 2;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_half_h`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `half_h`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/vxu_impl.rs","byte_start":53958,"byte_end":53964,"line_start":1244,"line_end":1244,"column_start":25,"column_end":31,"is_primary":true,"text":[{"text":" let half_h = (height + 1) / 2;","highlight_start":25,"highlight_end":31}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/vxu_impl.rs","byte_start":53958,"byte_end":53964,"line_start":1244,"line_end":1244,"column_start":25,"column_end":31,"is_primary":true,"text":[{"text":" let half_h = (height + 1) / 2;","highlight_start":25,"highlight_end":31}],"label":null,"suggested_replacement":"_half_h","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `half_h`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/vxu_impl.rs:1244:25\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m1244\u001b[0m \u001b[1m\u001b[94m|\u001b[0m let half_h = (height + 1) / 2;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_half_h`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"variable does not need to be mutable","code":{"code":"unused_mut","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/vxu_impl.rs","byte_start":56779,"byte_end":56791,"line_start":1318,"line_end":1318,"column_start":13,"column_end":25,"is_primary":true,"text":[{"text":" let mut dst_data = dst.data_mut();","highlight_start":13,"highlight_end":25}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"remove this `mut`","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/vxu_impl.rs","byte_start":56779,"byte_end":56783,"line_start":1318,"line_end":1318,"column_start":13,"column_end":17,"is_primary":true,"text":[{"text":" let mut dst_data = dst.data_mut();","highlight_start":13,"highlight_end":17}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: variable does not need to be mutable\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/vxu_impl.rs:1318:13\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m1318\u001b[0m \u001b[1m\u001b[94m|\u001b[0m let mut dst_data = dst.data_mut();\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m----\u001b[0m\u001b[1m\u001b[33m^^^^^^^^\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94mhelp: remove this `mut`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"variable does not need to be mutable","code":{"code":"unused_mut","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/vxu_impl.rs","byte_start":58743,"byte_end":58755,"line_start":1376,"line_end":1376,"column_start":13,"column_end":25,"is_primary":true,"text":[{"text":" let mut dst_data = dst.data_mut();","highlight_start":13,"highlight_end":25}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"remove this `mut`","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/vxu_impl.rs","byte_start":58743,"byte_end":58747,"line_start":1376,"line_end":1376,"column_start":13,"column_end":17,"is_primary":true,"text":[{"text":" let mut dst_data = dst.data_mut();","highlight_start":13,"highlight_end":17}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: variable does not need to be mutable\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/vxu_impl.rs:1376:13\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m1376\u001b[0m \u001b[1m\u001b[94m|\u001b[0m let mut dst_data = dst.data_mut();\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m----\u001b[0m\u001b[1m\u001b[33m^^^^^^^^\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94mhelp: remove this `mut`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unnecessary `unsafe` block","code":{"code":"unused_unsafe","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/vxu_impl.rs","byte_start":66429,"byte_end":66435,"line_start":1635,"line_end":1635,"column_start":37,"column_end":43,"is_primary":true,"text":[{"text":" let const_val = unsafe { b.constant_value.U8 };","highlight_start":37,"highlight_end":43}],"label":"unnecessary `unsafe` block","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/vxu_impl.rs","byte_start":65915,"byte_end":65921,"line_start":1620,"line_end":1620,"column_start":5,"column_end":11,"is_primary":false,"text":[{"text":" unsafe {","highlight_start":5,"highlight_end":11}],"label":"because it's nested under this `unsafe` block","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unnecessary `unsafe` block\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/vxu_impl.rs:1635:37\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m1620\u001b[0m \u001b[1m\u001b[94m|\u001b[0m unsafe {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m------\u001b[0m \u001b[1m\u001b[94mbecause it's nested under this `unsafe` block\u001b[0m\n\u001b[1m\u001b[94m...\u001b[0m\n\u001b[1m\u001b[94m1635\u001b[0m \u001b[1m\u001b[94m|\u001b[0m let const_val = unsafe { b.constant_value.U8 };\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m \u001b[1m\u001b[33munnecessary `unsafe` block\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unnecessary `unsafe` block","code":{"code":"unused_unsafe","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/vxu_impl.rs","byte_start":67888,"byte_end":67894,"line_start":1685,"line_end":1685,"column_start":37,"column_end":43,"is_primary":true,"text":[{"text":" let const_val = unsafe { b.constant_value.U8 };","highlight_start":37,"highlight_end":43}],"label":"unnecessary `unsafe` block","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/vxu_impl.rs","byte_start":67374,"byte_end":67380,"line_start":1670,"line_end":1670,"column_start":5,"column_end":11,"is_primary":false,"text":[{"text":" unsafe {","highlight_start":5,"highlight_end":11}],"label":"because it's nested under this `unsafe` block","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unnecessary `unsafe` block\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/vxu_impl.rs:1685:37\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m1670\u001b[0m \u001b[1m\u001b[94m|\u001b[0m unsafe {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m------\u001b[0m \u001b[1m\u001b[94mbecause it's nested under this `unsafe` block\u001b[0m\n\u001b[1m\u001b[94m...\u001b[0m\n\u001b[1m\u001b[94m1685\u001b[0m \u001b[1m\u001b[94m|\u001b[0m let const_val = unsafe { b.constant_value.U8 };\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m \u001b[1m\u001b[33munnecessary `unsafe` block\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"variable does not need to be mutable","code":{"code":"unused_mut","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/vxu_impl.rs","byte_start":133191,"byte_end":133203,"line_start":3822,"line_end":3822,"column_start":9,"column_end":21,"is_primary":true,"text":[{"text":" let mut dst_data = dst.data_mut();","highlight_start":9,"highlight_end":21}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"remove this `mut`","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/vxu_impl.rs","byte_start":133191,"byte_end":133195,"line_start":3822,"line_end":3822,"column_start":9,"column_end":13,"is_primary":true,"text":[{"text":" let mut dst_data = dst.data_mut();","highlight_start":9,"highlight_end":13}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: variable does not need to be mutable\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/vxu_impl.rs:3822:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m3822\u001b[0m \u001b[1m\u001b[94m|\u001b[0m let mut dst_data = dst.data_mut();\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m----\u001b[0m\u001b[1m\u001b[33m^^^^^^^^\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94mhelp: remove this `mut`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `dx2`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/vxu_impl.rs","byte_start":132273,"byte_end":132276,"line_start":3796,"line_end":3796,"column_start":28,"column_end":31,"is_primary":true,"text":[{"text":" let (dx1, dy1, dx2, dy2) = match angle {","highlight_start":28,"highlight_end":31}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/vxu_impl.rs","byte_start":132273,"byte_end":132276,"line_start":3796,"line_end":3796,"column_start":28,"column_end":31,"is_primary":true,"text":[{"text":" let (dx1, dy1, dx2, dy2) = match angle {","highlight_start":28,"highlight_end":31}],"label":null,"suggested_replacement":"_dx2","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `dx2`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/vxu_impl.rs:3796:28\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m3796\u001b[0m \u001b[1m\u001b[94m|\u001b[0m let (dx1, dy1, dx2, dy2) = match angle {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_dx2`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"variable does not need to be mutable","code":{"code":"unused_mut","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/vxu_impl.rs","byte_start":146338,"byte_end":146350,"line_start":4229,"line_end":4229,"column_start":13,"column_end":25,"is_primary":true,"text":[{"text":" let mut dst_data = dst.data_mut();","highlight_start":13,"highlight_end":25}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"remove this `mut`","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/vxu_impl.rs","byte_start":146338,"byte_end":146342,"line_start":4229,"line_end":4229,"column_start":13,"column_end":17,"is_primary":true,"text":[{"text":" let mut dst_data = dst.data_mut();","highlight_start":13,"highlight_end":17}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: variable does not need to be mutable\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/vxu_impl.rs:4229:13\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m4229\u001b[0m \u001b[1m\u001b[94m|\u001b[0m let mut dst_data = dst.data_mut();\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m----\u001b[0m\u001b[1m\u001b[33m^^^^^^^^\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94mhelp: remove this `mut`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"variable does not need to be mutable","code":{"code":"unused_mut","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/vxu_impl.rs","byte_start":147609,"byte_end":147621,"line_start":4275,"line_end":4275,"column_start":13,"column_end":25,"is_primary":true,"text":[{"text":" let mut dst_data = dst.data_mut();","highlight_start":13,"highlight_end":25}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"remove this `mut`","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/vxu_impl.rs","byte_start":147609,"byte_end":147613,"line_start":4275,"line_end":4275,"column_start":13,"column_end":17,"is_primary":true,"text":[{"text":" let mut dst_data = dst.data_mut();","highlight_start":13,"highlight_end":17}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: variable does not need to be mutable\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/vxu_impl.rs:4275:13\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m4275\u001b[0m \u001b[1m\u001b[94m|\u001b[0m let mut dst_data = dst.data_mut();\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m----\u001b[0m\u001b[1m\u001b[33m^^^^^^^^\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94mhelp: remove this `mut`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"variable does not need to be mutable","code":{"code":"unused_mut","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/vxu_impl.rs","byte_start":148882,"byte_end":148894,"line_start":4321,"line_end":4321,"column_start":13,"column_end":25,"is_primary":true,"text":[{"text":" let mut dst_data = dst.data_mut();","highlight_start":13,"highlight_end":25}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"remove this `mut`","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/vxu_impl.rs","byte_start":148882,"byte_end":148886,"line_start":4321,"line_end":4321,"column_start":13,"column_end":17,"is_primary":true,"text":[{"text":" let mut dst_data = dst.data_mut();","highlight_start":13,"highlight_end":17}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: variable does not need to be mutable\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/vxu_impl.rs:4321:13\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m4321\u001b[0m \u001b[1m\u001b[94m|\u001b[0m let mut dst_data = dst.data_mut();\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m----\u001b[0m\u001b[1m\u001b[33m^^^^^^^^\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94mhelp: remove this `mut`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"variable does not need to be mutable","code":{"code":"unused_mut","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/vxu_impl.rs","byte_start":149978,"byte_end":149990,"line_start":4361,"line_end":4361,"column_start":13,"column_end":25,"is_primary":true,"text":[{"text":" let mut dst_data = dst.data_mut();","highlight_start":13,"highlight_end":25}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"remove this `mut`","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/vxu_impl.rs","byte_start":149978,"byte_end":149982,"line_start":4361,"line_end":4361,"column_start":13,"column_end":17,"is_primary":true,"text":[{"text":" let mut dst_data = dst.data_mut();","highlight_start":13,"highlight_end":17}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: variable does not need to be mutable\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/vxu_impl.rs:4361:13\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m4361\u001b[0m \u001b[1m\u001b[94m|\u001b[0m let mut dst_data = dst.data_mut();\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m----\u001b[0m\u001b[1m\u001b[33m^^^^^^^^\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94mhelp: remove this `mut`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"fields `vendor_id`, `version`, and `implementation` are never read","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/context.rs","byte_start":218,"byte_end":225,"line_start":9,"line_end":9,"column_start":12,"column_end":19,"is_primary":false,"text":[{"text":"pub struct Context {","highlight_start":12,"highlight_end":19}],"label":"fields in this struct","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/context.rs","byte_start":282,"byte_end":291,"line_start":12,"line_end":12,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" vendor_id: u32,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/context.rs","byte_start":302,"byte_end":309,"line_start":13,"line_end":13,"column_start":5,"column_end":12,"is_primary":true,"text":[{"text":" version: (u32, u32),","highlight_start":5,"highlight_end":12}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/context.rs","byte_start":327,"byte_end":341,"line_start":14,"line_end":14,"column_start":5,"column_end":19,"is_primary":true,"text":[{"text":" implementation: String,","highlight_start":5,"highlight_end":19}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(dead_code)]` (part of `#[warn(unused)]`) on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: fields `vendor_id`, `version`, and `implementation` are never read\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/context.rs:12:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m 9\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub struct Context {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m-------\u001b[0m \u001b[1m\u001b[94mfields in this struct\u001b[0m\n\u001b[1m\u001b[94m...\u001b[0m\n\u001b[1m\u001b[94m12\u001b[0m \u001b[1m\u001b[94m|\u001b[0m vendor_id: u32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m\n\u001b[1m\u001b[94m13\u001b[0m \u001b[1m\u001b[94m|\u001b[0m version: (u32, u32),\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^\u001b[0m\n\u001b[1m\u001b[94m14\u001b[0m \u001b[1m\u001b[94m|\u001b[0m implementation: String,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m= \u001b[0m\u001b[1mnote\u001b[0m: `#[warn(dead_code)]` (part of `#[warn(unused)]`) on by default\n\n"} +{"$message_type":"diagnostic","message":"fields `data` and `context` are never read","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api_data.rs","byte_start":2255,"byte_end":2268,"line_start":63,"line_end":63,"column_start":12,"column_end":25,"is_primary":false,"text":[{"text":"pub struct VxCScalarData {","highlight_start":12,"highlight_end":25}],"label":"fields in this struct","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/c_api_data.rs","byte_start":2299,"byte_end":2303,"line_start":65,"line_end":65,"column_start":5,"column_end":9,"is_primary":true,"text":[{"text":" data: Vec,","highlight_start":5,"highlight_end":9}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/c_api_data.rs","byte_start":2318,"byte_end":2325,"line_start":66,"line_end":66,"column_start":5,"column_end":12,"is_primary":true,"text":[{"text":" context: vx_context,","highlight_start":5,"highlight_end":12}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: fields `data` and `context` are never read\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api_data.rs:65:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m63\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub struct VxCScalarData {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m-------------\u001b[0m \u001b[1m\u001b[94mfields in this struct\u001b[0m\n\u001b[1m\u001b[94m64\u001b[0m \u001b[1m\u001b[94m|\u001b[0m data_type: vx_enum,\n\u001b[1m\u001b[94m65\u001b[0m \u001b[1m\u001b[94m|\u001b[0m data: Vec,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^\u001b[0m\n\u001b[1m\u001b[94m66\u001b[0m \u001b[1m\u001b[94m|\u001b[0m context: vx_context,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"fields `scale` and `context` are never read","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api_data.rs","byte_start":5961,"byte_end":5979,"line_start":197,"line_end":197,"column_start":12,"column_end":30,"is_primary":false,"text":[{"text":"pub struct VxCConvolutionData {","highlight_start":12,"highlight_end":30}],"label":"fields in this struct","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/c_api_data.rs","byte_start":6027,"byte_end":6032,"line_start":200,"line_end":200,"column_start":5,"column_end":10,"is_primary":true,"text":[{"text":" scale: vx_uint32,","highlight_start":5,"highlight_end":10}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/c_api_data.rs","byte_start":6077,"byte_end":6084,"line_start":202,"line_end":202,"column_start":5,"column_end":12,"is_primary":true,"text":[{"text":" context: vx_context,","highlight_start":5,"highlight_end":12}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: fields `scale` and `context` are never read\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api_data.rs:200:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m197\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub struct VxCConvolutionData {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m------------------\u001b[0m \u001b[1m\u001b[94mfields in this struct\u001b[0m\n\u001b[1m\u001b[94m...\u001b[0m\n\u001b[1m\u001b[94m200\u001b[0m \u001b[1m\u001b[94m|\u001b[0m scale: vx_uint32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^\u001b[0m\n\u001b[1m\u001b[94m201\u001b[0m \u001b[1m\u001b[94m|\u001b[0m data: RwLock>,\n\u001b[1m\u001b[94m202\u001b[0m \u001b[1m\u001b[94m|\u001b[0m context: vx_context,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"fields `offset` and `context` are never read","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api_data.rs","byte_start":15316,"byte_end":15326,"line_start":530,"line_end":530,"column_start":12,"column_end":22,"is_primary":false,"text":[{"text":"pub struct VxCLUTData {","highlight_start":12,"highlight_end":22}],"label":"fields in this struct","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/c_api_data.rs","byte_start":15377,"byte_end":15383,"line_start":533,"line_end":533,"column_start":5,"column_end":11,"is_primary":true,"text":[{"text":" offset: vx_int32,","highlight_start":5,"highlight_end":11}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/c_api_data.rs","byte_start":15426,"byte_end":15433,"line_start":535,"line_end":535,"column_start":5,"column_end":12,"is_primary":true,"text":[{"text":" context: vx_context,","highlight_start":5,"highlight_end":12}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: fields `offset` and `context` are never read\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api_data.rs:533:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m530\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub struct VxCLUTData {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m----------\u001b[0m \u001b[1m\u001b[94mfields in this struct\u001b[0m\n\u001b[1m\u001b[94m...\u001b[0m\n\u001b[1m\u001b[94m533\u001b[0m \u001b[1m\u001b[94m|\u001b[0m offset: vx_int32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m\n\u001b[1m\u001b[94m534\u001b[0m \u001b[1m\u001b[94m|\u001b[0m data: RwLock>,\n\u001b[1m\u001b[94m535\u001b[0m \u001b[1m\u001b[94m|\u001b[0m context: vx_context,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"field `context` is never read","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api_data.rs","byte_start":19382,"byte_end":19398,"line_start":684,"line_end":684,"column_start":12,"column_end":28,"is_primary":false,"text":[{"text":"pub struct VxCThresholdData {","highlight_start":12,"highlight_end":28}],"label":"field in this struct","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/c_api_data.rs","byte_start":19670,"byte_end":19677,"line_start":694,"line_end":694,"column_start":5,"column_end":12,"is_primary":true,"text":[{"text":" context: vx_context,","highlight_start":5,"highlight_end":12}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: field `context` is never read\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api_data.rs:694:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m684\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub struct VxCThresholdData {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m----------------\u001b[0m \u001b[1m\u001b[94mfield in this struct\u001b[0m\n\u001b[1m\u001b[94m...\u001b[0m\n\u001b[1m\u001b[94m694\u001b[0m \u001b[1m\u001b[94m|\u001b[0m context: vx_context,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"fields `width` and `height` are never read","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api_data.rs","byte_start":31730,"byte_end":31745,"line_start":1105,"line_end":1105,"column_start":12,"column_end":27,"is_primary":false,"text":[{"text":"pub struct VxCPyramidLevel {","highlight_start":12,"highlight_end":27}],"label":"fields in this struct","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/c_api_data.rs","byte_start":31752,"byte_end":31757,"line_start":1106,"line_end":1106,"column_start":5,"column_end":10,"is_primary":true,"text":[{"text":" width: vx_uint32,","highlight_start":5,"highlight_end":10}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/c_api_data.rs","byte_start":31774,"byte_end":31780,"line_start":1107,"line_end":1107,"column_start":5,"column_end":11,"is_primary":true,"text":[{"text":" height: vx_uint32,","highlight_start":5,"highlight_end":11}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: fields `width` and `height` are never read\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api_data.rs:1106:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m1105\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub struct VxCPyramidLevel {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m---------------\u001b[0m \u001b[1m\u001b[94mfields in this struct\u001b[0m\n\u001b[1m\u001b[94m1106\u001b[0m \u001b[1m\u001b[94m|\u001b[0m width: vx_uint32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^\u001b[0m\n\u001b[1m\u001b[94m1107\u001b[0m \u001b[1m\u001b[94m|\u001b[0m height: vx_uint32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"fields `scale`, `format`, and `context` are never read","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api_data.rs","byte_start":31858,"byte_end":31872,"line_start":1112,"line_end":1112,"column_start":12,"column_end":26,"is_primary":false,"text":[{"text":"pub struct VxCPyramidData {","highlight_start":12,"highlight_end":26}],"label":"fields in this struct","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/c_api_data.rs","byte_start":31900,"byte_end":31905,"line_start":1114,"line_end":1114,"column_start":5,"column_end":10,"is_primary":true,"text":[{"text":" scale: vx_float32,","highlight_start":5,"highlight_end":10}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/c_api_data.rs","byte_start":31923,"byte_end":31929,"line_start":1115,"line_end":1115,"column_start":5,"column_end":11,"is_primary":true,"text":[{"text":" format: vx_df_image,","highlight_start":5,"highlight_end":11}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/c_api_data.rs","byte_start":31982,"byte_end":31989,"line_start":1117,"line_end":1117,"column_start":5,"column_end":12,"is_primary":true,"text":[{"text":" context: vx_context,","highlight_start":5,"highlight_end":12}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: fields `scale`, `format`, and `context` are never read\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api_data.rs:1114:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m1112\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub struct VxCPyramidData {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m--------------\u001b[0m \u001b[1m\u001b[94mfields in this struct\u001b[0m\n\u001b[1m\u001b[94m1113\u001b[0m \u001b[1m\u001b[94m|\u001b[0m levels: vx_size,\n\u001b[1m\u001b[94m1114\u001b[0m \u001b[1m\u001b[94m|\u001b[0m scale: vx_float32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^\u001b[0m\n\u001b[1m\u001b[94m1115\u001b[0m \u001b[1m\u001b[94m|\u001b[0m format: vx_df_image,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m\n\u001b[1m\u001b[94m1116\u001b[0m \u001b[1m\u001b[94m|\u001b[0m images: Vec,\n\u001b[1m\u001b[94m1117\u001b[0m \u001b[1m\u001b[94m|\u001b[0m context: vx_context,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"fields `item_type`, `capacity`, `items`, and `ref_count` are never read","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":9135,"byte_end":9143,"line_start":261,"line_end":261,"column_start":12,"column_end":20,"is_primary":false,"text":[{"text":"pub struct VxCArray {","highlight_start":12,"highlight_end":20}],"label":"fields in this struct","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":9150,"byte_end":9159,"line_start":262,"line_end":262,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" item_type: vx_enum,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":9174,"byte_end":9182,"line_start":263,"line_end":263,"column_start":5,"column_end":13,"is_primary":true,"text":[{"text":" capacity: usize,","highlight_start":5,"highlight_end":13}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":9195,"byte_end":9200,"line_start":264,"line_end":264,"column_start":5,"column_end":10,"is_primary":true,"text":[{"text":" items: RwLock>,","highlight_start":5,"highlight_end":10}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":9223,"byte_end":9232,"line_start":265,"line_end":265,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" ref_count: AtomicUsize,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: fields `item_type`, `capacity`, `items`, and `ref_count` are never read\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:262:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m261\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub struct VxCArray {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m--------\u001b[0m \u001b[1m\u001b[94mfields in this struct\u001b[0m\n\u001b[1m\u001b[94m262\u001b[0m \u001b[1m\u001b[94m|\u001b[0m item_type: vx_enum,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m\n\u001b[1m\u001b[94m263\u001b[0m \u001b[1m\u001b[94m|\u001b[0m capacity: usize,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^\u001b[0m\n\u001b[1m\u001b[94m264\u001b[0m \u001b[1m\u001b[94m|\u001b[0m items: RwLock>,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^\u001b[0m\n\u001b[1m\u001b[94m265\u001b[0m \u001b[1m\u001b[94m|\u001b[0m ref_count: AtomicUsize,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"fields `rows`, `cols`, `data_type`, `data`, and `ref_count` are never read","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":9277,"byte_end":9286,"line_start":269,"line_end":269,"column_start":12,"column_end":21,"is_primary":false,"text":[{"text":"pub struct VxCMatrix {","highlight_start":12,"highlight_end":21}],"label":"fields in this struct","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":9293,"byte_end":9297,"line_start":270,"line_end":270,"column_start":5,"column_end":9,"is_primary":true,"text":[{"text":" rows: u32,","highlight_start":5,"highlight_end":9}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":9308,"byte_end":9312,"line_start":271,"line_end":271,"column_start":5,"column_end":9,"is_primary":true,"text":[{"text":" cols: u32,","highlight_start":5,"highlight_end":9}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":9323,"byte_end":9332,"line_start":272,"line_end":272,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" data_type: vx_enum,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":9347,"byte_end":9351,"line_start":273,"line_end":273,"column_start":5,"column_end":9,"is_primary":true,"text":[{"text":" data: RwLock>,","highlight_start":5,"highlight_end":9}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":9375,"byte_end":9384,"line_start":274,"line_end":274,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" ref_count: AtomicUsize,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: fields `rows`, `cols`, `data_type`, `data`, and `ref_count` are never read\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:270:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m269\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub struct VxCMatrix {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m---------\u001b[0m \u001b[1m\u001b[94mfields in this struct\u001b[0m\n\u001b[1m\u001b[94m270\u001b[0m \u001b[1m\u001b[94m|\u001b[0m rows: u32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^\u001b[0m\n\u001b[1m\u001b[94m271\u001b[0m \u001b[1m\u001b[94m|\u001b[0m cols: u32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^\u001b[0m\n\u001b[1m\u001b[94m272\u001b[0m \u001b[1m\u001b[94m|\u001b[0m data_type: vx_enum,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m\n\u001b[1m\u001b[94m273\u001b[0m \u001b[1m\u001b[94m|\u001b[0m data: RwLock>,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^\u001b[0m\n\u001b[1m\u001b[94m274\u001b[0m \u001b[1m\u001b[94m|\u001b[0m ref_count: AtomicUsize,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"fields `rows`, `cols`, `scale`, `data`, and `ref_count` are never read","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":9434,"byte_end":9448,"line_start":278,"line_end":278,"column_start":12,"column_end":26,"is_primary":false,"text":[{"text":"pub struct VxCConvolution {","highlight_start":12,"highlight_end":26}],"label":"fields in this struct","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":9455,"byte_end":9459,"line_start":279,"line_end":279,"column_start":5,"column_end":9,"is_primary":true,"text":[{"text":" rows: u32,","highlight_start":5,"highlight_end":9}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":9470,"byte_end":9474,"line_start":280,"line_end":280,"column_start":5,"column_end":9,"is_primary":true,"text":[{"text":" cols: u32,","highlight_start":5,"highlight_end":9}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":9485,"byte_end":9490,"line_start":281,"line_end":281,"column_start":5,"column_end":10,"is_primary":true,"text":[{"text":" scale: u32,","highlight_start":5,"highlight_end":10}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":9501,"byte_end":9505,"line_start":282,"line_end":282,"column_start":5,"column_end":9,"is_primary":true,"text":[{"text":" data: RwLock>,","highlight_start":5,"highlight_end":9}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":9529,"byte_end":9538,"line_start":283,"line_end":283,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" ref_count: AtomicUsize,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: fields `rows`, `cols`, `scale`, `data`, and `ref_count` are never read\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:279:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m278\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub struct VxCConvolution {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m--------------\u001b[0m \u001b[1m\u001b[94mfields in this struct\u001b[0m\n\u001b[1m\u001b[94m279\u001b[0m \u001b[1m\u001b[94m|\u001b[0m rows: u32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^\u001b[0m\n\u001b[1m\u001b[94m280\u001b[0m \u001b[1m\u001b[94m|\u001b[0m cols: u32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^\u001b[0m\n\u001b[1m\u001b[94m281\u001b[0m \u001b[1m\u001b[94m|\u001b[0m scale: u32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^\u001b[0m\n\u001b[1m\u001b[94m282\u001b[0m \u001b[1m\u001b[94m|\u001b[0m data: RwLock>,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^\u001b[0m\n\u001b[1m\u001b[94m283\u001b[0m \u001b[1m\u001b[94m|\u001b[0m ref_count: AtomicUsize,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"fields `data_type`, `count`, `data`, and `ref_count` are never read","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":9580,"byte_end":9586,"line_start":287,"line_end":287,"column_start":12,"column_end":18,"is_primary":false,"text":[{"text":"pub struct VxCLUT {","highlight_start":12,"highlight_end":18}],"label":"fields in this struct","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":9593,"byte_end":9602,"line_start":288,"line_end":288,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" data_type: vx_enum,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":9617,"byte_end":9622,"line_start":289,"line_end":289,"column_start":5,"column_end":10,"is_primary":true,"text":[{"text":" count: usize,","highlight_start":5,"highlight_end":10}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":9635,"byte_end":9639,"line_start":290,"line_end":290,"column_start":5,"column_end":9,"is_primary":true,"text":[{"text":" data: RwLock>,","highlight_start":5,"highlight_end":9}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":9662,"byte_end":9671,"line_start":291,"line_end":291,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" ref_count: AtomicUsize,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: fields `data_type`, `count`, `data`, and `ref_count` are never read\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:288:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m287\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub struct VxCLUT {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m------\u001b[0m \u001b[1m\u001b[94mfields in this struct\u001b[0m\n\u001b[1m\u001b[94m288\u001b[0m \u001b[1m\u001b[94m|\u001b[0m data_type: vx_enum,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m\n\u001b[1m\u001b[94m289\u001b[0m \u001b[1m\u001b[94m|\u001b[0m count: usize,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^\u001b[0m\n\u001b[1m\u001b[94m290\u001b[0m \u001b[1m\u001b[94m|\u001b[0m data: RwLock>,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^\u001b[0m\n\u001b[1m\u001b[94m291\u001b[0m \u001b[1m\u001b[94m|\u001b[0m ref_count: AtomicUsize,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"fields `data` and `ref_count` are never read","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":9722,"byte_end":9737,"line_start":295,"line_end":295,"column_start":12,"column_end":27,"is_primary":false,"text":[{"text":"pub struct VxCDistribution {","highlight_start":12,"highlight_end":27}],"label":"fields in this struct","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":9794,"byte_end":9798,"line_start":299,"line_end":299,"column_start":5,"column_end":9,"is_primary":true,"text":[{"text":" data: RwLock>,","highlight_start":5,"highlight_end":9}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":9822,"byte_end":9831,"line_start":300,"line_end":300,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" ref_count: AtomicUsize,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: fields `data` and `ref_count` are never read\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:299:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m295\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub struct VxCDistribution {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m---------------\u001b[0m \u001b[1m\u001b[94mfields in this struct\u001b[0m\n\u001b[1m\u001b[94m...\u001b[0m\n\u001b[1m\u001b[94m299\u001b[0m \u001b[1m\u001b[94m|\u001b[0m data: RwLock>,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^\u001b[0m\n\u001b[1m\u001b[94m300\u001b[0m \u001b[1m\u001b[94m|\u001b[0m ref_count: AtomicUsize,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"fields `thresh_type`, `data_type`, and `ref_count` are never read","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":9879,"byte_end":9891,"line_start":304,"line_end":304,"column_start":12,"column_end":24,"is_primary":false,"text":[{"text":"pub struct VxCThreshold {","highlight_start":12,"highlight_end":24}],"label":"fields in this struct","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":9898,"byte_end":9909,"line_start":305,"line_end":305,"column_start":5,"column_end":16,"is_primary":true,"text":[{"text":" thresh_type: vx_enum,","highlight_start":5,"highlight_end":16}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":9924,"byte_end":9933,"line_start":306,"line_end":306,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" data_type: vx_enum,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":9948,"byte_end":9957,"line_start":307,"line_end":307,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" ref_count: AtomicUsize,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: fields `thresh_type`, `data_type`, and `ref_count` are never read\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:305:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m304\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub struct VxCThreshold {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m------------\u001b[0m \u001b[1m\u001b[94mfields in this struct\u001b[0m\n\u001b[1m\u001b[94m305\u001b[0m \u001b[1m\u001b[94m|\u001b[0m thresh_type: vx_enum,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^\u001b[0m\n\u001b[1m\u001b[94m306\u001b[0m \u001b[1m\u001b[94m|\u001b[0m data_type: vx_enum,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m\n\u001b[1m\u001b[94m307\u001b[0m \u001b[1m\u001b[94m|\u001b[0m ref_count: AtomicUsize,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"fields `levels`, `scale`, and `ref_count` are never read","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":10003,"byte_end":10013,"line_start":311,"line_end":311,"column_start":12,"column_end":22,"is_primary":false,"text":[{"text":"pub struct VxCPyramid {","highlight_start":12,"highlight_end":22}],"label":"fields in this struct","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":10020,"byte_end":10026,"line_start":312,"line_end":312,"column_start":5,"column_end":11,"is_primary":true,"text":[{"text":" levels: usize,","highlight_start":5,"highlight_end":11}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":10039,"byte_end":10044,"line_start":313,"line_end":313,"column_start":5,"column_end":10,"is_primary":true,"text":[{"text":" scale: f32,","highlight_start":5,"highlight_end":10}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":10055,"byte_end":10064,"line_start":314,"line_end":314,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" ref_count: AtomicUsize,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: fields `levels`, `scale`, and `ref_count` are never read\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:312:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m311\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub struct VxCPyramid {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m----------\u001b[0m \u001b[1m\u001b[94mfields in this struct\u001b[0m\n\u001b[1m\u001b[94m312\u001b[0m \u001b[1m\u001b[94m|\u001b[0m levels: usize,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m\n\u001b[1m\u001b[94m313\u001b[0m \u001b[1m\u001b[94m|\u001b[0m scale: f32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^\u001b[0m\n\u001b[1m\u001b[94m314\u001b[0m \u001b[1m\u001b[94m|\u001b[0m ref_count: AtomicUsize,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"fields `src_width`, `src_height`, `dst_width`, `dst_height`, and `ref_count` are never read","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":10108,"byte_end":10116,"line_start":318,"line_end":318,"column_start":12,"column_end":20,"is_primary":false,"text":[{"text":"pub struct VxCRemap {","highlight_start":12,"highlight_end":20}],"label":"fields in this struct","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":10123,"byte_end":10132,"line_start":319,"line_end":319,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" src_width: u32,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":10143,"byte_end":10153,"line_start":320,"line_end":320,"column_start":5,"column_end":15,"is_primary":true,"text":[{"text":" src_height: u32,","highlight_start":5,"highlight_end":15}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":10164,"byte_end":10173,"line_start":321,"line_end":321,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" dst_width: u32,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":10184,"byte_end":10194,"line_start":322,"line_end":322,"column_start":5,"column_end":15,"is_primary":true,"text":[{"text":" dst_height: u32,","highlight_start":5,"highlight_end":15}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":10205,"byte_end":10214,"line_start":323,"line_end":323,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" ref_count: AtomicUsize,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: fields `src_width`, `src_height`, `dst_width`, `dst_height`, and `ref_count` are never read\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:319:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m318\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub struct VxCRemap {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m--------\u001b[0m \u001b[1m\u001b[94mfields in this struct\u001b[0m\n\u001b[1m\u001b[94m319\u001b[0m \u001b[1m\u001b[94m|\u001b[0m src_width: u32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m\n\u001b[1m\u001b[94m320\u001b[0m \u001b[1m\u001b[94m|\u001b[0m src_height: u32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^\u001b[0m\n\u001b[1m\u001b[94m321\u001b[0m \u001b[1m\u001b[94m|\u001b[0m dst_width: u32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m\n\u001b[1m\u001b[94m322\u001b[0m \u001b[1m\u001b[94m|\u001b[0m dst_height: u32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^\u001b[0m\n\u001b[1m\u001b[94m323\u001b[0m \u001b[1m\u001b[94m|\u001b[0m ref_count: AtomicUsize,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"fields `exemplar_type`, `count`, and `ref_count` are never read","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":10265,"byte_end":10279,"line_start":327,"line_end":327,"column_start":12,"column_end":26,"is_primary":false,"text":[{"text":"pub struct VxCObjectArray {","highlight_start":12,"highlight_end":26}],"label":"fields in this struct","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":10286,"byte_end":10299,"line_start":328,"line_end":328,"column_start":5,"column_end":18,"is_primary":true,"text":[{"text":" exemplar_type: vx_enum,","highlight_start":5,"highlight_end":18}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":10314,"byte_end":10319,"line_start":329,"line_end":329,"column_start":5,"column_end":10,"is_primary":true,"text":[{"text":" count: usize,","highlight_start":5,"highlight_end":10}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":10332,"byte_end":10341,"line_start":330,"line_end":330,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" ref_count: AtomicUsize,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: fields `exemplar_type`, `count`, and `ref_count` are never read\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:328:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m327\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub struct VxCObjectArray {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m--------------\u001b[0m \u001b[1m\u001b[94mfields in this struct\u001b[0m\n\u001b[1m\u001b[94m328\u001b[0m \u001b[1m\u001b[94m|\u001b[0m exemplar_type: vx_enum,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^\u001b[0m\n\u001b[1m\u001b[94m329\u001b[0m \u001b[1m\u001b[94m|\u001b[0m count: usize,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^\u001b[0m\n\u001b[1m\u001b[94m330\u001b[0m \u001b[1m\u001b[94m|\u001b[0m ref_count: AtomicUsize,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"fields `num_dims`, `dims`, `data_type`, and `ref_count` are never read","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":11456,"byte_end":11465,"line_start":361,"line_end":361,"column_start":12,"column_end":21,"is_primary":false,"text":[{"text":"pub struct VxCTensor {","highlight_start":12,"highlight_end":21}],"label":"fields in this struct","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":11472,"byte_end":11480,"line_start":362,"line_end":362,"column_start":5,"column_end":13,"is_primary":true,"text":[{"text":" num_dims: usize,","highlight_start":5,"highlight_end":13}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":11493,"byte_end":11497,"line_start":363,"line_end":363,"column_start":5,"column_end":9,"is_primary":true,"text":[{"text":" dims: Vec,","highlight_start":5,"highlight_end":9}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":11515,"byte_end":11524,"line_start":364,"line_end":364,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" data_type: vx_enum,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":11539,"byte_end":11548,"line_start":365,"line_end":365,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" ref_count: AtomicUsize,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: fields `num_dims`, `dims`, `data_type`, and `ref_count` are never read\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:362:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m361\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub struct VxCTensor {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m---------\u001b[0m \u001b[1m\u001b[94mfields in this struct\u001b[0m\n\u001b[1m\u001b[94m362\u001b[0m \u001b[1m\u001b[94m|\u001b[0m num_dims: usize,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^\u001b[0m\n\u001b[1m\u001b[94m363\u001b[0m \u001b[1m\u001b[94m|\u001b[0m dims: Vec,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^\u001b[0m\n\u001b[1m\u001b[94m364\u001b[0m \u001b[1m\u001b[94m|\u001b[0m data_type: vx_enum,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m\n\u001b[1m\u001b[94m365\u001b[0m \u001b[1m\u001b[94m|\u001b[0m ref_count: AtomicUsize,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"fields `format_type` and `ref_count` are never read","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":11598,"byte_end":11611,"line_start":369,"line_end":369,"column_start":12,"column_end":25,"is_primary":false,"text":[{"text":"pub struct VxCMetaFormat {","highlight_start":12,"highlight_end":25}],"label":"fields in this struct","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":11618,"byte_end":11629,"line_start":370,"line_end":370,"column_start":5,"column_end":16,"is_primary":true,"text":[{"text":" format_type: vx_enum,","highlight_start":5,"highlight_end":16}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":11644,"byte_end":11653,"line_start":371,"line_end":371,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" ref_count: AtomicUsize,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: fields `format_type` and `ref_count` are never read\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:370:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m369\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub struct VxCMetaFormat {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m-------------\u001b[0m \u001b[1m\u001b[94mfields in this struct\u001b[0m\n\u001b[1m\u001b[94m370\u001b[0m \u001b[1m\u001b[94m|\u001b[0m format_type: vx_enum,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^\u001b[0m\n\u001b[1m\u001b[94m371\u001b[0m \u001b[1m\u001b[94m|\u001b[0m ref_count: AtomicUsize,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"fields `import_type` and `ref_count` are never read","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":11698,"byte_end":11707,"line_start":375,"line_end":375,"column_start":12,"column_end":21,"is_primary":false,"text":[{"text":"pub struct VxCImport {","highlight_start":12,"highlight_end":21}],"label":"fields in this struct","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":11714,"byte_end":11725,"line_start":376,"line_end":376,"column_start":5,"column_end":16,"is_primary":true,"text":[{"text":" import_type: vx_enum,","highlight_start":5,"highlight_end":16}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":11740,"byte_end":11749,"line_start":377,"line_end":377,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" ref_count: AtomicUsize,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: fields `import_type` and `ref_count` are never read\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:376:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m375\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub struct VxCImport {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m---------\u001b[0m \u001b[1m\u001b[94mfields in this struct\u001b[0m\n\u001b[1m\u001b[94m376\u001b[0m \u001b[1m\u001b[94m|\u001b[0m import_type: vx_enum,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^\u001b[0m\n\u001b[1m\u001b[94m377\u001b[0m \u001b[1m\u001b[94m|\u001b[0m ref_count: AtomicUsize,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"fields `enumeration` and `ref_count` are never read","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":11794,"byte_end":11803,"line_start":381,"line_end":381,"column_start":12,"column_end":21,"is_primary":false,"text":[{"text":"pub struct VxCKernel {","highlight_start":12,"highlight_end":21}],"label":"fields in this struct","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":11810,"byte_end":11821,"line_start":382,"line_end":382,"column_start":5,"column_end":16,"is_primary":true,"text":[{"text":" enumeration: vx_enum,","highlight_start":5,"highlight_end":16}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":11854,"byte_end":11863,"line_start":384,"line_end":384,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" ref_count: AtomicUsize,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: fields `enumeration` and `ref_count` are never read\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:382:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m381\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub struct VxCKernel {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m---------\u001b[0m \u001b[1m\u001b[94mfields in this struct\u001b[0m\n\u001b[1m\u001b[94m382\u001b[0m \u001b[1m\u001b[94m|\u001b[0m enumeration: vx_enum,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^\u001b[0m\n\u001b[1m\u001b[94m383\u001b[0m \u001b[1m\u001b[94m|\u001b[0m name: String,\n\u001b[1m\u001b[94m384\u001b[0m \u001b[1m\u001b[94m|\u001b[0m ref_count: AtomicUsize,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"fields `id`, `name`, and `ref_count` are never read","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":11908,"byte_end":11917,"line_start":388,"line_end":388,"column_start":12,"column_end":21,"is_primary":false,"text":[{"text":"pub struct VxCTarget {","highlight_start":12,"highlight_end":21}],"label":"fields in this struct","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":11924,"byte_end":11926,"line_start":389,"line_end":389,"column_start":5,"column_end":7,"is_primary":true,"text":[{"text":" id: u64,","highlight_start":5,"highlight_end":7}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":11937,"byte_end":11941,"line_start":390,"line_end":390,"column_start":5,"column_end":9,"is_primary":true,"text":[{"text":" name: String,","highlight_start":5,"highlight_end":9}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":11955,"byte_end":11964,"line_start":391,"line_end":391,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" ref_count: AtomicUsize,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: fields `id`, `name`, and `ref_count` are never read\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:389:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m388\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub struct VxCTarget {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m---------\u001b[0m \u001b[1m\u001b[94mfields in this struct\u001b[0m\n\u001b[1m\u001b[94m389\u001b[0m \u001b[1m\u001b[94m|\u001b[0m id: u64,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^\u001b[0m\n\u001b[1m\u001b[94m390\u001b[0m \u001b[1m\u001b[94m|\u001b[0m name: String,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^\u001b[0m\n\u001b[1m\u001b[94m391\u001b[0m \u001b[1m\u001b[94m|\u001b[0m ref_count: AtomicUsize,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"fields `id`, `kernel`, and `ref_count` are never read","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":12007,"byte_end":12014,"line_start":395,"line_end":395,"column_start":12,"column_end":19,"is_primary":false,"text":[{"text":"pub struct VxCNode {","highlight_start":12,"highlight_end":19}],"label":"fields in this struct","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":12021,"byte_end":12023,"line_start":396,"line_end":396,"column_start":5,"column_end":7,"is_primary":true,"text":[{"text":" id: u64,","highlight_start":5,"highlight_end":7}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":12034,"byte_end":12040,"line_start":397,"line_end":397,"column_start":5,"column_end":11,"is_primary":true,"text":[{"text":" kernel: vx_enum,","highlight_start":5,"highlight_end":11}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":12055,"byte_end":12064,"line_start":398,"line_end":398,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" ref_count: AtomicUsize,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: fields `id`, `kernel`, and `ref_count` are never read\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:396:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m395\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub struct VxCNode {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m-------\u001b[0m \u001b[1m\u001b[94mfields in this struct\u001b[0m\n\u001b[1m\u001b[94m396\u001b[0m \u001b[1m\u001b[94m|\u001b[0m id: u64,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^\u001b[0m\n\u001b[1m\u001b[94m397\u001b[0m \u001b[1m\u001b[94m|\u001b[0m kernel: vx_enum,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m\n\u001b[1m\u001b[94m398\u001b[0m \u001b[1m\u001b[94m|\u001b[0m ref_count: AtomicUsize,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"static `NEXT_GRAPH_ID` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":12789,"byte_end":12802,"line_start":428,"line_end":428,"column_start":8,"column_end":21,"is_primary":true,"text":[{"text":"static NEXT_GRAPH_ID: Lazy = Lazy::new(|| {","highlight_start":8,"highlight_end":21}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: static `NEXT_GRAPH_ID` is never used\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:428:8\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m428\u001b[0m \u001b[1m\u001b[94m|\u001b[0m static NEXT_GRAPH_ID: Lazy = Lazy::new(|| {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"function `generate_graph_id` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":12871,"byte_end":12888,"line_start":432,"line_end":432,"column_start":4,"column_end":21,"is_primary":true,"text":[{"text":"fn generate_graph_id() -> u64 {","highlight_start":4,"highlight_end":21}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: function `generate_graph_id` is never used\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:432:4\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m432\u001b[0m \u001b[1m\u001b[94m|\u001b[0m fn generate_graph_id() -> u64 {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"fields `data_type` and `context` are never read","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":65474,"byte_end":65483,"line_start":1878,"line_end":1878,"column_start":12,"column_end":21,"is_primary":false,"text":[{"text":"pub struct VxCScalar {","highlight_start":12,"highlight_end":21}],"label":"fields in this struct","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":65490,"byte_end":65499,"line_start":1879,"line_end":1879,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" data_type: vx_enum,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":65541,"byte_end":65548,"line_start":1881,"line_end":1881,"column_start":5,"column_end":12,"is_primary":true,"text":[{"text":" context: vx_context,","highlight_start":5,"highlight_end":12}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: fields `data_type` and `context` are never read\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:1879:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m1878\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub struct VxCScalar {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m---------\u001b[0m \u001b[1m\u001b[94mfields in this struct\u001b[0m\n\u001b[1m\u001b[94m1879\u001b[0m \u001b[1m\u001b[94m|\u001b[0m data_type: vx_enum,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m\n\u001b[1m\u001b[94m1880\u001b[0m \u001b[1m\u001b[94m|\u001b[0m data: RwLock>,\n\u001b[1m\u001b[94m1881\u001b[0m \u001b[1m\u001b[94m|\u001b[0m context: vx_context,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"multiple fields are never read","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":69087,"byte_end":69100,"line_start":1993,"line_end":1993,"column_start":12,"column_end":25,"is_primary":false,"text":[{"text":"pub struct VxCUserKernel {","highlight_start":12,"highlight_end":25}],"label":"fields in this struct","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":69107,"byte_end":69111,"line_start":1994,"line_end":1994,"column_start":5,"column_end":9,"is_primary":true,"text":[{"text":" name: String,","highlight_start":5,"highlight_end":9}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":69125,"byte_end":69136,"line_start":1995,"line_end":1995,"column_start":5,"column_end":16,"is_primary":true,"text":[{"text":" enumeration: vx_enum,","highlight_start":5,"highlight_end":16}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":69151,"byte_end":69159,"line_start":1996,"line_end":1996,"column_start":5,"column_end":13,"is_primary":true,"text":[{"text":" validate: VxKernelValidateF,","highlight_start":5,"highlight_end":13}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":69184,"byte_end":69188,"line_start":1997,"line_end":1997,"column_start":5,"column_end":9,"is_primary":true,"text":[{"text":" init: VxKernelInitializeF,","highlight_start":5,"highlight_end":9}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":69215,"byte_end":69221,"line_start":1998,"line_end":1998,"column_start":5,"column_end":11,"is_primary":true,"text":[{"text":" deinit: VxKernelDeinitializeF,","highlight_start":5,"highlight_end":11}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":69250,"byte_end":69260,"line_start":1999,"line_end":1999,"column_start":5,"column_end":15,"is_primary":true,"text":[{"text":" num_params: vx_uint32,","highlight_start":5,"highlight_end":15}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":69277,"byte_end":69287,"line_start":2000,"line_end":2000,"column_start":5,"column_end":15,"is_primary":true,"text":[{"text":" context_id: u64,","highlight_start":5,"highlight_end":15}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: multiple fields are never read\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:1994:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m1993\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub struct VxCUserKernel {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m-------------\u001b[0m \u001b[1m\u001b[94mfields in this struct\u001b[0m\n\u001b[1m\u001b[94m1994\u001b[0m \u001b[1m\u001b[94m|\u001b[0m name: String,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^\u001b[0m\n\u001b[1m\u001b[94m1995\u001b[0m \u001b[1m\u001b[94m|\u001b[0m enumeration: vx_enum,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^\u001b[0m\n\u001b[1m\u001b[94m1996\u001b[0m \u001b[1m\u001b[94m|\u001b[0m validate: VxKernelValidateF,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^\u001b[0m\n\u001b[1m\u001b[94m1997\u001b[0m \u001b[1m\u001b[94m|\u001b[0m init: VxKernelInitializeF,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^\u001b[0m\n\u001b[1m\u001b[94m1998\u001b[0m \u001b[1m\u001b[94m|\u001b[0m deinit: VxKernelDeinitializeF,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m\n\u001b[1m\u001b[94m1999\u001b[0m \u001b[1m\u001b[94m|\u001b[0m num_params: vx_uint32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^\u001b[0m\n\u001b[1m\u001b[94m2000\u001b[0m \u001b[1m\u001b[94m|\u001b[0m context_id: u64,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"function `scalar_from_ptr` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":129913,"byte_end":129928,"line_start":4250,"line_end":4250,"column_start":11,"column_end":26,"is_primary":true,"text":[{"text":"unsafe fn scalar_from_ptr(ptr: *mut c_void) -> vx_scalar {","highlight_start":11,"highlight_end":26}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: function `scalar_from_ptr` is never used\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:4250:11\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m4250\u001b[0m \u001b[1m\u001b[94m|\u001b[0m unsafe fn scalar_from_ptr(ptr: *mut c_void) -> vx_scalar {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"function `c_image_to_rust_raw` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/vxu_impl.rs","byte_start":6572,"byte_end":6591,"line_start":178,"line_end":178,"column_start":11,"column_end":30,"is_primary":true,"text":[{"text":"unsafe fn c_image_to_rust_raw(image: vx_image) -> Option {","highlight_start":11,"highlight_end":30}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: function `c_image_to_rust_raw` is never used\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/vxu_impl.rs:178:11\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m178\u001b[0m \u001b[1m\u001b[94m|\u001b[0m unsafe fn c_image_to_rust_raw(image: vx_image) -> Option {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"function `copy_rust_to_c_image_optimized` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/vxu_impl.rs","byte_start":8579,"byte_end":8609,"line_start":233,"line_end":233,"column_start":11,"column_end":41,"is_primary":true,"text":[{"text":"unsafe fn copy_rust_to_c_image_optimized(src: &Image, dst: vx_image) -> vx_status {","highlight_start":11,"highlight_end":41}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: function `copy_rust_to_c_image_optimized` is never used\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/vxu_impl.rs:233:11\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m233\u001b[0m \u001b[1m\u001b[94m|\u001b[0m unsafe fn copy_rust_to_c_image_optimized(src: &Image, dst: vx_image) -> vx_status {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"constant `Y_COEFF_R` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/vxu_impl.rs","byte_start":13329,"byte_end":13338,"line_start":362,"line_end":362,"column_start":7,"column_end":16,"is_primary":true,"text":[{"text":"const Y_COEFF_R: i32 = 54; // 0.2126 * 256 (BT.709)","highlight_start":7,"highlight_end":16}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: constant `Y_COEFF_R` is never used\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/vxu_impl.rs:362:7\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m362\u001b[0m \u001b[1m\u001b[94m|\u001b[0m const Y_COEFF_R: i32 = 54; // 0.2126 * 256 (BT.709)\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"constant `Y_COEFF_G` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/vxu_impl.rs","byte_start":13383,"byte_end":13392,"line_start":363,"line_end":363,"column_start":7,"column_end":16,"is_primary":true,"text":[{"text":"const Y_COEFF_G: i32 = 183; // 0.7152 * 256 (BT.709)","highlight_start":7,"highlight_end":16}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: constant `Y_COEFF_G` is never used\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/vxu_impl.rs:363:7\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m363\u001b[0m \u001b[1m\u001b[94m|\u001b[0m const Y_COEFF_G: i32 = 183; // 0.7152 * 256 (BT.709)\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"constant `Y_COEFF_B` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/vxu_impl.rs","byte_start":13437,"byte_end":13446,"line_start":364,"line_end":364,"column_start":7,"column_end":16,"is_primary":true,"text":[{"text":"const Y_COEFF_B: i32 = 18; // 0.0722 * 256 (BT.709)","highlight_start":7,"highlight_end":16}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: constant `Y_COEFF_B` is never used\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/vxu_impl.rs:364:7\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m364\u001b[0m \u001b[1m\u001b[94m|\u001b[0m const Y_COEFF_B: i32 = 18; // 0.0722 * 256 (BT.709)\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"constant `U_COEFF_R` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/vxu_impl.rs","byte_start":13492,"byte_end":13501,"line_start":366,"line_end":366,"column_start":7,"column_end":16,"is_primary":true,"text":[{"text":"const U_COEFF_R: i32 = -29; // -0.1146 * 256 (BT.709)","highlight_start":7,"highlight_end":16}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: constant `U_COEFF_R` is never used\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/vxu_impl.rs:366:7\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m366\u001b[0m \u001b[1m\u001b[94m|\u001b[0m const U_COEFF_R: i32 = -29; // -0.1146 * 256 (BT.709)\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"constant `U_COEFF_G` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/vxu_impl.rs","byte_start":13547,"byte_end":13556,"line_start":367,"line_end":367,"column_start":7,"column_end":16,"is_primary":true,"text":[{"text":"const U_COEFF_G: i32 = -99; // -0.3854 * 256 (BT.709)","highlight_start":7,"highlight_end":16}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: constant `U_COEFF_G` is never used\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/vxu_impl.rs:367:7\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m367\u001b[0m \u001b[1m\u001b[94m|\u001b[0m const U_COEFF_G: i32 = -99; // -0.3854 * 256 (BT.709)\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"constant `U_COEFF_B` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/vxu_impl.rs","byte_start":13602,"byte_end":13611,"line_start":368,"line_end":368,"column_start":7,"column_end":16,"is_primary":true,"text":[{"text":"const U_COEFF_B: i32 = 128; // 0.5 * 256","highlight_start":7,"highlight_end":16}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: constant `U_COEFF_B` is never used\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/vxu_impl.rs:368:7\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m368\u001b[0m \u001b[1m\u001b[94m|\u001b[0m const U_COEFF_B: i32 = 128; // 0.5 * 256\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"constant `V_COEFF_R` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/vxu_impl.rs","byte_start":13645,"byte_end":13654,"line_start":370,"line_end":370,"column_start":7,"column_end":16,"is_primary":true,"text":[{"text":"const V_COEFF_R: i32 = 128; // 0.5 * 256","highlight_start":7,"highlight_end":16}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: constant `V_COEFF_R` is never used\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/vxu_impl.rs:370:7\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m370\u001b[0m \u001b[1m\u001b[94m|\u001b[0m const V_COEFF_R: i32 = 128; // 0.5 * 256\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"constant `V_COEFF_G` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/vxu_impl.rs","byte_start":13687,"byte_end":13696,"line_start":371,"line_end":371,"column_start":7,"column_end":16,"is_primary":true,"text":[{"text":"const V_COEFF_G: i32 = -116; // -0.4542 * 256 (BT.709)","highlight_start":7,"highlight_end":16}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: constant `V_COEFF_G` is never used\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/vxu_impl.rs:371:7\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m371\u001b[0m \u001b[1m\u001b[94m|\u001b[0m const V_COEFF_G: i32 = -116; // -0.4542 * 256 (BT.709)\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"constant `V_COEFF_B` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/vxu_impl.rs","byte_start":13742,"byte_end":13751,"line_start":372,"line_end":372,"column_start":7,"column_end":16,"is_primary":true,"text":[{"text":"const V_COEFF_B: i32 = -12; // -0.0458 * 256 (BT.709)","highlight_start":7,"highlight_end":16}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: constant `V_COEFF_B` is never used\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/vxu_impl.rs:372:7\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m372\u001b[0m \u001b[1m\u001b[94m|\u001b[0m const V_COEFF_B: i32 = -12; // -0.0458 * 256 (BT.709)\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"function `get_nv21_plane_info` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/vxu_impl.rs","byte_start":15698,"byte_end":15717,"line_start":432,"line_end":432,"column_start":4,"column_end":23,"is_primary":true,"text":[{"text":"fn get_nv21_plane_info(width: u32, height: u32) -> (usize, usize, usize) {","highlight_start":4,"highlight_end":23}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: function `get_nv21_plane_info` is never used\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/vxu_impl.rs:432:4\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m432\u001b[0m \u001b[1m\u001b[94m|\u001b[0m fn get_nv21_plane_info(width: u32, height: u32) -> (usize, usize, usize) {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"function `get_nv12_uv_indices` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/vxu_impl.rs","byte_start":16659,"byte_end":16678,"line_start":463,"line_end":463,"column_start":4,"column_end":23,"is_primary":true,"text":[{"text":"fn get_nv12_uv_indices(x: usize, y: usize, width: usize, y_size: usize) -> usize {","highlight_start":4,"highlight_end":23}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: function `get_nv12_uv_indices` is never used\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/vxu_impl.rs:463:4\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m463\u001b[0m \u001b[1m\u001b[94m|\u001b[0m fn get_nv12_uv_indices(x: usize, y: usize, width: usize, y_size: usize) -> usize {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"function `rgb_to_gray` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/vxu_impl.rs","byte_start":90930,"byte_end":90941,"line_start":2477,"line_end":2477,"column_start":4,"column_end":15,"is_primary":true,"text":[{"text":"fn rgb_to_gray(src: &Image, dst: &mut Image) -> VxResult<()> {","highlight_start":4,"highlight_end":15}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: function `rgb_to_gray` is never used\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/vxu_impl.rs:2477:4\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m2477\u001b[0m \u001b[1m\u001b[94m|\u001b[0m fn rgb_to_gray(src: &Image, dst: &mut Image) -> VxResult<()> {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"function `gray_to_rgb` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/vxu_impl.rs","byte_start":91405,"byte_end":91416,"line_start":2496,"line_end":2496,"column_start":4,"column_end":15,"is_primary":true,"text":[{"text":"fn gray_to_rgb(src: &Image, dst: &mut Image) -> VxResult<()> {","highlight_start":4,"highlight_end":15}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: function `gray_to_rgb` is never used\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/vxu_impl.rs:2496:4\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m2496\u001b[0m \u001b[1m\u001b[94m|\u001b[0m fn gray_to_rgb(src: &Image, dst: &mut Image) -> VxResult<()> {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"function `rgb_to_rgba` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/vxu_impl.rs","byte_start":91834,"byte_end":91845,"line_start":2514,"line_end":2514,"column_start":4,"column_end":15,"is_primary":true,"text":[{"text":"fn rgb_to_rgba(src: &Image, dst: &mut Image) -> VxResult<()> {","highlight_start":4,"highlight_end":15}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: function `rgb_to_rgba` is never used\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/vxu_impl.rs:2514:4\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m2514\u001b[0m \u001b[1m\u001b[94m|\u001b[0m fn rgb_to_rgba(src: &Image, dst: &mut Image) -> VxResult<()> {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"function `rgba_to_rgb` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/vxu_impl.rs","byte_start":92567,"byte_end":92578,"line_start":2539,"line_end":2539,"column_start":4,"column_end":15,"is_primary":true,"text":[{"text":"fn rgba_to_rgb(src: &Image, dst: &mut Image) -> VxResult<()> {","highlight_start":4,"highlight_end":15}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: function `rgba_to_rgb` is never used\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/vxu_impl.rs:2539:4\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m2539\u001b[0m \u001b[1m\u001b[94m|\u001b[0m fn rgba_to_rgb(src: &Image, dst: &mut Image) -> VxResult<()> {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"function `threshold_image` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/vxu_impl.rs","byte_start":135447,"byte_end":135462,"line_start":3891,"line_end":3891,"column_start":4,"column_end":19,"is_primary":true,"text":[{"text":"fn threshold_image(src: &Image, dst: &mut Image, thresh_type: vx_enum, value: i32, lower: i32, upper: i32, true_val: i32, false_val: i32) -> VxResult<()> {","highlight_start":4,"highlight_end":19}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: function `threshold_image` is never used\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/vxu_impl.rs:3891:4\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m3891\u001b[0m \u001b[1m\u001b[94m|\u001b[0m fn threshold_image(src: &Image, dst: &mut Image, thresh_type: vx_enum, value: i32, lower: i32, upper: i32, true_val: i32, false_va\u001b[1m\u001b[94m...\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^\u001b[0m\n\n"} +======= {"$message_type":"diagnostic","message":"private item shadows public glob re-export","code":{"code":"hidden_glob_reexports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":13815,"byte_end":13920,"line_start":445,"line_end":447,"column_start":1,"column_end":4,"is_primary":true,"text":[{"text":"static NODES: Lazy>>> = Lazy::new(|| {","highlight_start":1,"highlight_end":71},{"text":" Mutex::new(HashMap::new())","highlight_start":1,"highlight_end":31},{"text":"});","highlight_start":1,"highlight_end":4}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"the name `NODES` in the value namespace is supposed to be publicly re-exported here","code":null,"level":"note","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":211,"byte_end":226,"line_start":7,"line_end":7,"column_start":9,"column_end":24,"is_primary":true,"text":[{"text":"pub use crate::c_api::*;","highlight_start":9,"highlight_end":24}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":null},{"message":"but the private item here shadows it","code":null,"level":"note","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":13815,"byte_end":13920,"line_start":445,"line_end":447,"column_start":1,"column_end":4,"is_primary":true,"text":[{"text":"static NODES: Lazy>>> = Lazy::new(|| {","highlight_start":1,"highlight_end":71},{"text":" Mutex::new(HashMap::new())","highlight_start":1,"highlight_end":31},{"text":"});","highlight_start":1,"highlight_end":4}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: private item shadows public glob re-export\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:445:1\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m445\u001b[0m \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m/\u001b[0m static NODES: Lazy>>> = Lazy::new(|| {\n\u001b[1m\u001b[94m446\u001b[0m \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m|\u001b[0m Mutex::new(HashMap::new())\n\u001b[1m\u001b[94m447\u001b[0m \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m|\u001b[0m });\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m|___^\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[92mnote\u001b[0m: the name `NODES` in the value namespace is supposed to be publicly re-exported here\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:7:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m 7\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use crate::c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[92m^^^^^^^^^^^^^^^\u001b[0m\n\u001b[1m\u001b[92mnote\u001b[0m: but the private item here shadows it\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:445:1\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m445\u001b[0m \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[92m/\u001b[0m static NODES: Lazy>>> = Lazy::new(|| {\n\u001b[1m\u001b[94m446\u001b[0m \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[92m|\u001b[0m Mutex::new(HashMap::new())\n\u001b[1m\u001b[94m447\u001b[0m \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[92m|\u001b[0m });\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[92m|___^\u001b[0m\n\n"} {"$message_type":"diagnostic","message":"type `vx_distribution` should have an upper camel case name","code":{"code":"non_camel_case_types","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":142302,"byte_end":142317,"line_start":3869,"line_end":3869,"column_start":10,"column_end":25,"is_primary":true,"text":[{"text":"pub type vx_distribution = *mut VxDistribution;","highlight_start":10,"highlight_end":25}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to upper camel case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":142302,"byte_end":142317,"line_start":3869,"line_end":3869,"column_start":10,"column_end":25,"is_primary":true,"text":[{"text":"pub type vx_distribution = *mut VxDistribution;","highlight_start":10,"highlight_end":25}],"label":null,"suggested_replacement":"VxDistribution","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: type `vx_distribution` should have an upper camel case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:3869:10\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m3869\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub type vx_distribution = *mut VxDistribution;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper camel case: `VxDistribution`\u001b[0m\n\n"} {"$message_type":"diagnostic","message":"type `vx_remap` should have an upper camel case name","code":{"code":"non_camel_case_types","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":142393,"byte_end":142401,"line_start":3873,"line_end":3873,"column_start":10,"column_end":18,"is_primary":true,"text":[{"text":"pub type vx_remap = *mut VxRemap;","highlight_start":10,"highlight_end":18}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to upper camel case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":142393,"byte_end":142401,"line_start":3873,"line_end":3873,"column_start":10,"column_end":18,"is_primary":true,"text":[{"text":"pub type vx_remap = *mut VxRemap;","highlight_start":10,"highlight_end":18}],"label":null,"suggested_replacement":"VxRemap","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: type `vx_remap` should have an upper camel case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:3873:10\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m3873\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub type vx_remap = *mut VxRemap;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper camel case: `VxRemap`\u001b[0m\n\n"} @@ -301,6 +575,7 @@ {"$message_type":"diagnostic","message":"function `rgba_to_rgb` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/vxu_impl.rs","byte_start":93298,"byte_end":93309,"line_start":2552,"line_end":2552,"column_start":4,"column_end":15,"is_primary":true,"text":[{"text":"fn rgba_to_rgb(src: &Image, dst: &mut Image) -> VxResult<()> {","highlight_start":4,"highlight_end":15}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: function `rgba_to_rgb` is never used\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/vxu_impl.rs:2552:4\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m2552\u001b[0m \u001b[1m\u001b[94m|\u001b[0m fn rgba_to_rgb(src: &Image, dst: &mut Image) -> VxResult<()> {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^\u001b[0m\n\n"} {"$message_type":"diagnostic","message":"function `threshold_image` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/vxu_impl.rs","byte_start":136178,"byte_end":136193,"line_start":3904,"line_end":3904,"column_start":4,"column_end":19,"is_primary":true,"text":[{"text":"fn threshold_image(src: &Image, dst: &mut Image, thresh_type: vx_enum, value: i32, lower: i32, upper: i32, true_val: i32, false_val: i32) -> VxResult<()> {","highlight_start":4,"highlight_end":19}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: function `threshold_image` is never used\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/vxu_impl.rs:3904:4\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m3904\u001b[0m \u001b[1m\u001b[94m|\u001b[0m fn threshold_image(src: &Image, dst: &mut Image, thresh_type: vx_enum, value: i32, lower: i32, upper: i32, true_val: i32, false_va\u001b[1m\u001b[94m...\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^\u001b[0m\n\n"} {"$message_type":"diagnostic","message":"comparison is useless due to type limits","code":{"code":"unused_comparisons","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":71704,"byte_end":71727,"line_start":1912,"line_end":1912,"column_start":23,"column_end":46,"is_primary":true,"text":[{"text":" if id == 0 || id > 0xFFFFFFFFFFFFFFFF {","highlight_start":23,"highlight_end":46}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(unused_comparisons)]` on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: comparison is useless due to type limits\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api.rs:1912:23\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m1912\u001b[0m \u001b[1m\u001b[94m|\u001b[0m if id == 0 || id > 0xFFFFFFFFFFFFFFFF {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^^^\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m= \u001b[0m\u001b[1mnote\u001b[0m: `#[warn(unused_comparisons)]` on by default\n\n"} +>>>>>>> origin/master {"$message_type":"diagnostic","message":"structure field `RGB` should have a snake case name","code":{"code":"non_snake_case","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api_data.rs","byte_start":1066,"byte_end":1069,"line_start":26,"line_end":26,"column_start":9,"column_end":12,"is_primary":true,"text":[{"text":" pub RGB: [u8; 3],","highlight_start":9,"highlight_end":12}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(non_snake_case)]` (part of `#[warn(nonstandard_style)]`) on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"convert the identifier to snake case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/c_api_data.rs","byte_start":1066,"byte_end":1069,"line_start":26,"line_end":26,"column_start":9,"column_end":12,"is_primary":true,"text":[{"text":" pub RGB: [u8; 3],","highlight_start":9,"highlight_end":12}],"label":null,"suggested_replacement":"rgb","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: structure field `RGB` should have a snake case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api_data.rs:26:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m26\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub RGB: [u8; 3],\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to snake case: `rgb`\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m= \u001b[0m\u001b[1mnote\u001b[0m: `#[warn(non_snake_case)]` (part of `#[warn(nonstandard_style)]`) on by default\n\n"} {"$message_type":"diagnostic","message":"structure field `RGBX` should have a snake case name","code":{"code":"non_snake_case","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api_data.rs","byte_start":1143,"byte_end":1147,"line_start":28,"line_end":28,"column_start":9,"column_end":13,"is_primary":true,"text":[{"text":" pub RGBX: [u8; 4],","highlight_start":9,"highlight_end":13}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to snake case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/c_api_data.rs","byte_start":1143,"byte_end":1147,"line_start":28,"line_end":28,"column_start":9,"column_end":13,"is_primary":true,"text":[{"text":" pub RGBX: [u8; 4],","highlight_start":9,"highlight_end":13}],"label":null,"suggested_replacement":"rgbx","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: structure field `RGBX` should have a snake case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api_data.rs:28:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m28\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub RGBX: [u8; 4],\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to snake case: `rgbx`\u001b[0m\n\n"} {"$message_type":"diagnostic","message":"structure field `RGBA` should have a snake case name","code":{"code":"non_snake_case","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api_data.rs","byte_start":1219,"byte_end":1223,"line_start":30,"line_end":30,"column_start":9,"column_end":13,"is_primary":true,"text":[{"text":" pub RGBA: [u8; 4],","highlight_start":9,"highlight_end":13}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to snake case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/c_api_data.rs","byte_start":1219,"byte_end":1223,"line_start":30,"line_end":30,"column_start":9,"column_end":13,"is_primary":true,"text":[{"text":" pub RGBA: [u8; 4],","highlight_start":9,"highlight_end":13}],"label":null,"suggested_replacement":"rgba","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: structure field `RGBA` should have a snake case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api_data.rs:30:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m30\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub RGBA: [u8; 4],\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to snake case: `rgba`\u001b[0m\n\n"} @@ -311,6 +586,21 @@ {"$message_type":"diagnostic","message":"structure field `S16` should have a snake case name","code":{"code":"non_snake_case","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api_data.rs","byte_start":1541,"byte_end":1544,"line_start":40,"line_end":40,"column_start":9,"column_end":12,"is_primary":true,"text":[{"text":" pub S16: i16,","highlight_start":9,"highlight_end":12}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to snake case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/c_api_data.rs","byte_start":1541,"byte_end":1544,"line_start":40,"line_end":40,"column_start":9,"column_end":12,"is_primary":true,"text":[{"text":" pub S16: i16,","highlight_start":9,"highlight_end":12}],"label":null,"suggested_replacement":"s16","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: structure field `S16` should have a snake case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api_data.rs:40:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m40\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub S16: i16,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to snake case (notice the capitalization): `s16`\u001b[0m\n\n"} {"$message_type":"diagnostic","message":"structure field `U32` should have a snake case name","code":{"code":"non_snake_case","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api_data.rs","byte_start":1614,"byte_end":1617,"line_start":42,"line_end":42,"column_start":9,"column_end":12,"is_primary":true,"text":[{"text":" pub U32: u32,","highlight_start":9,"highlight_end":12}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to snake case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/c_api_data.rs","byte_start":1614,"byte_end":1617,"line_start":42,"line_end":42,"column_start":9,"column_end":12,"is_primary":true,"text":[{"text":" pub U32: u32,","highlight_start":9,"highlight_end":12}],"label":null,"suggested_replacement":"u32","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: structure field `U32` should have a snake case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api_data.rs:42:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m42\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub U32: u32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to snake case (notice the capitalization): `u32`\u001b[0m\n\n"} {"$message_type":"diagnostic","message":"structure field `S32` should have a snake case name","code":{"code":"non_snake_case","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api_data.rs","byte_start":1687,"byte_end":1690,"line_start":44,"line_end":44,"column_start":9,"column_end":12,"is_primary":true,"text":[{"text":" pub S32: i32,","highlight_start":9,"highlight_end":12}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to snake case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/c_api_data.rs","byte_start":1687,"byte_end":1690,"line_start":44,"line_end":44,"column_start":9,"column_end":12,"is_primary":true,"text":[{"text":" pub S32: i32,","highlight_start":9,"highlight_end":12}],"label":null,"suggested_replacement":"s32","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: structure field `S32` should have a snake case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api_data.rs:44:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m44\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub S32: i32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to snake case (notice the capitalization): `s32`\u001b[0m\n\n"} +<<<<<<< HEAD +{"$message_type":"diagnostic","message":"variable `VX_CONTEXT_ATTRIBUTE_IMMEDIATE_BORDER` should have a snake case name","code":{"code":"non_snake_case","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":39211,"byte_end":39248,"line_start":1138,"line_end":1138,"column_start":9,"column_end":46,"is_primary":true,"text":[{"text":" VX_CONTEXT_ATTRIBUTE_IMMEDIATE_BORDER => {","highlight_start":9,"highlight_end":46}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to snake case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":39211,"byte_end":39248,"line_start":1138,"line_end":1138,"column_start":9,"column_end":46,"is_primary":true,"text":[{"text":" VX_CONTEXT_ATTRIBUTE_IMMEDIATE_BORDER => {","highlight_start":9,"highlight_end":46}],"label":null,"suggested_replacement":"vx_context_attribute_immediate_border","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: variable `VX_CONTEXT_ATTRIBUTE_IMMEDIATE_BORDER` should have a snake case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:1138:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m1138\u001b[0m \u001b[1m\u001b[94m|\u001b[0m VX_CONTEXT_ATTRIBUTE_IMMEDIATE_BORDER => {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to snake case: `vx_context_attribute_immediate_border`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"constant `VX_KERNEL_SOBEL_3x3` should have an upper case name","code":{"code":"non_upper_case_globals","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":87174,"byte_end":87193,"line_start":2587,"line_end":2587,"column_start":11,"column_end":30,"is_primary":true,"text":[{"text":"pub const VX_KERNEL_SOBEL_3x3: vx_enum = 0x03;","highlight_start":11,"highlight_end":30}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(non_upper_case_globals)]` (part of `#[warn(nonstandard_style)]`) on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"convert the identifier to upper case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":87174,"byte_end":87193,"line_start":2587,"line_end":2587,"column_start":11,"column_end":30,"is_primary":true,"text":[{"text":"pub const VX_KERNEL_SOBEL_3x3: vx_enum = 0x03;","highlight_start":11,"highlight_end":30}],"label":null,"suggested_replacement":"VX_KERNEL_SOBEL_3X3","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: constant `VX_KERNEL_SOBEL_3x3` should have an upper case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:2587:11\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m2587\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub const VX_KERNEL_SOBEL_3x3: vx_enum = 0x03;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper case (notice the capitalization): `VX_KERNEL_SOBEL_3X3`\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m= \u001b[0m\u001b[1mnote\u001b[0m: `#[warn(non_upper_case_globals)]` (part of `#[warn(nonstandard_style)]`) on by default\n\n"} +{"$message_type":"diagnostic","message":"constant `VX_KERNEL_GAUSSIAN_3x3` should have an upper case name","code":{"code":"non_upper_case_globals","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":87696,"byte_end":87718,"line_start":2598,"line_end":2598,"column_start":11,"column_end":33,"is_primary":true,"text":[{"text":"pub const VX_KERNEL_GAUSSIAN_3x3: vx_enum = 0x0E;","highlight_start":11,"highlight_end":33}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to upper case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":87696,"byte_end":87718,"line_start":2598,"line_end":2598,"column_start":11,"column_end":33,"is_primary":true,"text":[{"text":"pub const VX_KERNEL_GAUSSIAN_3x3: vx_enum = 0x0E;","highlight_start":11,"highlight_end":33}],"label":null,"suggested_replacement":"VX_KERNEL_GAUSSIAN_3X3","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: constant `VX_KERNEL_GAUSSIAN_3x3` should have an upper case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:2598:11\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m2598\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub const VX_KERNEL_GAUSSIAN_3x3: vx_enum = 0x0E;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper case (notice the capitalization): `VX_KERNEL_GAUSSIAN_3X3`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"constant `VX_KERNEL_MEDIAN_3x3` should have an upper case name","code":{"code":"non_upper_case_globals","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":87746,"byte_end":87766,"line_start":2599,"line_end":2599,"column_start":11,"column_end":31,"is_primary":true,"text":[{"text":"pub const VX_KERNEL_MEDIAN_3x3: vx_enum = 0x0F;","highlight_start":11,"highlight_end":31}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to upper case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":87746,"byte_end":87766,"line_start":2599,"line_end":2599,"column_start":11,"column_end":31,"is_primary":true,"text":[{"text":"pub const VX_KERNEL_MEDIAN_3x3: vx_enum = 0x0F;","highlight_start":11,"highlight_end":31}],"label":null,"suggested_replacement":"VX_KERNEL_MEDIAN_3X3","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: constant `VX_KERNEL_MEDIAN_3x3` should have an upper case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:2599:11\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m2599\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub const VX_KERNEL_MEDIAN_3x3: vx_enum = 0x0F;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper case (notice the capitalization): `VX_KERNEL_MEDIAN_3X3`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"constant `VX_KERNEL_SOBEL_5x5` should have an upper case name","code":{"code":"non_upper_case_globals","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":87794,"byte_end":87813,"line_start":2600,"line_end":2600,"column_start":11,"column_end":30,"is_primary":true,"text":[{"text":"pub const VX_KERNEL_SOBEL_5x5: vx_enum = 0x10;","highlight_start":11,"highlight_end":30}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to upper case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":87794,"byte_end":87813,"line_start":2600,"line_end":2600,"column_start":11,"column_end":30,"is_primary":true,"text":[{"text":"pub const VX_KERNEL_SOBEL_5x5: vx_enum = 0x10;","highlight_start":11,"highlight_end":30}],"label":null,"suggested_replacement":"VX_KERNEL_SOBEL_5X5","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: constant `VX_KERNEL_SOBEL_5x5` should have an upper case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:2600:11\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m2600\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub const VX_KERNEL_SOBEL_5x5: vx_enum = 0x10;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper case (notice the capitalization): `VX_KERNEL_SOBEL_5X5`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"constant `VX_KERNEL_BOX_3x3` should have an upper case name","code":{"code":"non_upper_case_globals","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":87841,"byte_end":87858,"line_start":2601,"line_end":2601,"column_start":11,"column_end":28,"is_primary":true,"text":[{"text":"pub const VX_KERNEL_BOX_3x3: vx_enum = 0x12; // Per OpenVX spec: VX_KERNEL_BASE + 0x12","highlight_start":11,"highlight_end":28}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to upper case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":87841,"byte_end":87858,"line_start":2601,"line_end":2601,"column_start":11,"column_end":28,"is_primary":true,"text":[{"text":"pub const VX_KERNEL_BOX_3x3: vx_enum = 0x12; // Per OpenVX spec: VX_KERNEL_BASE + 0x12","highlight_start":11,"highlight_end":28}],"label":null,"suggested_replacement":"VX_KERNEL_BOX_3X3","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: constant `VX_KERNEL_BOX_3x3` should have an upper case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:2601:11\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m2601\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub const VX_KERNEL_BOX_3x3: vx_enum = 0x12; // Per OpenVX spec: VX_KERNEL_BASE + 0x12\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper case (notice the capitalization): `VX_KERNEL_BOX_3X3`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"constant `VX_KERNEL_GAUSSIAN_5x5` should have an upper case name","code":{"code":"non_upper_case_globals","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":87929,"byte_end":87951,"line_start":2602,"line_end":2602,"column_start":11,"column_end":33,"is_primary":true,"text":[{"text":"pub const VX_KERNEL_GAUSSIAN_5x5: vx_enum = 0x13;","highlight_start":11,"highlight_end":33}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to upper case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":87929,"byte_end":87951,"line_start":2602,"line_end":2602,"column_start":11,"column_end":33,"is_primary":true,"text":[{"text":"pub const VX_KERNEL_GAUSSIAN_5x5: vx_enum = 0x13;","highlight_start":11,"highlight_end":33}],"label":null,"suggested_replacement":"VX_KERNEL_GAUSSIAN_5X5","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: constant `VX_KERNEL_GAUSSIAN_5x5` should have an upper case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:2602:11\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m2602\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub const VX_KERNEL_GAUSSIAN_5x5: vx_enum = 0x13;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper case (notice the capitalization): `VX_KERNEL_GAUSSIAN_5X5`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"constant `VX_KERNEL_DILATE_3x3` should have an upper case name","code":{"code":"non_upper_case_globals","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":88240,"byte_end":88260,"line_start":2608,"line_end":2608,"column_start":11,"column_end":31,"is_primary":true,"text":[{"text":"pub const VX_KERNEL_DILATE_3x3: vx_enum = 0x19;","highlight_start":11,"highlight_end":31}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to upper case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":88240,"byte_end":88260,"line_start":2608,"line_end":2608,"column_start":11,"column_end":31,"is_primary":true,"text":[{"text":"pub const VX_KERNEL_DILATE_3x3: vx_enum = 0x19;","highlight_start":11,"highlight_end":31}],"label":null,"suggested_replacement":"VX_KERNEL_DILATE_3X3","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: constant `VX_KERNEL_DILATE_3x3` should have an upper case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:2608:11\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m2608\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub const VX_KERNEL_DILATE_3x3: vx_enum = 0x19;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper case (notice the capitalization): `VX_KERNEL_DILATE_3X3`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"constant `VX_KERNEL_ERODE_3x3` should have an upper case name","code":{"code":"non_upper_case_globals","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":88288,"byte_end":88307,"line_start":2609,"line_end":2609,"column_start":11,"column_end":30,"is_primary":true,"text":[{"text":"pub const VX_KERNEL_ERODE_3x3: vx_enum = 0x1A;","highlight_start":11,"highlight_end":30}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to upper case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":88288,"byte_end":88307,"line_start":2609,"line_end":2609,"column_start":11,"column_end":30,"is_primary":true,"text":[{"text":"pub const VX_KERNEL_ERODE_3x3: vx_enum = 0x1A;","highlight_start":11,"highlight_end":30}],"label":null,"suggested_replacement":"VX_KERNEL_ERODE_3X3","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: constant `VX_KERNEL_ERODE_3x3` should have an upper case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:2609:11\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m2609\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub const VX_KERNEL_ERODE_3x3: vx_enum = 0x1A;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper case (notice the capitalization): `VX_KERNEL_ERODE_3X3`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"constant `VX_KERNEL_MEDIAN_3x3_ALT` should have an upper case name","code":{"code":"non_upper_case_globals","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":88335,"byte_end":88359,"line_start":2610,"line_end":2610,"column_start":11,"column_end":35,"is_primary":true,"text":[{"text":"pub const VX_KERNEL_MEDIAN_3x3_ALT: vx_enum = 0x1B; // 0x1B","highlight_start":11,"highlight_end":35}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to upper case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":88335,"byte_end":88359,"line_start":2610,"line_end":2610,"column_start":11,"column_end":35,"is_primary":true,"text":[{"text":"pub const VX_KERNEL_MEDIAN_3x3_ALT: vx_enum = 0x1B; // 0x1B","highlight_start":11,"highlight_end":35}],"label":null,"suggested_replacement":"VX_KERNEL_MEDIAN_3X3_ALT","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: constant `VX_KERNEL_MEDIAN_3x3_ALT` should have an upper case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:2610:11\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m2610\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub const VX_KERNEL_MEDIAN_3x3_ALT: vx_enum = 0x1B; // 0x1B\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper case (notice the capitalization): `VX_KERNEL_MEDIAN_3X3_ALT`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"constant `VX_KERNEL_DILATE_5x5` should have an upper case name","code":{"code":"non_upper_case_globals","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":88842,"byte_end":88862,"line_start":2620,"line_end":2620,"column_start":11,"column_end":31,"is_primary":true,"text":[{"text":"pub const VX_KERNEL_DILATE_5x5: vx_enum = 0x25;","highlight_start":11,"highlight_end":31}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to upper case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":88842,"byte_end":88862,"line_start":2620,"line_end":2620,"column_start":11,"column_end":31,"is_primary":true,"text":[{"text":"pub const VX_KERNEL_DILATE_5x5: vx_enum = 0x25;","highlight_start":11,"highlight_end":31}],"label":null,"suggested_replacement":"VX_KERNEL_DILATE_5X5","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: constant `VX_KERNEL_DILATE_5x5` should have an upper case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:2620:11\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m2620\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub const VX_KERNEL_DILATE_5x5: vx_enum = 0x25;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper case (notice the capitalization): `VX_KERNEL_DILATE_5X5`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"constant `VX_KERNEL_ERODE_5x5` should have an upper case name","code":{"code":"non_upper_case_globals","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":88890,"byte_end":88909,"line_start":2621,"line_end":2621,"column_start":11,"column_end":30,"is_primary":true,"text":[{"text":"pub const VX_KERNEL_ERODE_5x5: vx_enum = 0x26;","highlight_start":11,"highlight_end":30}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to upper case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":88890,"byte_end":88909,"line_start":2621,"line_end":2621,"column_start":11,"column_end":30,"is_primary":true,"text":[{"text":"pub const VX_KERNEL_ERODE_5x5: vx_enum = 0x26;","highlight_start":11,"highlight_end":30}],"label":null,"suggested_replacement":"VX_KERNEL_ERODE_5X5","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: constant `VX_KERNEL_ERODE_5x5` should have an upper case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:2621:11\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m2621\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub const VX_KERNEL_ERODE_5x5: vx_enum = 0x26;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper case (notice the capitalization): `VX_KERNEL_ERODE_5X5`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"298 warnings emitted","code":null,"level":"warning","spans":[],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: 298 warnings emitted\u001b[0m\n\n"} +======= {"$message_type":"diagnostic","message":"variable `VX_CONTEXT_ATTRIBUTE_IMMEDIATE_BORDER` should have a snake case name","code":{"code":"non_snake_case","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":99962,"byte_end":99999,"line_start":2591,"line_end":2591,"column_start":9,"column_end":46,"is_primary":true,"text":[{"text":" VX_CONTEXT_ATTRIBUTE_IMMEDIATE_BORDER => {","highlight_start":9,"highlight_end":46}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to snake case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":99962,"byte_end":99999,"line_start":2591,"line_end":2591,"column_start":9,"column_end":46,"is_primary":true,"text":[{"text":" VX_CONTEXT_ATTRIBUTE_IMMEDIATE_BORDER => {","highlight_start":9,"highlight_end":46}],"label":null,"suggested_replacement":"vx_context_attribute_immediate_border","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: variable `VX_CONTEXT_ATTRIBUTE_IMMEDIATE_BORDER` should have a snake case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:2591:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m2591\u001b[0m \u001b[1m\u001b[94m|\u001b[0m VX_CONTEXT_ATTRIBUTE_IMMEDIATE_BORDER => {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to snake case: `vx_context_attribute_immediate_border`\u001b[0m\n\n"} {"$message_type":"diagnostic","message":"constant `VX_KERNEL_SOBEL_3x3` should have an upper case name","code":{"code":"non_upper_case_globals","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":149219,"byte_end":149238,"line_start":4070,"line_end":4070,"column_start":11,"column_end":30,"is_primary":true,"text":[{"text":"pub const VX_KERNEL_SOBEL_3x3: vx_enum = 0x04;","highlight_start":11,"highlight_end":30}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(non_upper_case_globals)]` (part of `#[warn(nonstandard_style)]`) on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"convert the identifier to upper case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":149219,"byte_end":149238,"line_start":4070,"line_end":4070,"column_start":11,"column_end":30,"is_primary":true,"text":[{"text":"pub const VX_KERNEL_SOBEL_3x3: vx_enum = 0x04;","highlight_start":11,"highlight_end":30}],"label":null,"suggested_replacement":"VX_KERNEL_SOBEL_3X3","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: constant `VX_KERNEL_SOBEL_3x3` should have an upper case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:4070:11\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m4070\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub const VX_KERNEL_SOBEL_3x3: vx_enum = 0x04;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper case (notice the capitalization): `VX_KERNEL_SOBEL_3X3`\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m= \u001b[0m\u001b[1mnote\u001b[0m: `#[warn(non_upper_case_globals)]` (part of `#[warn(nonstandard_style)]`) on by default\n\n"} {"$message_type":"diagnostic","message":"constant `VX_KERNEL_DILATE_3x3` should have an upper case name","code":{"code":"non_upper_case_globals","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":149751,"byte_end":149771,"line_start":4081,"line_end":4081,"column_start":11,"column_end":31,"is_primary":true,"text":[{"text":"pub const VX_KERNEL_DILATE_3x3: vx_enum = 0x0F;","highlight_start":11,"highlight_end":31}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to upper case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":149751,"byte_end":149771,"line_start":4081,"line_end":4081,"column_start":11,"column_end":31,"is_primary":true,"text":[{"text":"pub const VX_KERNEL_DILATE_3x3: vx_enum = 0x0F;","highlight_start":11,"highlight_end":31}],"label":null,"suggested_replacement":"VX_KERNEL_DILATE_3X3","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: constant `VX_KERNEL_DILATE_3x3` should have an upper case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:4081:11\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m4081\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub const VX_KERNEL_DILATE_3x3: vx_enum = 0x0F;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper case (notice the capitalization): `VX_KERNEL_DILATE_3X3`\u001b[0m\n\n"} @@ -319,3 +609,4 @@ {"$message_type":"diagnostic","message":"constant `VX_KERNEL_BOX_3x3` should have an upper case name","code":{"code":"non_upper_case_globals","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":149894,"byte_end":149911,"line_start":4084,"line_end":4084,"column_start":11,"column_end":28,"is_primary":true,"text":[{"text":"pub const VX_KERNEL_BOX_3x3: vx_enum = 0x12;","highlight_start":11,"highlight_end":28}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to upper case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":149894,"byte_end":149911,"line_start":4084,"line_end":4084,"column_start":11,"column_end":28,"is_primary":true,"text":[{"text":"pub const VX_KERNEL_BOX_3x3: vx_enum = 0x12;","highlight_start":11,"highlight_end":28}],"label":null,"suggested_replacement":"VX_KERNEL_BOX_3X3","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: constant `VX_KERNEL_BOX_3x3` should have an upper case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:4084:11\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m4084\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub const VX_KERNEL_BOX_3x3: vx_enum = 0x12;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper case (notice the capitalization): `VX_KERNEL_BOX_3X3`\u001b[0m\n\n"} {"$message_type":"diagnostic","message":"constant `VX_KERNEL_GAUSSIAN_3x3` should have an upper case name","code":{"code":"non_upper_case_globals","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":149939,"byte_end":149961,"line_start":4085,"line_end":4085,"column_start":11,"column_end":33,"is_primary":true,"text":[{"text":"pub const VX_KERNEL_GAUSSIAN_3x3: vx_enum = 0x13;","highlight_start":11,"highlight_end":33}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to upper case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":149939,"byte_end":149961,"line_start":4085,"line_end":4085,"column_start":11,"column_end":33,"is_primary":true,"text":[{"text":"pub const VX_KERNEL_GAUSSIAN_3x3: vx_enum = 0x13;","highlight_start":11,"highlight_end":33}],"label":null,"suggested_replacement":"VX_KERNEL_GAUSSIAN_3X3","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: constant `VX_KERNEL_GAUSSIAN_3x3` should have an upper case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:4085:11\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m4085\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub const VX_KERNEL_GAUSSIAN_3x3: vx_enum = 0x13;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper case (notice the capitalization): `VX_KERNEL_GAUSSIAN_3X3`\u001b[0m\n\n"} {"$message_type":"diagnostic","message":"320 warnings emitted","code":null,"level":"warning","spans":[],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: 320 warnings emitted\u001b[0m\n\n"} +>>>>>>> origin/master diff --git a/target/release/.fingerprint/openvx-core-b3e9f44a082d8104/dep-test-lib-openvx_core b/target/release/.fingerprint/openvx-core-b3e9f44a082d8104/dep-test-lib-openvx_core new file mode 100644 index 0000000..860e537 Binary files /dev/null and b/target/release/.fingerprint/openvx-core-b3e9f44a082d8104/dep-test-lib-openvx_core differ diff --git a/target/release/.fingerprint/openvx-core-b3e9f44a082d8104/invoked.timestamp b/target/release/.fingerprint/openvx-core-b3e9f44a082d8104/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/openvx-core-b3e9f44a082d8104/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/openvx-core-b3e9f44a082d8104/output-test-lib-openvx_core b/target/release/.fingerprint/openvx-core-b3e9f44a082d8104/output-test-lib-openvx_core new file mode 100644 index 0000000..49c9e7d --- /dev/null +++ b/target/release/.fingerprint/openvx-core-b3e9f44a082d8104/output-test-lib-openvx_core @@ -0,0 +1,299 @@ +{"$message_type":"diagnostic","message":"unused import: `VxCGraphData`","code":{"code":"unused_imports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":334,"byte_end":346,"line_start":11,"line_end":11,"column_start":41,"column_end":53,"is_primary":true,"text":[{"text":"use crate::unified_c_api::{GRAPHS_DATA, VxCGraphData};","highlight_start":41,"highlight_end":53}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(unused_imports)]` (part of `#[warn(unused)]`) on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"remove the unused import","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":332,"byte_end":346,"line_start":11,"line_end":11,"column_start":39,"column_end":53,"is_primary":true,"text":[{"text":"use crate::unified_c_api::{GRAPHS_DATA, VxCGraphData};","highlight_start":39,"highlight_end":53}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null},{"file_name":"openvx-core/src/c_api.rs","byte_start":320,"byte_end":321,"line_start":11,"line_end":11,"column_start":27,"column_end":28,"is_primary":true,"text":[{"text":"use crate::unified_c_api::{GRAPHS_DATA, VxCGraphData};","highlight_start":27,"highlight_end":28}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null},{"file_name":"openvx-core/src/c_api.rs","byte_start":346,"byte_end":347,"line_start":11,"line_end":11,"column_start":53,"column_end":54,"is_primary":true,"text":[{"text":"use crate::unified_c_api::{GRAPHS_DATA, VxCGraphData};","highlight_start":53,"highlight_end":54}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused import: `VxCGraphData`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api.rs:11:41\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m11\u001b[0m \u001b[1m\u001b[94m|\u001b[0m use crate::unified_c_api::{GRAPHS_DATA, VxCGraphData};\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m= \u001b[0m\u001b[1mnote\u001b[0m: `#[warn(unused_imports)]` (part of `#[warn(unused)]`) on by default\n\n"} +{"$message_type":"diagnostic","message":"type `vx_status` should have an upper camel case name","code":{"code":"non_camel_case_types","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":678,"byte_end":687,"line_start":20,"line_end":20,"column_start":10,"column_end":19,"is_primary":true,"text":[{"text":"pub type vx_status = i32;","highlight_start":10,"highlight_end":19}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(non_camel_case_types)]` (part of `#[warn(nonstandard_style)]`) on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"convert the identifier to upper camel case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":678,"byte_end":687,"line_start":20,"line_end":20,"column_start":10,"column_end":19,"is_primary":true,"text":[{"text":"pub type vx_status = i32;","highlight_start":10,"highlight_end":19}],"label":null,"suggested_replacement":"VxStatus","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: type `vx_status` should have an upper camel case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api.rs:20:10\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m20\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub type vx_status = i32;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper camel case: `VxStatus`\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m= \u001b[0m\u001b[1mnote\u001b[0m: `#[warn(non_camel_case_types)]` (part of `#[warn(nonstandard_style)]`) on by default\n\n"} +{"$message_type":"diagnostic","message":"type `vx_enum` should have an upper camel case name","code":{"code":"non_camel_case_types","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":704,"byte_end":711,"line_start":21,"line_end":21,"column_start":10,"column_end":17,"is_primary":true,"text":[{"text":"pub type vx_enum = i32;","highlight_start":10,"highlight_end":17}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to upper camel case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":704,"byte_end":711,"line_start":21,"line_end":21,"column_start":10,"column_end":17,"is_primary":true,"text":[{"text":"pub type vx_enum = i32;","highlight_start":10,"highlight_end":17}],"label":null,"suggested_replacement":"VxEnum","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: type `vx_enum` should have an upper camel case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api.rs:21:10\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m21\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub type vx_enum = i32;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper camel case: `VxEnum`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"type `vx_uint32` should have an upper camel case name","code":{"code":"non_camel_case_types","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":728,"byte_end":737,"line_start":22,"line_end":22,"column_start":10,"column_end":19,"is_primary":true,"text":[{"text":"pub type vx_uint32 = u32;","highlight_start":10,"highlight_end":19}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to upper camel case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":728,"byte_end":737,"line_start":22,"line_end":22,"column_start":10,"column_end":19,"is_primary":true,"text":[{"text":"pub type vx_uint32 = u32;","highlight_start":10,"highlight_end":19}],"label":null,"suggested_replacement":"VxUint32","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: type `vx_uint32` should have an upper camel case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api.rs:22:10\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m22\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub type vx_uint32 = u32;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper camel case: `VxUint32`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"type `vx_size` should have an upper camel case name","code":{"code":"non_camel_case_types","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":754,"byte_end":761,"line_start":23,"line_end":23,"column_start":10,"column_end":17,"is_primary":true,"text":[{"text":"pub type vx_size = usize;","highlight_start":10,"highlight_end":17}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to upper camel case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":754,"byte_end":761,"line_start":23,"line_end":23,"column_start":10,"column_end":17,"is_primary":true,"text":[{"text":"pub type vx_size = usize;","highlight_start":10,"highlight_end":17}],"label":null,"suggested_replacement":"VxSize","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: type `vx_size` should have an upper camel case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api.rs:23:10\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m23\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub type vx_size = usize;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper camel case: `VxSize`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"type `vx_char` should have an upper camel case name","code":{"code":"non_camel_case_types","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":780,"byte_end":787,"line_start":24,"line_end":24,"column_start":10,"column_end":17,"is_primary":true,"text":[{"text":"pub type vx_char = i8;","highlight_start":10,"highlight_end":17}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to upper camel case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":780,"byte_end":787,"line_start":24,"line_end":24,"column_start":10,"column_end":17,"is_primary":true,"text":[{"text":"pub type vx_char = i8;","highlight_start":10,"highlight_end":17}],"label":null,"suggested_replacement":"VxChar","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: type `vx_char` should have an upper camel case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api.rs:24:10\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m24\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub type vx_char = i8;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper camel case: `VxChar`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"type `vx_bool` should have an upper camel case name","code":{"code":"non_camel_case_types","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":803,"byte_end":810,"line_start":25,"line_end":25,"column_start":10,"column_end":17,"is_primary":true,"text":[{"text":"pub type vx_bool = i32;","highlight_start":10,"highlight_end":17}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to upper camel case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":803,"byte_end":810,"line_start":25,"line_end":25,"column_start":10,"column_end":17,"is_primary":true,"text":[{"text":"pub type vx_bool = i32;","highlight_start":10,"highlight_end":17}],"label":null,"suggested_replacement":"VxBool","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: type `vx_bool` should have an upper camel case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api.rs:25:10\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m25\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub type vx_bool = i32;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper camel case: `VxBool`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"type `vx_df_image` should have an upper camel case name","code":{"code":"non_camel_case_types","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":827,"byte_end":838,"line_start":26,"line_end":26,"column_start":10,"column_end":21,"is_primary":true,"text":[{"text":"pub type vx_df_image = u32;","highlight_start":10,"highlight_end":21}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to upper camel case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":827,"byte_end":838,"line_start":26,"line_end":26,"column_start":10,"column_end":21,"is_primary":true,"text":[{"text":"pub type vx_df_image = u32;","highlight_start":10,"highlight_end":21}],"label":null,"suggested_replacement":"VxDfImage","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: type `vx_df_image` should have an upper camel case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api.rs:26:10\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m26\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub type vx_df_image = u32;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper camel case: `VxDfImage`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"type `vx_uint64` should have an upper camel case name","code":{"code":"non_camel_case_types","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":855,"byte_end":864,"line_start":27,"line_end":27,"column_start":10,"column_end":19,"is_primary":true,"text":[{"text":"pub type vx_uint64 = u64;","highlight_start":10,"highlight_end":19}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to upper camel case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":855,"byte_end":864,"line_start":27,"line_end":27,"column_start":10,"column_end":19,"is_primary":true,"text":[{"text":"pub type vx_uint64 = u64;","highlight_start":10,"highlight_end":19}],"label":null,"suggested_replacement":"VxUint64","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: type `vx_uint64` should have an upper camel case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api.rs:27:10\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m27\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub type vx_uint64 = u64;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper camel case: `VxUint64`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"type `vx_int32` should have an upper camel case name","code":{"code":"non_camel_case_types","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":881,"byte_end":889,"line_start":28,"line_end":28,"column_start":10,"column_end":18,"is_primary":true,"text":[{"text":"pub type vx_int32 = i32;","highlight_start":10,"highlight_end":18}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to upper camel case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":881,"byte_end":889,"line_start":28,"line_end":28,"column_start":10,"column_end":18,"is_primary":true,"text":[{"text":"pub type vx_int32 = i32;","highlight_start":10,"highlight_end":18}],"label":null,"suggested_replacement":"VxInt32","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: type `vx_int32` should have an upper camel case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api.rs:28:10\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m28\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub type vx_int32 = i32;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper camel case: `VxInt32`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"type `vx_int8` should have an upper camel case name","code":{"code":"non_camel_case_types","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":906,"byte_end":913,"line_start":29,"line_end":29,"column_start":10,"column_end":17,"is_primary":true,"text":[{"text":"pub type vx_int8 = i8;","highlight_start":10,"highlight_end":17}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to upper camel case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":906,"byte_end":913,"line_start":29,"line_end":29,"column_start":10,"column_end":17,"is_primary":true,"text":[{"text":"pub type vx_int8 = i8;","highlight_start":10,"highlight_end":17}],"label":null,"suggested_replacement":"VxInt8","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: type `vx_int8` should have an upper camel case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api.rs:29:10\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m29\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub type vx_int8 = i8;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper camel case: `VxInt8`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"type `vx_float32` should have an upper camel case name","code":{"code":"non_camel_case_types","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":929,"byte_end":939,"line_start":30,"line_end":30,"column_start":10,"column_end":20,"is_primary":true,"text":[{"text":"pub type vx_float32 = f32;","highlight_start":10,"highlight_end":20}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to upper camel case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":929,"byte_end":939,"line_start":30,"line_end":30,"column_start":10,"column_end":20,"is_primary":true,"text":[{"text":"pub type vx_float32 = f32;","highlight_start":10,"highlight_end":20}],"label":null,"suggested_replacement":"VxFloat32","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: type `vx_float32` should have an upper camel case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api.rs:30:10\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m30\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub type vx_float32 = f32;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper camel case: `VxFloat32`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"type `vx_map_id` should have an upper camel case name","code":{"code":"non_camel_case_types","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":956,"byte_end":965,"line_start":31,"line_end":31,"column_start":10,"column_end":19,"is_primary":true,"text":[{"text":"pub type vx_map_id = usize;","highlight_start":10,"highlight_end":19}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to upper camel case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":956,"byte_end":965,"line_start":31,"line_end":31,"column_start":10,"column_end":19,"is_primary":true,"text":[{"text":"pub type vx_map_id = usize;","highlight_start":10,"highlight_end":19}],"label":null,"suggested_replacement":"VxMapId","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: type `vx_map_id` should have an upper camel case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api.rs:31:10\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m31\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub type vx_map_id = usize;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper camel case: `VxMapId`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"type `vx_context` should have an upper camel case name","code":{"code":"non_camel_case_types","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":1243,"byte_end":1253,"line_start":39,"line_end":39,"column_start":10,"column_end":20,"is_primary":true,"text":[{"text":"pub type vx_context = *mut VxContext;","highlight_start":10,"highlight_end":20}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to upper camel case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":1243,"byte_end":1253,"line_start":39,"line_end":39,"column_start":10,"column_end":20,"is_primary":true,"text":[{"text":"pub type vx_context = *mut VxContext;","highlight_start":10,"highlight_end":20}],"label":null,"suggested_replacement":"VxContext","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: type `vx_context` should have an upper camel case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api.rs:39:10\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m39\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub type vx_context = *mut VxContext;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper camel case: `VxContext`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"type `vx_graph` should have an upper camel case name","code":{"code":"non_camel_case_types","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":1334,"byte_end":1342,"line_start":43,"line_end":43,"column_start":10,"column_end":18,"is_primary":true,"text":[{"text":"pub type vx_graph = *mut VxGraph;","highlight_start":10,"highlight_end":18}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to upper camel case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":1334,"byte_end":1342,"line_start":43,"line_end":43,"column_start":10,"column_end":18,"is_primary":true,"text":[{"text":"pub type vx_graph = *mut VxGraph;","highlight_start":10,"highlight_end":18}],"label":null,"suggested_replacement":"VxGraph","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: type `vx_graph` should have an upper camel case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api.rs:43:10\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m43\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub type vx_graph = *mut VxGraph;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper camel case: `VxGraph`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"type `vx_node` should have an upper camel case name","code":{"code":"non_camel_case_types","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":1419,"byte_end":1426,"line_start":47,"line_end":47,"column_start":10,"column_end":17,"is_primary":true,"text":[{"text":"pub type vx_node = *mut VxNode;","highlight_start":10,"highlight_end":17}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to upper camel case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":1419,"byte_end":1426,"line_start":47,"line_end":47,"column_start":10,"column_end":17,"is_primary":true,"text":[{"text":"pub type vx_node = *mut VxNode;","highlight_start":10,"highlight_end":17}],"label":null,"suggested_replacement":"VxNode","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: type `vx_node` should have an upper camel case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api.rs:47:10\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m47\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub type vx_node = *mut VxNode;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper camel case: `VxNode`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"type `vx_kernel` should have an upper camel case name","code":{"code":"non_camel_case_types","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":1506,"byte_end":1515,"line_start":51,"line_end":51,"column_start":10,"column_end":19,"is_primary":true,"text":[{"text":"pub type vx_kernel = *mut VxKernel;","highlight_start":10,"highlight_end":19}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to upper camel case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":1506,"byte_end":1515,"line_start":51,"line_end":51,"column_start":10,"column_end":19,"is_primary":true,"text":[{"text":"pub type vx_kernel = *mut VxKernel;","highlight_start":10,"highlight_end":19}],"label":null,"suggested_replacement":"VxKernel","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: type `vx_kernel` should have an upper camel case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api.rs:51:10\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m51\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub type vx_kernel = *mut VxKernel;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper camel case: `VxKernel`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"type `vx_parameter` should have an upper camel case name","code":{"code":"non_camel_case_types","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":1603,"byte_end":1615,"line_start":55,"line_end":55,"column_start":10,"column_end":22,"is_primary":true,"text":[{"text":"pub type vx_parameter = *mut VxParameter;","highlight_start":10,"highlight_end":22}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to upper camel case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":1603,"byte_end":1615,"line_start":55,"line_end":55,"column_start":10,"column_end":22,"is_primary":true,"text":[{"text":"pub type vx_parameter = *mut VxParameter;","highlight_start":10,"highlight_end":22}],"label":null,"suggested_replacement":"VxParameter","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: type `vx_parameter` should have an upper camel case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api.rs:55:10\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m55\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub type vx_parameter = *mut VxParameter;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper camel case: `VxParameter`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"type `vx_scalar` should have an upper camel case name","code":{"code":"non_camel_case_types","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":1700,"byte_end":1709,"line_start":59,"line_end":59,"column_start":10,"column_end":19,"is_primary":true,"text":[{"text":"pub type vx_scalar = *mut VxScalar;","highlight_start":10,"highlight_end":19}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to upper camel case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":1700,"byte_end":1709,"line_start":59,"line_end":59,"column_start":10,"column_end":19,"is_primary":true,"text":[{"text":"pub type vx_scalar = *mut VxScalar;","highlight_start":10,"highlight_end":19}],"label":null,"suggested_replacement":"VxScalar","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: type `vx_scalar` should have an upper camel case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api.rs:59:10\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m59\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub type vx_scalar = *mut VxScalar;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper camel case: `VxScalar`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"type `vx_convolution` should have an upper camel case name","code":{"code":"non_camel_case_types","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":1801,"byte_end":1815,"line_start":63,"line_end":63,"column_start":10,"column_end":24,"is_primary":true,"text":[{"text":"pub type vx_convolution = *mut VxConvolution;","highlight_start":10,"highlight_end":24}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to upper camel case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":1801,"byte_end":1815,"line_start":63,"line_end":63,"column_start":10,"column_end":24,"is_primary":true,"text":[{"text":"pub type vx_convolution = *mut VxConvolution;","highlight_start":10,"highlight_end":24}],"label":null,"suggested_replacement":"VxConvolution","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: type `vx_convolution` should have an upper camel case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api.rs:63:10\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m63\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub type vx_convolution = *mut VxConvolution;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper camel case: `VxConvolution`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"type `vx_matrix` should have an upper camel case name","code":{"code":"non_camel_case_types","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":1902,"byte_end":1911,"line_start":67,"line_end":67,"column_start":10,"column_end":19,"is_primary":true,"text":[{"text":"pub type vx_matrix = *mut VxMatrix;","highlight_start":10,"highlight_end":19}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to upper camel case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":1902,"byte_end":1911,"line_start":67,"line_end":67,"column_start":10,"column_end":19,"is_primary":true,"text":[{"text":"pub type vx_matrix = *mut VxMatrix;","highlight_start":10,"highlight_end":19}],"label":null,"suggested_replacement":"VxMatrix","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: type `vx_matrix` should have an upper camel case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api.rs:67:10\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m67\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub type vx_matrix = *mut VxMatrix;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper camel case: `VxMatrix`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"type `vx_lut` should have an upper camel case name","code":{"code":"non_camel_case_types","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":1987,"byte_end":1993,"line_start":71,"line_end":71,"column_start":10,"column_end":16,"is_primary":true,"text":[{"text":"pub type vx_lut = *mut VxLUT;","highlight_start":10,"highlight_end":16}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to upper camel case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":1987,"byte_end":1993,"line_start":71,"line_end":71,"column_start":10,"column_end":16,"is_primary":true,"text":[{"text":"pub type vx_lut = *mut VxLUT;","highlight_start":10,"highlight_end":16}],"label":null,"suggested_replacement":"VxLut","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: type `vx_lut` should have an upper camel case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api.rs:71:10\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m71\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub type vx_lut = *mut VxLUT;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper camel case: `VxLut`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"type `vx_threshold` should have an upper camel case name","code":{"code":"non_camel_case_types","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":2078,"byte_end":2090,"line_start":75,"line_end":75,"column_start":10,"column_end":22,"is_primary":true,"text":[{"text":"pub type vx_threshold = *mut VxThreshold;","highlight_start":10,"highlight_end":22}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to upper camel case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":2078,"byte_end":2090,"line_start":75,"line_end":75,"column_start":10,"column_end":22,"is_primary":true,"text":[{"text":"pub type vx_threshold = *mut VxThreshold;","highlight_start":10,"highlight_end":22}],"label":null,"suggested_replacement":"VxThreshold","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: type `vx_threshold` should have an upper camel case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api.rs:75:10\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m75\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub type vx_threshold = *mut VxThreshold;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper camel case: `VxThreshold`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"type `vx_pyramid` should have an upper camel case name","code":{"code":"non_camel_case_types","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":2177,"byte_end":2187,"line_start":79,"line_end":79,"column_start":10,"column_end":20,"is_primary":true,"text":[{"text":"pub type vx_pyramid = *mut VxPyramid;","highlight_start":10,"highlight_end":20}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to upper camel case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":2177,"byte_end":2187,"line_start":79,"line_end":79,"column_start":10,"column_end":20,"is_primary":true,"text":[{"text":"pub type vx_pyramid = *mut VxPyramid;","highlight_start":10,"highlight_end":20}],"label":null,"suggested_replacement":"VxPyramid","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: type `vx_pyramid` should have an upper camel case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api.rs:79:10\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m79\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub type vx_pyramid = *mut VxPyramid;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper camel case: `VxPyramid`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"type `vx_image` should have an upper camel case name","code":{"code":"non_camel_case_types","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":2269,"byte_end":2277,"line_start":83,"line_end":83,"column_start":10,"column_end":18,"is_primary":true,"text":[{"text":"pub type vx_image = *mut VxImage;","highlight_start":10,"highlight_end":18}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to upper camel case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":2269,"byte_end":2277,"line_start":83,"line_end":83,"column_start":10,"column_end":18,"is_primary":true,"text":[{"text":"pub type vx_image = *mut VxImage;","highlight_start":10,"highlight_end":18}],"label":null,"suggested_replacement":"VxImage","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: type `vx_image` should have an upper camel case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api.rs:83:10\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m83\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub type vx_image = *mut VxImage;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper camel case: `VxImage`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"type `vx_reference` should have an upper camel case name","code":{"code":"non_camel_case_types","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":2371,"byte_end":2383,"line_start":87,"line_end":87,"column_start":10,"column_end":22,"is_primary":true,"text":[{"text":"pub type vx_reference = *mut VxReference;","highlight_start":10,"highlight_end":22}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to upper camel case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":2371,"byte_end":2383,"line_start":87,"line_end":87,"column_start":10,"column_end":22,"is_primary":true,"text":[{"text":"pub type vx_reference = *mut VxReference;","highlight_start":10,"highlight_end":22}],"label":null,"suggested_replacement":"VxReference","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: type `vx_reference` should have an upper camel case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api.rs:87:10\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m87\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub type vx_reference = *mut VxReference;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper camel case: `VxReference`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"type `vx_distribution` should have an upper camel case name","code":{"code":"non_camel_case_types","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":2480,"byte_end":2495,"line_start":91,"line_end":91,"column_start":10,"column_end":25,"is_primary":true,"text":[{"text":"pub type vx_distribution = *mut VxDistribution;","highlight_start":10,"highlight_end":25}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to upper camel case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":2480,"byte_end":2495,"line_start":91,"line_end":91,"column_start":10,"column_end":25,"is_primary":true,"text":[{"text":"pub type vx_distribution = *mut VxDistribution;","highlight_start":10,"highlight_end":25}],"label":null,"suggested_replacement":"VxDistribution","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: type `vx_distribution` should have an upper camel case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api.rs:91:10\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m91\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub type vx_distribution = *mut VxDistribution;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper camel case: `VxDistribution`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"type `vx_delay` should have an upper camel case name","code":{"code":"non_camel_case_types","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":2581,"byte_end":2589,"line_start":95,"line_end":95,"column_start":10,"column_end":18,"is_primary":true,"text":[{"text":"pub type vx_delay = *mut VxDelay;","highlight_start":10,"highlight_end":18}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to upper camel case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":2581,"byte_end":2589,"line_start":95,"line_end":95,"column_start":10,"column_end":18,"is_primary":true,"text":[{"text":"pub type vx_delay = *mut VxDelay;","highlight_start":10,"highlight_end":18}],"label":null,"suggested_replacement":"VxDelay","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: type `vx_delay` should have an upper camel case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api.rs:95:10\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m95\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub type vx_delay = *mut VxDelay;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper camel case: `VxDelay`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"type `vx_remap` should have an upper camel case name","code":{"code":"non_camel_case_types","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":2668,"byte_end":2676,"line_start":99,"line_end":99,"column_start":10,"column_end":18,"is_primary":true,"text":[{"text":"pub type vx_remap = *mut VxRemap;","highlight_start":10,"highlight_end":18}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to upper camel case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":2668,"byte_end":2676,"line_start":99,"line_end":99,"column_start":10,"column_end":18,"is_primary":true,"text":[{"text":"pub type vx_remap = *mut VxRemap;","highlight_start":10,"highlight_end":18}],"label":null,"suggested_replacement":"VxRemap","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: type `vx_remap` should have an upper camel case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api.rs:99:10\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m99\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub type vx_remap = *mut VxRemap;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper camel case: `VxRemap`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"type `vx_tensor` should have an upper camel case name","code":{"code":"non_camel_case_types","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":2757,"byte_end":2766,"line_start":103,"line_end":103,"column_start":10,"column_end":19,"is_primary":true,"text":[{"text":"pub type vx_tensor = *mut VxTensor;","highlight_start":10,"highlight_end":19}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to upper camel case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":2757,"byte_end":2766,"line_start":103,"line_end":103,"column_start":10,"column_end":19,"is_primary":true,"text":[{"text":"pub type vx_tensor = *mut VxTensor;","highlight_start":10,"highlight_end":19}],"label":null,"suggested_replacement":"VxTensor","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: type `vx_tensor` should have an upper camel case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api.rs:103:10\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m103\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub type vx_tensor = *mut VxTensor;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper camel case: `VxTensor`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"type `vx_meta_format` should have an upper camel case name","code":{"code":"non_camel_case_types","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":2857,"byte_end":2871,"line_start":107,"line_end":107,"column_start":10,"column_end":24,"is_primary":true,"text":[{"text":"pub type vx_meta_format = *mut VxMetaFormat;","highlight_start":10,"highlight_end":24}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to upper camel case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":2857,"byte_end":2871,"line_start":107,"line_end":107,"column_start":10,"column_end":24,"is_primary":true,"text":[{"text":"pub type vx_meta_format = *mut VxMetaFormat;","highlight_start":10,"highlight_end":24}],"label":null,"suggested_replacement":"VxMetaFormat","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: type `vx_meta_format` should have an upper camel case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api.rs:107:10\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m107\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub type vx_meta_format = *mut VxMetaFormat;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper camel case: `VxMetaFormat`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"type `vx_graph_parameter` should have an upper camel case name","code":{"code":"non_camel_case_types","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":2974,"byte_end":2992,"line_start":111,"line_end":111,"column_start":10,"column_end":28,"is_primary":true,"text":[{"text":"pub type vx_graph_parameter = *mut VxGraphParameter;","highlight_start":10,"highlight_end":28}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to upper camel case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":2974,"byte_end":2992,"line_start":111,"line_end":111,"column_start":10,"column_end":28,"is_primary":true,"text":[{"text":"pub type vx_graph_parameter = *mut VxGraphParameter;","highlight_start":10,"highlight_end":28}],"label":null,"suggested_replacement":"VxGraphParameter","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: type `vx_graph_parameter` should have an upper camel case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api.rs:111:10\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m111\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub type vx_graph_parameter = *mut VxGraphParameter;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper camel case: `VxGraphParameter`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"type `vx_import` should have an upper camel case name","code":{"code":"non_camel_case_types","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":3083,"byte_end":3092,"line_start":115,"line_end":115,"column_start":10,"column_end":19,"is_primary":true,"text":[{"text":"pub type vx_import = *mut VxImport;","highlight_start":10,"highlight_end":19}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to upper camel case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":3083,"byte_end":3092,"line_start":115,"line_end":115,"column_start":10,"column_end":19,"is_primary":true,"text":[{"text":"pub type vx_import = *mut VxImport;","highlight_start":10,"highlight_end":19}],"label":null,"suggested_replacement":"VxImport","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: type `vx_import` should have an upper camel case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api.rs:115:10\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m115\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub type vx_import = *mut VxImport;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper camel case: `VxImport`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"type `vx_target` should have an upper camel case name","code":{"code":"non_camel_case_types","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":3174,"byte_end":3183,"line_start":119,"line_end":119,"column_start":10,"column_end":19,"is_primary":true,"text":[{"text":"pub type vx_target = *mut VxTarget;","highlight_start":10,"highlight_end":19}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to upper camel case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":3174,"byte_end":3183,"line_start":119,"line_end":119,"column_start":10,"column_end":19,"is_primary":true,"text":[{"text":"pub type vx_target = *mut VxTarget;","highlight_start":10,"highlight_end":19}],"label":null,"suggested_replacement":"VxTarget","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: type `vx_target` should have an upper camel case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api.rs:119:10\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m119\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub type vx_target = *mut VxTarget;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper camel case: `VxTarget`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"type `vx_nodecomplete_f` should have an upper camel case name","code":{"code":"non_camel_case_types","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":3245,"byte_end":3262,"line_start":122,"line_end":122,"column_start":10,"column_end":27,"is_primary":true,"text":[{"text":"pub type vx_nodecomplete_f = Option vx_action>;","highlight_start":10,"highlight_end":27}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to upper camel case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":3245,"byte_end":3262,"line_start":122,"line_end":122,"column_start":10,"column_end":27,"is_primary":true,"text":[{"text":"pub type vx_nodecomplete_f = Option vx_action>;","highlight_start":10,"highlight_end":27}],"label":null,"suggested_replacement":"VxNodecompleteF","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: type `vx_nodecomplete_f` should have an upper camel case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api.rs:122:10\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m122\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub type vx_nodecomplete_f = Option vx_action>;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper camel case: `VxNodecompleteF`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"variant `VX_ACTION_CONTINUE` should have an upper camel case name","code":{"code":"non_camel_case_types","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":3417,"byte_end":3435,"line_start":128,"line_end":128,"column_start":5,"column_end":23,"is_primary":true,"text":[{"text":" VX_ACTION_CONTINUE = 0,","highlight_start":5,"highlight_end":23}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to upper camel case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":3417,"byte_end":3435,"line_start":128,"line_end":128,"column_start":5,"column_end":23,"is_primary":true,"text":[{"text":" VX_ACTION_CONTINUE = 0,","highlight_start":5,"highlight_end":23}],"label":null,"suggested_replacement":"VxActionContinue","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: variant `VX_ACTION_CONTINUE` should have an upper camel case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api.rs:128:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m128\u001b[0m \u001b[1m\u001b[94m|\u001b[0m VX_ACTION_CONTINUE = 0,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper camel case: `VxActionContinue`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"variant `VX_ACTION_ABANDON` should have an upper camel case name","code":{"code":"non_camel_case_types","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":3445,"byte_end":3462,"line_start":129,"line_end":129,"column_start":5,"column_end":22,"is_primary":true,"text":[{"text":" VX_ACTION_ABANDON = 1,","highlight_start":5,"highlight_end":22}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to upper camel case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":3445,"byte_end":3462,"line_start":129,"line_end":129,"column_start":5,"column_end":22,"is_primary":true,"text":[{"text":" VX_ACTION_ABANDON = 1,","highlight_start":5,"highlight_end":22}],"label":null,"suggested_replacement":"VxActionAbandon","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: variant `VX_ACTION_ABANDON` should have an upper camel case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api.rs:129:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m129\u001b[0m \u001b[1m\u001b[94m|\u001b[0m VX_ACTION_ABANDON = 1,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper camel case: `VxActionAbandon`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused import: `std::sync::atomic::Ordering`","code":{"code":"unused_imports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":7573,"byte_end":7600,"line_start":252,"line_end":252,"column_start":9,"column_end":36,"is_primary":true,"text":[{"text":" use std::sync::atomic::Ordering;","highlight_start":9,"highlight_end":36}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"remove the whole `use` item","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":7569,"byte_end":7601,"line_start":252,"line_end":252,"column_start":5,"column_end":37,"is_primary":true,"text":[{"text":" use std::sync::atomic::Ordering;","highlight_start":5,"highlight_end":37}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused import: `std::sync::atomic::Ordering`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api.rs:252:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m252\u001b[0m \u001b[1m\u001b[94m|\u001b[0m use std::sync::atomic::Ordering;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"type `vx_array` should have an upper camel case name","code":{"code":"non_camel_case_types","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":64421,"byte_end":64429,"line_start":1770,"line_end":1770,"column_start":10,"column_end":18,"is_primary":true,"text":[{"text":"pub type vx_array = *mut VxArray;","highlight_start":10,"highlight_end":18}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to upper camel case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":64421,"byte_end":64429,"line_start":1770,"line_end":1770,"column_start":10,"column_end":18,"is_primary":true,"text":[{"text":"pub type vx_array = *mut VxArray;","highlight_start":10,"highlight_end":18}],"label":null,"suggested_replacement":"VxArray","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: type `vx_array` should have an upper camel case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api.rs:1770:10\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m1770\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub type vx_array = *mut VxArray;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper camel case: `VxArray`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused import: `VX_TYPE_DISTRIBUTION`","code":{"code":"unused_imports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api_data.rs","byte_start":346,"byte_end":366,"line_start":9,"line_end":9,"column_start":41,"column_end":61,"is_primary":true,"text":[{"text":" VX_TYPE_THRESHOLD, VX_TYPE_PYRAMID, VX_TYPE_DISTRIBUTION","highlight_start":41,"highlight_end":61}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"remove the unused import","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/c_api_data.rs","byte_start":344,"byte_end":366,"line_start":9,"line_end":9,"column_start":39,"column_end":61,"is_primary":true,"text":[{"text":" VX_TYPE_THRESHOLD, VX_TYPE_PYRAMID, VX_TYPE_DISTRIBUTION","highlight_start":39,"highlight_end":61}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused import: `VX_TYPE_DISTRIBUTION`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api_data.rs:9:41\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m9\u001b[0m \u001b[1m\u001b[94m|\u001b[0m VX_TYPE_THRESHOLD, VX_TYPE_PYRAMID, VX_TYPE_DISTRIBUTION\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"private item shadows public glob re-export","code":{"code":"hidden_glob_reexports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api_data.rs","byte_start":255,"byte_end":274,"line_start":8,"line_end":8,"column_start":5,"column_end":24,"is_primary":true,"text":[{"text":" VX_TYPE_CONVOLUTION, VX_TYPE_MATRIX, VX_TYPE_LUT, ","highlight_start":5,"highlight_end":24}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"the name `VX_TYPE_CONVOLUTION` in the value namespace is supposed to be publicly re-exported here","code":null,"level":"note","spans":[{"file_name":"openvx-core/src/c_api_data.rs","byte_start":143,"byte_end":158,"line_start":5,"line_end":5,"column_start":9,"column_end":24,"is_primary":true,"text":[{"text":"pub use crate::c_api::*;","highlight_start":9,"highlight_end":24}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":null},{"message":"but the private item here shadows it","code":null,"level":"note","spans":[{"file_name":"openvx-core/src/c_api_data.rs","byte_start":255,"byte_end":274,"line_start":8,"line_end":8,"column_start":5,"column_end":24,"is_primary":true,"text":[{"text":" VX_TYPE_CONVOLUTION, VX_TYPE_MATRIX, VX_TYPE_LUT, ","highlight_start":5,"highlight_end":24}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":null},{"message":"`#[warn(hidden_glob_reexports)]` on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: private item shadows public glob re-export\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api_data.rs:8:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m8\u001b[0m \u001b[1m\u001b[94m|\u001b[0m VX_TYPE_CONVOLUTION, VX_TYPE_MATRIX, VX_TYPE_LUT, \n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[92mnote\u001b[0m: the name `VX_TYPE_CONVOLUTION` in the value namespace is supposed to be publicly re-exported here\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api_data.rs:5:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m5\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use crate::c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[92m^^^^^^^^^^^^^^^\u001b[0m\n\u001b[1m\u001b[92mnote\u001b[0m: but the private item here shadows it\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api_data.rs:8:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m8\u001b[0m \u001b[1m\u001b[94m|\u001b[0m VX_TYPE_CONVOLUTION, VX_TYPE_MATRIX, VX_TYPE_LUT, \n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[92m^^^^^^^^^^^^^^^^^^^\u001b[0m\n \u001b[1m\u001b[94m= \u001b[0m\u001b[1mnote\u001b[0m: `#[warn(hidden_glob_reexports)]` on by default\n\n"} +{"$message_type":"diagnostic","message":"private item shadows public glob re-export","code":{"code":"hidden_glob_reexports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api_data.rs","byte_start":276,"byte_end":290,"line_start":8,"line_end":8,"column_start":26,"column_end":40,"is_primary":true,"text":[{"text":" VX_TYPE_CONVOLUTION, VX_TYPE_MATRIX, VX_TYPE_LUT, ","highlight_start":26,"highlight_end":40}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"the name `VX_TYPE_MATRIX` in the value namespace is supposed to be publicly re-exported here","code":null,"level":"note","spans":[{"file_name":"openvx-core/src/c_api_data.rs","byte_start":143,"byte_end":158,"line_start":5,"line_end":5,"column_start":9,"column_end":24,"is_primary":true,"text":[{"text":"pub use crate::c_api::*;","highlight_start":9,"highlight_end":24}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":null},{"message":"but the private item here shadows it","code":null,"level":"note","spans":[{"file_name":"openvx-core/src/c_api_data.rs","byte_start":276,"byte_end":290,"line_start":8,"line_end":8,"column_start":26,"column_end":40,"is_primary":true,"text":[{"text":" VX_TYPE_CONVOLUTION, VX_TYPE_MATRIX, VX_TYPE_LUT, ","highlight_start":26,"highlight_end":40}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: private item shadows public glob re-export\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api_data.rs:8:26\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m8\u001b[0m \u001b[1m\u001b[94m|\u001b[0m VX_TYPE_CONVOLUTION, VX_TYPE_MATRIX, VX_TYPE_LUT, \n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[92mnote\u001b[0m: the name `VX_TYPE_MATRIX` in the value namespace is supposed to be publicly re-exported here\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api_data.rs:5:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m5\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use crate::c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[92m^^^^^^^^^^^^^^^\u001b[0m\n\u001b[1m\u001b[92mnote\u001b[0m: but the private item here shadows it\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api_data.rs:8:26\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m8\u001b[0m \u001b[1m\u001b[94m|\u001b[0m VX_TYPE_CONVOLUTION, VX_TYPE_MATRIX, VX_TYPE_LUT, \n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[92m^^^^^^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"private item shadows public glob re-export","code":{"code":"hidden_glob_reexports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api_data.rs","byte_start":292,"byte_end":303,"line_start":8,"line_end":8,"column_start":42,"column_end":53,"is_primary":true,"text":[{"text":" VX_TYPE_CONVOLUTION, VX_TYPE_MATRIX, VX_TYPE_LUT, ","highlight_start":42,"highlight_end":53}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"the name `VX_TYPE_LUT` in the value namespace is supposed to be publicly re-exported here","code":null,"level":"note","spans":[{"file_name":"openvx-core/src/c_api_data.rs","byte_start":143,"byte_end":158,"line_start":5,"line_end":5,"column_start":9,"column_end":24,"is_primary":true,"text":[{"text":"pub use crate::c_api::*;","highlight_start":9,"highlight_end":24}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":null},{"message":"but the private item here shadows it","code":null,"level":"note","spans":[{"file_name":"openvx-core/src/c_api_data.rs","byte_start":292,"byte_end":303,"line_start":8,"line_end":8,"column_start":42,"column_end":53,"is_primary":true,"text":[{"text":" VX_TYPE_CONVOLUTION, VX_TYPE_MATRIX, VX_TYPE_LUT, ","highlight_start":42,"highlight_end":53}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: private item shadows public glob re-export\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api_data.rs:8:42\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m8\u001b[0m \u001b[1m\u001b[94m|\u001b[0m VX_TYPE_CONVOLUTION, VX_TYPE_MATRIX, VX_TYPE_LUT, \n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[92mnote\u001b[0m: the name `VX_TYPE_LUT` in the value namespace is supposed to be publicly re-exported here\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api_data.rs:5:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m5\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use crate::c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[92m^^^^^^^^^^^^^^^\u001b[0m\n\u001b[1m\u001b[92mnote\u001b[0m: but the private item here shadows it\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api_data.rs:8:42\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m8\u001b[0m \u001b[1m\u001b[94m|\u001b[0m VX_TYPE_CONVOLUTION, VX_TYPE_MATRIX, VX_TYPE_LUT, \n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[92m^^^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"private item shadows public glob re-export","code":{"code":"hidden_glob_reexports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api_data.rs","byte_start":310,"byte_end":327,"line_start":9,"line_end":9,"column_start":5,"column_end":22,"is_primary":true,"text":[{"text":" VX_TYPE_THRESHOLD, VX_TYPE_PYRAMID, VX_TYPE_DISTRIBUTION","highlight_start":5,"highlight_end":22}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"the name `VX_TYPE_THRESHOLD` in the value namespace is supposed to be publicly re-exported here","code":null,"level":"note","spans":[{"file_name":"openvx-core/src/c_api_data.rs","byte_start":143,"byte_end":158,"line_start":5,"line_end":5,"column_start":9,"column_end":24,"is_primary":true,"text":[{"text":"pub use crate::c_api::*;","highlight_start":9,"highlight_end":24}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":null},{"message":"but the private item here shadows it","code":null,"level":"note","spans":[{"file_name":"openvx-core/src/c_api_data.rs","byte_start":310,"byte_end":327,"line_start":9,"line_end":9,"column_start":5,"column_end":22,"is_primary":true,"text":[{"text":" VX_TYPE_THRESHOLD, VX_TYPE_PYRAMID, VX_TYPE_DISTRIBUTION","highlight_start":5,"highlight_end":22}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: private item shadows public glob re-export\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api_data.rs:9:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m9\u001b[0m \u001b[1m\u001b[94m|\u001b[0m VX_TYPE_THRESHOLD, VX_TYPE_PYRAMID, VX_TYPE_DISTRIBUTION\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[92mnote\u001b[0m: the name `VX_TYPE_THRESHOLD` in the value namespace is supposed to be publicly re-exported here\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api_data.rs:5:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m5\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use crate::c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[92m^^^^^^^^^^^^^^^\u001b[0m\n\u001b[1m\u001b[92mnote\u001b[0m: but the private item here shadows it\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api_data.rs:9:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m9\u001b[0m \u001b[1m\u001b[94m|\u001b[0m VX_TYPE_THRESHOLD, VX_TYPE_PYRAMID, VX_TYPE_DISTRIBUTION\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[92m^^^^^^^^^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"private item shadows public glob re-export","code":{"code":"hidden_glob_reexports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api_data.rs","byte_start":329,"byte_end":344,"line_start":9,"line_end":9,"column_start":24,"column_end":39,"is_primary":true,"text":[{"text":" VX_TYPE_THRESHOLD, VX_TYPE_PYRAMID, VX_TYPE_DISTRIBUTION","highlight_start":24,"highlight_end":39}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"the name `VX_TYPE_PYRAMID` in the value namespace is supposed to be publicly re-exported here","code":null,"level":"note","spans":[{"file_name":"openvx-core/src/c_api_data.rs","byte_start":143,"byte_end":158,"line_start":5,"line_end":5,"column_start":9,"column_end":24,"is_primary":true,"text":[{"text":"pub use crate::c_api::*;","highlight_start":9,"highlight_end":24}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":null},{"message":"but the private item here shadows it","code":null,"level":"note","spans":[{"file_name":"openvx-core/src/c_api_data.rs","byte_start":329,"byte_end":344,"line_start":9,"line_end":9,"column_start":24,"column_end":39,"is_primary":true,"text":[{"text":" VX_TYPE_THRESHOLD, VX_TYPE_PYRAMID, VX_TYPE_DISTRIBUTION","highlight_start":24,"highlight_end":39}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: private item shadows public glob re-export\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api_data.rs:9:24\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m9\u001b[0m \u001b[1m\u001b[94m|\u001b[0m VX_TYPE_THRESHOLD, VX_TYPE_PYRAMID, VX_TYPE_DISTRIBUTION\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[92mnote\u001b[0m: the name `VX_TYPE_PYRAMID` in the value namespace is supposed to be publicly re-exported here\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api_data.rs:5:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m5\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use crate::c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[92m^^^^^^^^^^^^^^^\u001b[0m\n\u001b[1m\u001b[92mnote\u001b[0m: but the private item here shadows it\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api_data.rs:9:24\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m9\u001b[0m \u001b[1m\u001b[94m|\u001b[0m VX_TYPE_THRESHOLD, VX_TYPE_PYRAMID, VX_TYPE_DISTRIBUTION\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[92m^^^^^^^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"private item shadows public glob re-export","code":{"code":"hidden_glob_reexports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":314,"byte_end":349,"line_start":11,"line_end":11,"column_start":5,"column_end":40,"is_primary":true,"text":[{"text":"use crate::c_api_data::vx_pixel_value_t;","highlight_start":5,"highlight_end":40}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"the name `vx_pixel_value_t` in the type namespace is supposed to be publicly re-exported here","code":null,"level":"note","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":236,"byte_end":256,"line_start":8,"line_end":8,"column_start":9,"column_end":29,"is_primary":true,"text":[{"text":"pub use crate::c_api_data::*;","highlight_start":9,"highlight_end":29}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":null},{"message":"but the private item here shadows it","code":null,"level":"note","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":314,"byte_end":349,"line_start":11,"line_end":11,"column_start":5,"column_end":40,"is_primary":true,"text":[{"text":"use crate::c_api_data::vx_pixel_value_t;","highlight_start":5,"highlight_end":40}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: private item shadows public glob re-export\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:11:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m11\u001b[0m \u001b[1m\u001b[94m|\u001b[0m use crate::c_api_data::vx_pixel_value_t;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[92mnote\u001b[0m: the name `vx_pixel_value_t` in the type namespace is supposed to be publicly re-exported here\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:8:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m 8\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use crate::c_api_data::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[92m^^^^^^^^^^^^^^^^^^^^\u001b[0m\n\u001b[1m\u001b[92mnote\u001b[0m: but the private item here shadows it\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:11:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m11\u001b[0m \u001b[1m\u001b[94m|\u001b[0m use crate::c_api_data::vx_pixel_value_t;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[92m^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"private item shadows public glob re-export","code":{"code":"hidden_glob_reexports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":12312,"byte_end":12417,"line_start":411,"line_end":413,"column_start":1,"column_end":4,"is_primary":true,"text":[{"text":"static NODES: Lazy>>> = Lazy::new(|| {","highlight_start":1,"highlight_end":71},{"text":" Mutex::new(HashMap::new())","highlight_start":1,"highlight_end":31},{"text":"});","highlight_start":1,"highlight_end":4}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"the name `NODES` in the value namespace is supposed to be publicly re-exported here","code":null,"level":"note","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":211,"byte_end":226,"line_start":7,"line_end":7,"column_start":9,"column_end":24,"is_primary":true,"text":[{"text":"pub use crate::c_api::*;","highlight_start":9,"highlight_end":24}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":null},{"message":"but the private item here shadows it","code":null,"level":"note","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":12312,"byte_end":12417,"line_start":411,"line_end":413,"column_start":1,"column_end":4,"is_primary":true,"text":[{"text":"static NODES: Lazy>>> = Lazy::new(|| {","highlight_start":1,"highlight_end":71},{"text":" Mutex::new(HashMap::new())","highlight_start":1,"highlight_end":31},{"text":"});","highlight_start":1,"highlight_end":4}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: private item shadows public glob re-export\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:411:1\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m411\u001b[0m \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m/\u001b[0m static NODES: Lazy>>> = Lazy::new(|| {\n\u001b[1m\u001b[94m412\u001b[0m \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m|\u001b[0m Mutex::new(HashMap::new())\n\u001b[1m\u001b[94m413\u001b[0m \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m|\u001b[0m });\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m|___^\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[92mnote\u001b[0m: the name `NODES` in the value namespace is supposed to be publicly re-exported here\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:7:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m 7\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use crate::c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[92m^^^^^^^^^^^^^^^\u001b[0m\n\u001b[1m\u001b[92mnote\u001b[0m: but the private item here shadows it\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:411:1\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m411\u001b[0m \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[92m/\u001b[0m static NODES: Lazy>>> = Lazy::new(|| {\n\u001b[1m\u001b[94m412\u001b[0m \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[92m|\u001b[0m Mutex::new(HashMap::new())\n\u001b[1m\u001b[94m413\u001b[0m \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[92m|\u001b[0m });\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[92m|___^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"type `vx_distribution` should have an upper camel case name","code":{"code":"non_camel_case_types","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":81395,"byte_end":81410,"line_start":2410,"line_end":2410,"column_start":10,"column_end":25,"is_primary":true,"text":[{"text":"pub type vx_distribution = *mut VxDistribution;","highlight_start":10,"highlight_end":25}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to upper camel case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":81395,"byte_end":81410,"line_start":2410,"line_end":2410,"column_start":10,"column_end":25,"is_primary":true,"text":[{"text":"pub type vx_distribution = *mut VxDistribution;","highlight_start":10,"highlight_end":25}],"label":null,"suggested_replacement":"VxDistribution","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: type `vx_distribution` should have an upper camel case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:2410:10\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m2410\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub type vx_distribution = *mut VxDistribution;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper camel case: `VxDistribution`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"type `vx_remap` should have an upper camel case name","code":{"code":"non_camel_case_types","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":81486,"byte_end":81494,"line_start":2414,"line_end":2414,"column_start":10,"column_end":18,"is_primary":true,"text":[{"text":"pub type vx_remap = *mut VxRemap;","highlight_start":10,"highlight_end":18}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to upper camel case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":81486,"byte_end":81494,"line_start":2414,"line_end":2414,"column_start":10,"column_end":18,"is_primary":true,"text":[{"text":"pub type vx_remap = *mut VxRemap;","highlight_start":10,"highlight_end":18}],"label":null,"suggested_replacement":"VxRemap","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: type `vx_remap` should have an upper camel case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:2414:10\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m2414\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub type vx_remap = *mut VxRemap;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper camel case: `VxRemap`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"type `vx_delay` should have an upper camel case name","code":{"code":"non_camel_case_types","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":81563,"byte_end":81571,"line_start":2418,"line_end":2418,"column_start":10,"column_end":18,"is_primary":true,"text":[{"text":"pub type vx_delay = *mut VxDelay;","highlight_start":10,"highlight_end":18}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to upper camel case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":81563,"byte_end":81571,"line_start":2418,"line_end":2418,"column_start":10,"column_end":18,"is_primary":true,"text":[{"text":"pub type vx_delay = *mut VxDelay;","highlight_start":10,"highlight_end":18}],"label":null,"suggested_replacement":"VxDelay","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: type `vx_delay` should have an upper camel case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:2418:10\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m2418\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub type vx_delay = *mut VxDelay;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper camel case: `VxDelay`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"type `vx_object_array` should have an upper camel case name","code":{"code":"non_camel_case_types","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":81653,"byte_end":81668,"line_start":2422,"line_end":2422,"column_start":10,"column_end":25,"is_primary":true,"text":[{"text":"pub type vx_object_array = *mut VxObjectArray;","highlight_start":10,"highlight_end":25}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to upper camel case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":81653,"byte_end":81668,"line_start":2422,"line_end":2422,"column_start":10,"column_end":25,"is_primary":true,"text":[{"text":"pub type vx_object_array = *mut VxObjectArray;","highlight_start":10,"highlight_end":25}],"label":null,"suggested_replacement":"VxObjectArray","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: type `vx_object_array` should have an upper camel case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:2422:10\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m2422\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub type vx_object_array = *mut VxObjectArray;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper camel case: `VxObjectArray`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"type `vx_tensor` should have an upper camel case name","code":{"code":"non_camel_case_types","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":81760,"byte_end":81769,"line_start":2426,"line_end":2426,"column_start":10,"column_end":19,"is_primary":true,"text":[{"text":"pub type vx_tensor = *mut VxTensor;","highlight_start":10,"highlight_end":19}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to upper camel case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":81760,"byte_end":81769,"line_start":2426,"line_end":2426,"column_start":10,"column_end":19,"is_primary":true,"text":[{"text":"pub type vx_tensor = *mut VxTensor;","highlight_start":10,"highlight_end":19}],"label":null,"suggested_replacement":"VxTensor","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: type `vx_tensor` should have an upper camel case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:2426:10\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m2426\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub type vx_tensor = *mut VxTensor;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper camel case: `VxTensor`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"type `vx_import` should have an upper camel case name","code":{"code":"non_camel_case_types","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":81841,"byte_end":81850,"line_start":2430,"line_end":2430,"column_start":10,"column_end":19,"is_primary":true,"text":[{"text":"pub type vx_import = *mut VxImport;","highlight_start":10,"highlight_end":19}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to upper camel case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":81841,"byte_end":81850,"line_start":2430,"line_end":2430,"column_start":10,"column_end":19,"is_primary":true,"text":[{"text":"pub type vx_import = *mut VxImport;","highlight_start":10,"highlight_end":19}],"label":null,"suggested_replacement":"VxImport","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: type `vx_import` should have an upper camel case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:2430:10\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m2430\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub type vx_import = *mut VxImport;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper camel case: `VxImport`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"type `vx_meta_format` should have an upper camel case name","code":{"code":"non_camel_case_types","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":81931,"byte_end":81945,"line_start":2434,"line_end":2434,"column_start":10,"column_end":24,"is_primary":true,"text":[{"text":"pub type vx_meta_format = *mut VxMetaFormat;","highlight_start":10,"highlight_end":24}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to upper camel case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":81931,"byte_end":81945,"line_start":2434,"line_end":2434,"column_start":10,"column_end":24,"is_primary":true,"text":[{"text":"pub type vx_meta_format = *mut VxMetaFormat;","highlight_start":10,"highlight_end":24}],"label":null,"suggested_replacement":"VxMetaFormat","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: type `vx_meta_format` should have an upper camel case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:2434:10\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m2434\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub type vx_meta_format = *mut VxMetaFormat;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper camel case: `VxMetaFormat`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"type `vx_target` should have an upper camel case name","code":{"code":"non_camel_case_types","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":82021,"byte_end":82030,"line_start":2438,"line_end":2438,"column_start":10,"column_end":19,"is_primary":true,"text":[{"text":"pub type vx_target = *mut VxTarget;","highlight_start":10,"highlight_end":19}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to upper camel case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":82021,"byte_end":82030,"line_start":2438,"line_end":2438,"column_start":10,"column_end":19,"is_primary":true,"text":[{"text":"pub type vx_target = *mut VxTarget;","highlight_start":10,"highlight_end":19}],"label":null,"suggested_replacement":"VxTarget","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: type `vx_target` should have an upper camel case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:2438:10\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m2438\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub type vx_target = *mut VxTarget;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper camel case: `VxTarget`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"type `vx_graph_parameter` should have an upper camel case name","code":{"code":"non_camel_case_types","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":82119,"byte_end":82137,"line_start":2442,"line_end":2442,"column_start":10,"column_end":28,"is_primary":true,"text":[{"text":"pub type vx_graph_parameter = *mut VxGraphParameter;","highlight_start":10,"highlight_end":28}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to upper camel case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":82119,"byte_end":82137,"line_start":2442,"line_end":2442,"column_start":10,"column_end":28,"is_primary":true,"text":[{"text":"pub type vx_graph_parameter = *mut VxGraphParameter;","highlight_start":10,"highlight_end":28}],"label":null,"suggested_replacement":"VxGraphParameter","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: type `vx_graph_parameter` should have an upper camel case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:2442:10\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m2442\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub type vx_graph_parameter = *mut VxGraphParameter;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper camel case: `VxGraphParameter`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused import: `std::ffi::c_void`","code":{"code":"unused_imports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/vxu_impl.rs","byte_start":200,"byte_end":216,"line_start":6,"line_end":6,"column_start":5,"column_end":21,"is_primary":true,"text":[{"text":"use std::ffi::c_void;","highlight_start":5,"highlight_end":21}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"remove the whole `use` item","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/vxu_impl.rs","byte_start":196,"byte_end":218,"line_start":6,"line_end":7,"column_start":1,"column_end":1,"is_primary":true,"text":[{"text":"use std::ffi::c_void;","highlight_start":1,"highlight_end":22},{"text":"use crate::c_api::{","highlight_start":1,"highlight_end":1}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused import: `std::ffi::c_void`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/vxu_impl.rs:6:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m6\u001b[0m \u001b[1m\u001b[94m|\u001b[0m use std::ffi::c_void;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused imports: `vx_char` and `vx_uint32`","code":{"code":"unused_imports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/vxu_impl.rs","byte_start":388,"byte_end":397,"line_start":10,"line_end":10,"column_start":27,"column_end":36,"is_primary":true,"text":[{"text":" vx_enum, vx_df_image, vx_uint32, vx_size, vx_char,","highlight_start":27,"highlight_end":36}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/vxu_impl.rs","byte_start":408,"byte_end":415,"line_start":10,"line_end":10,"column_start":47,"column_end":54,"is_primary":true,"text":[{"text":" vx_enum, vx_df_image, vx_uint32, vx_size, vx_char,","highlight_start":47,"highlight_end":54}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"remove the unused imports","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/vxu_impl.rs","byte_start":386,"byte_end":397,"line_start":10,"line_end":10,"column_start":25,"column_end":36,"is_primary":true,"text":[{"text":" vx_enum, vx_df_image, vx_uint32, vx_size, vx_char,","highlight_start":25,"highlight_end":36}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null},{"file_name":"openvx-core/src/vxu_impl.rs","byte_start":406,"byte_end":415,"line_start":10,"line_end":10,"column_start":45,"column_end":54,"is_primary":true,"text":[{"text":" vx_enum, vx_df_image, vx_uint32, vx_size, vx_char,","highlight_start":45,"highlight_end":54}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused imports: `vx_char` and `vx_uint32`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/vxu_impl.rs:10:27\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m10\u001b[0m \u001b[1m\u001b[94m|\u001b[0m vx_enum, vx_df_image, vx_uint32, vx_size, vx_char,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m \u001b[1m\u001b[33m^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused import: `crate::c_api_data::vx_pixel_value_t`","code":{"code":"unused_imports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/vxu_impl.rs","byte_start":89187,"byte_end":89222,"line_start":2416,"line_end":2416,"column_start":5,"column_end":40,"is_primary":true,"text":[{"text":"use crate::c_api_data::vx_pixel_value_t;","highlight_start":5,"highlight_end":40}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"remove the whole `use` item","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/vxu_impl.rs","byte_start":89183,"byte_end":89224,"line_start":2416,"line_end":2417,"column_start":1,"column_end":1,"is_primary":true,"text":[{"text":"use crate::c_api_data::vx_pixel_value_t;","highlight_start":1,"highlight_end":41},{"text":"","highlight_start":1,"highlight_end":1}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused import: `crate::c_api_data::vx_pixel_value_t`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/vxu_impl.rs:2416:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m2416\u001b[0m \u001b[1m\u001b[94m|\u001b[0m use crate::c_api_data::vx_pixel_value_t;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused attribute","code":{"code":"unused_attributes","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":174637,"byte_end":174649,"line_start":5826,"line_end":5826,"column_start":1,"column_end":13,"is_primary":true,"text":[{"text":"#[no_mangle]","highlight_start":1,"highlight_end":13}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"attribute also specified here","code":null,"level":"note","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":174585,"byte_end":174597,"line_start":5824,"line_end":5824,"column_start":1,"column_end":13,"is_primary":true,"text":[{"text":"#[no_mangle]","highlight_start":1,"highlight_end":13}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":null},{"message":"`#[warn(unused_attributes)]` (part of `#[warn(unused)]`) on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"remove this attribute","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":174637,"byte_end":174650,"line_start":5826,"line_end":5827,"column_start":1,"column_end":1,"is_primary":true,"text":[{"text":"#[no_mangle]","highlight_start":1,"highlight_end":13},{"text":"pub extern \"C\" fn vxGetParameterByIndex(node: vx_node, index: vx_uint32) -> vx_parameter {","highlight_start":1,"highlight_end":1}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused attribute\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:5826:1\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m5826\u001b[0m \u001b[1m\u001b[94m|\u001b[0m #[no_mangle]\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: remove this attribute\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[92mnote\u001b[0m: attribute also specified here\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:5824:1\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m5824\u001b[0m \u001b[1m\u001b[94m|\u001b[0m #[no_mangle]\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[92m^^^^^^^^^^^^\u001b[0m\n \u001b[1m\u001b[94m= \u001b[0m\u001b[1mnote\u001b[0m: `#[warn(unused_attributes)]` (part of `#[warn(unused)]`) on by default\n\n"} +{"$message_type":"diagnostic","message":"unnecessary `unsafe` block","code":{"code":"unused_unsafe","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":30335,"byte_end":30341,"line_start":916,"line_end":916,"column_start":5,"column_end":11,"is_primary":true,"text":[{"text":" unsafe {","highlight_start":5,"highlight_end":11}],"label":"unnecessary `unsafe` block","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(unused_unsafe)]` (part of `#[warn(unused)]`) on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unnecessary `unsafe` block\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api.rs:916:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m916\u001b[0m \u001b[1m\u001b[94m|\u001b[0m unsafe {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m \u001b[1m\u001b[33munnecessary `unsafe` block\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m= \u001b[0m\u001b[1mnote\u001b[0m: `#[warn(unused_unsafe)]` (part of `#[warn(unused)]`) on by default\n\n"} +{"$message_type":"diagnostic","message":"unnecessary `unsafe` block","code":{"code":"unused_unsafe","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":38806,"byte_end":38812,"line_start":1136,"line_end":1136,"column_start":5,"column_end":11,"is_primary":true,"text":[{"text":" unsafe {","highlight_start":5,"highlight_end":11}],"label":"unnecessary `unsafe` block","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unnecessary `unsafe` block\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api.rs:1136:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m1136\u001b[0m \u001b[1m\u001b[94m|\u001b[0m unsafe {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m \u001b[1m\u001b[33munnecessary `unsafe` block\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unnecessary `unsafe` block","code":{"code":"unused_unsafe","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":42744,"byte_end":42750,"line_start":1242,"line_end":1242,"column_start":5,"column_end":11,"is_primary":true,"text":[{"text":" unsafe {","highlight_start":5,"highlight_end":11}],"label":"unnecessary `unsafe` block","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unnecessary `unsafe` block\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api.rs:1242:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m1242\u001b[0m \u001b[1m\u001b[94m|\u001b[0m unsafe {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m \u001b[1m\u001b[33munnecessary `unsafe` block\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `kernel_data`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":49818,"byte_end":49829,"line_start":1427,"line_end":1427,"column_start":29,"column_end":40,"is_primary":true,"text":[{"text":" if let Some(kernel_data) = kernels.get(&kid) {","highlight_start":29,"highlight_end":40}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(unused_variables)]` (part of `#[warn(unused)]`) on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/c_api.rs","byte_start":49818,"byte_end":49829,"line_start":1427,"line_end":1427,"column_start":29,"column_end":40,"is_primary":true,"text":[{"text":" if let Some(kernel_data) = kernels.get(&kid) {","highlight_start":29,"highlight_end":40}],"label":null,"suggested_replacement":"_kernel_data","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `kernel_data`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api.rs:1427:29\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m1427\u001b[0m \u001b[1m\u001b[94m|\u001b[0m if let Some(kernel_data) = kernels.get(&kid) {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_kernel_data`\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m= \u001b[0m\u001b[1mnote\u001b[0m: `#[warn(unused_variables)]` (part of `#[warn(unused)]`) on by default\n\n"} +{"$message_type":"diagnostic","message":"unnecessary `unsafe` block","code":{"code":"unused_unsafe","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api_data.rs","byte_start":3471,"byte_end":3477,"line_start":110,"line_end":110,"column_start":5,"column_end":11,"is_primary":true,"text":[{"text":" unsafe {","highlight_start":5,"highlight_end":11}],"label":"unnecessary `unsafe` block","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unnecessary `unsafe` block\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api_data.rs:110:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m110\u001b[0m \u001b[1m\u001b[94m|\u001b[0m unsafe {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m \u001b[1m\u001b[33munnecessary `unsafe` block\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unnecessary `unsafe` block","code":{"code":"unused_unsafe","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api_data.rs","byte_start":6879,"byte_end":6885,"line_start":236,"line_end":236,"column_start":5,"column_end":11,"is_primary":true,"text":[{"text":" unsafe {","highlight_start":5,"highlight_end":11}],"label":"unnecessary `unsafe` block","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unnecessary `unsafe` block\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api_data.rs:236:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m236\u001b[0m \u001b[1m\u001b[94m|\u001b[0m unsafe {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m \u001b[1m\u001b[33munnecessary `unsafe` block\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unnecessary `unsafe` block","code":{"code":"unused_unsafe","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api_data.rs","byte_start":12266,"byte_end":12272,"line_start":424,"line_end":424,"column_start":5,"column_end":11,"is_primary":true,"text":[{"text":" unsafe {","highlight_start":5,"highlight_end":11}],"label":"unnecessary `unsafe` block","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unnecessary `unsafe` block\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api_data.rs:424:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m424\u001b[0m \u001b[1m\u001b[94m|\u001b[0m unsafe {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m \u001b[1m\u001b[33munnecessary `unsafe` block\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unnecessary `unsafe` block","code":{"code":"unused_unsafe","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api_data.rs","byte_start":16514,"byte_end":16520,"line_start":582,"line_end":582,"column_start":5,"column_end":11,"is_primary":true,"text":[{"text":" unsafe {","highlight_start":5,"highlight_end":11}],"label":"unnecessary `unsafe` block","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unnecessary `unsafe` block\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api_data.rs:582:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m582\u001b[0m \u001b[1m\u001b[94m|\u001b[0m unsafe {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m \u001b[1m\u001b[33munnecessary `unsafe` block\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unnecessary `unsafe` block","code":{"code":"unused_unsafe","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api_data.rs","byte_start":20478,"byte_end":20484,"line_start":727,"line_end":727,"column_start":5,"column_end":11,"is_primary":true,"text":[{"text":" unsafe {","highlight_start":5,"highlight_end":11}],"label":"unnecessary `unsafe` block","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unnecessary `unsafe` block\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api_data.rs:727:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m727\u001b[0m \u001b[1m\u001b[94m|\u001b[0m unsafe {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m \u001b[1m\u001b[33munnecessary `unsafe` block\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `input_format`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api_data.rs","byte_start":22732,"byte_end":22744,"line_start":800,"line_end":800,"column_start":5,"column_end":17,"is_primary":true,"text":[{"text":" input_format: vx_df_image,","highlight_start":5,"highlight_end":17}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/c_api_data.rs","byte_start":22732,"byte_end":22744,"line_start":800,"line_end":800,"column_start":5,"column_end":17,"is_primary":true,"text":[{"text":" input_format: vx_df_image,","highlight_start":5,"highlight_end":17}],"label":null,"suggested_replacement":"_input_format","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `input_format`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api_data.rs:800:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m800\u001b[0m \u001b[1m\u001b[94m|\u001b[0m input_format: vx_df_image,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_input_format`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unnecessary `unsafe` block","code":{"code":"unused_unsafe","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api_data.rs","byte_start":31319,"byte_end":31325,"line_start":1090,"line_end":1090,"column_start":25,"column_end":31,"is_primary":true,"text":[{"text":" let t = unsafe { &mut *(thresh as *mut VxCThresholdData) };","highlight_start":25,"highlight_end":31}],"label":"unnecessary `unsafe` block","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/c_api_data.rs","byte_start":30986,"byte_end":30992,"line_start":1081,"line_end":1081,"column_start":5,"column_end":11,"is_primary":false,"text":[{"text":" unsafe {","highlight_start":5,"highlight_end":11}],"label":"because it's nested under this `unsafe` block","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unnecessary `unsafe` block\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api_data.rs:1090:25\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m1081\u001b[0m \u001b[1m\u001b[94m|\u001b[0m unsafe {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m------\u001b[0m \u001b[1m\u001b[94mbecause it's nested under this `unsafe` block\u001b[0m\n\u001b[1m\u001b[94m...\u001b[0m\n\u001b[1m\u001b[94m1090\u001b[0m \u001b[1m\u001b[94m|\u001b[0m let t = unsafe { &mut *(thresh as *mut VxCThresholdData) };\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m \u001b[1m\u001b[33munnecessary `unsafe` block\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unreachable pattern","code":{"code":"unreachable_patterns","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api_data.rs","byte_start":32738,"byte_end":32754,"line_start":1146,"line_end":1146,"column_start":28,"column_end":44,"is_primary":true,"text":[{"text":" VX_DF_IMAGE_RGBA | VX_DF_IMAGE_RGBX => 4,","highlight_start":28,"highlight_end":44}],"label":"no value can reach this","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/c_api_data.rs","byte_start":32719,"byte_end":32735,"line_start":1146,"line_end":1146,"column_start":9,"column_end":25,"is_primary":false,"text":[{"text":" VX_DF_IMAGE_RGBA | VX_DF_IMAGE_RGBX => 4,","highlight_start":9,"highlight_end":25}],"label":"matches all the relevant values","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(unreachable_patterns)]` (part of `#[warn(unused)]`) on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unreachable pattern\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api_data.rs:1146:28\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m1146\u001b[0m \u001b[1m\u001b[94m|\u001b[0m VX_DF_IMAGE_RGBA | VX_DF_IMAGE_RGBX => 4,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m----------------\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mno value can reach this\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94mmatches all the relevant values\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m= \u001b[0m\u001b[1mnote\u001b[0m: `#[warn(unreachable_patterns)]` (part of `#[warn(unused)]`) on by default\n\n"} +{"$message_type":"diagnostic","message":"unnecessary `unsafe` block","code":{"code":"unused_unsafe","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api_data.rs","byte_start":33781,"byte_end":33787,"line_start":1185,"line_end":1185,"column_start":5,"column_end":11,"is_primary":true,"text":[{"text":" unsafe {","highlight_start":5,"highlight_end":11}],"label":"unnecessary `unsafe` block","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unnecessary `unsafe` block\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api_data.rs:1185:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m1185\u001b[0m \u001b[1m\u001b[94m|\u001b[0m unsafe {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m \u001b[1m\u001b[33munnecessary `unsafe` block\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unnecessary `unsafe` block","code":{"code":"unused_unsafe","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":21028,"byte_end":21034,"line_start":644,"line_end":644,"column_start":25,"column_end":31,"is_primary":true,"text":[{"text":" unsafe { crate::c_api::vxGetContext(input as vx_reference) },","highlight_start":25,"highlight_end":31}],"label":"unnecessary `unsafe` block","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unnecessary `unsafe` block\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:644:25\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m644\u001b[0m \u001b[1m\u001b[94m|\u001b[0m unsafe { crate::c_api::vxGetContext(input as vx_reference) },\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m \u001b[1m\u001b[33munnecessary `unsafe` block\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unnecessary `unsafe` block","code":{"code":"unused_unsafe","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":21746,"byte_end":21752,"line_start":663,"line_end":663,"column_start":25,"column_end":31,"is_primary":true,"text":[{"text":" unsafe { crate::c_api::vxGetContext(input as vx_reference) },","highlight_start":25,"highlight_end":31}],"label":"unnecessary `unsafe` block","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unnecessary `unsafe` block\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:663:25\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m663\u001b[0m \u001b[1m\u001b[94m|\u001b[0m unsafe { crate::c_api::vxGetContext(input as vx_reference) },\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m \u001b[1m\u001b[33munnecessary `unsafe` block\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unnecessary `unsafe` block","code":{"code":"unused_unsafe","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":22474,"byte_end":22480,"line_start":682,"line_end":682,"column_start":25,"column_end":31,"is_primary":true,"text":[{"text":" unsafe { crate::c_api::vxGetContext(input as vx_reference) },","highlight_start":25,"highlight_end":31}],"label":"unnecessary `unsafe` block","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unnecessary `unsafe` block\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:682:25\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m682\u001b[0m \u001b[1m\u001b[94m|\u001b[0m unsafe { crate::c_api::vxGetContext(input as vx_reference) },\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m \u001b[1m\u001b[33munnecessary `unsafe` block\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unnecessary `unsafe` block","code":{"code":"unused_unsafe","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":23202,"byte_end":23208,"line_start":701,"line_end":701,"column_start":25,"column_end":31,"is_primary":true,"text":[{"text":" unsafe { crate::c_api::vxGetContext(input as vx_reference) },","highlight_start":25,"highlight_end":31}],"label":"unnecessary `unsafe` block","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unnecessary `unsafe` block\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:701:25\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m701\u001b[0m \u001b[1m\u001b[94m|\u001b[0m unsafe { crate::c_api::vxGetContext(input as vx_reference) },\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m \u001b[1m\u001b[33munnecessary `unsafe` block\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unnecessary `unsafe` block","code":{"code":"unused_unsafe","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":23913,"byte_end":23919,"line_start":720,"line_end":720,"column_start":25,"column_end":31,"is_primary":true,"text":[{"text":" unsafe { crate::c_api::vxGetContext(input as vx_reference) },","highlight_start":25,"highlight_end":31}],"label":"unnecessary `unsafe` block","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unnecessary `unsafe` block\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:720:25\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m720\u001b[0m \u001b[1m\u001b[94m|\u001b[0m unsafe { crate::c_api::vxGetContext(input as vx_reference) },\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m \u001b[1m\u001b[33munnecessary `unsafe` block\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unnecessary `unsafe` block","code":{"code":"unused_unsafe","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":24621,"byte_end":24627,"line_start":739,"line_end":739,"column_start":25,"column_end":31,"is_primary":true,"text":[{"text":" unsafe { crate::c_api::vxGetContext(input as vx_reference) },","highlight_start":25,"highlight_end":31}],"label":"unnecessary `unsafe` block","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unnecessary `unsafe` block\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:739:25\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m739\u001b[0m \u001b[1m\u001b[94m|\u001b[0m unsafe { crate::c_api::vxGetContext(input as vx_reference) },\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m \u001b[1m\u001b[33munnecessary `unsafe` block\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unnecessary `unsafe` block","code":{"code":"unused_unsafe","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":25334,"byte_end":25340,"line_start":758,"line_end":758,"column_start":25,"column_end":31,"is_primary":true,"text":[{"text":" unsafe { crate::c_api::vxGetContext(input as vx_reference) },","highlight_start":25,"highlight_end":31}],"label":"unnecessary `unsafe` block","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unnecessary `unsafe` block\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:758:25\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m758\u001b[0m \u001b[1m\u001b[94m|\u001b[0m unsafe { crate::c_api::vxGetContext(input as vx_reference) },\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m \u001b[1m\u001b[33munnecessary `unsafe` block\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unnecessary `unsafe` block","code":{"code":"unused_unsafe","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":26098,"byte_end":26104,"line_start":777,"line_end":777,"column_start":25,"column_end":31,"is_primary":true,"text":[{"text":" unsafe { crate::c_api::vxGetContext(input as vx_reference) },","highlight_start":25,"highlight_end":31}],"label":"unnecessary `unsafe` block","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unnecessary `unsafe` block\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:777:25\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m777\u001b[0m \u001b[1m\u001b[94m|\u001b[0m unsafe { crate::c_api::vxGetContext(input as vx_reference) },\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m \u001b[1m\u001b[33munnecessary `unsafe` block\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unnecessary `unsafe` block","code":{"code":"unused_unsafe","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":26920,"byte_end":26926,"line_start":798,"line_end":798,"column_start":25,"column_end":31,"is_primary":true,"text":[{"text":" unsafe { crate::c_api::vxGetContext(input as vx_reference) },","highlight_start":25,"highlight_end":31}],"label":"unnecessary `unsafe` block","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unnecessary `unsafe` block\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:798:25\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m798\u001b[0m \u001b[1m\u001b[94m|\u001b[0m unsafe { crate::c_api::vxGetContext(input as vx_reference) },\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m \u001b[1m\u001b[33munnecessary `unsafe` block\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unnecessary `unsafe` block","code":{"code":"unused_unsafe","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":32589,"byte_end":32595,"line_start":961,"line_end":961,"column_start":5,"column_end":11,"is_primary":true,"text":[{"text":" unsafe {","highlight_start":5,"highlight_end":11}],"label":"unnecessary `unsafe` block","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unnecessary `unsafe` block\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:961:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m961\u001b[0m \u001b[1m\u001b[94m|\u001b[0m unsafe {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m \u001b[1m\u001b[33munnecessary `unsafe` block\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"value assigned to `count` is never read","code":{"code":"unused_assignments","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":35484,"byte_end":35488,"line_start":1045,"line_end":1045,"column_start":37,"column_end":41,"is_primary":true,"text":[{"text":" let mut count = 0u32;","highlight_start":37,"highlight_end":41}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"maybe it is overwritten before being read?","code":null,"level":"help","spans":[],"children":[],"rendered":null},{"message":"`#[warn(unused_assignments)]` (part of `#[warn(unused)]`) on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: value assigned to `count` is never read\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:1045:37\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m1045\u001b[0m \u001b[1m\u001b[94m|\u001b[0m let mut count = 0u32;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m= \u001b[0m\u001b[1mhelp\u001b[0m: maybe it is overwritten before being read?\n \u001b[1m\u001b[94m= \u001b[0m\u001b[1mnote\u001b[0m: `#[warn(unused_assignments)]` (part of `#[warn(unused)]`) on by default\n\n"} +{"$message_type":"diagnostic","message":"unreachable pattern","code":{"code":"unreachable_patterns","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":40240,"byte_end":40241,"line_start":1160,"line_end":1160,"column_start":9,"column_end":10,"is_primary":true,"text":[{"text":" _ => VX_ERROR_NOT_IMPLEMENTED,","highlight_start":9,"highlight_end":10}],"label":"no value can reach this","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"multiple earlier patterns match some of the same values","code":null,"level":"note","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":39418,"byte_end":39450,"line_start":1140,"line_end":1140,"column_start":9,"column_end":41,"is_primary":false,"text":[{"text":" VX_CONTEXT_ATTRIBUTE_USER_MEMORY => {","highlight_start":9,"highlight_end":41}],"label":"matches some of the same values","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":39540,"byte_end":39577,"line_start":1144,"line_end":1144,"column_start":9,"column_end":46,"is_primary":false,"text":[{"text":" VX_CONTEXT_ATTRIBUTE_IMMEDIATE_BORDER => {","highlight_start":9,"highlight_end":46}],"label":"matches some of the same values","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":40240,"byte_end":40241,"line_start":1160,"line_end":1160,"column_start":9,"column_end":10,"is_primary":true,"text":[{"text":" _ => VX_ERROR_NOT_IMPLEMENTED,","highlight_start":9,"highlight_end":10}],"label":"collectively making this unreachable","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unreachable pattern\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:1160:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m1160\u001b[0m \u001b[1m\u001b[94m|\u001b[0m _ => VX_ERROR_NOT_IMPLEMENTED,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^\u001b[0m \u001b[1m\u001b[33mno value can reach this\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[92mnote\u001b[0m: multiple earlier patterns match some of the same values\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:1160:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m1140\u001b[0m \u001b[1m\u001b[94m|\u001b[0m VX_CONTEXT_ATTRIBUTE_USER_MEMORY => {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m--------------------------------\u001b[0m \u001b[1m\u001b[94mmatches some of the same values\u001b[0m\n\u001b[1m\u001b[94m...\u001b[0m\n\u001b[1m\u001b[94m1144\u001b[0m \u001b[1m\u001b[94m|\u001b[0m VX_CONTEXT_ATTRIBUTE_IMMEDIATE_BORDER => {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m-------------------------------------\u001b[0m \u001b[1m\u001b[94mmatches some of the same values\u001b[0m\n\u001b[1m\u001b[94m...\u001b[0m\n\u001b[1m\u001b[94m1160\u001b[0m \u001b[1m\u001b[94m|\u001b[0m _ => VX_ERROR_NOT_IMPLEMENTED,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[92m^\u001b[0m \u001b[1m\u001b[92mcollectively making this unreachable\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `VX_CONTEXT_ATTRIBUTE_IMMEDIATE_BORDER`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":39540,"byte_end":39577,"line_start":1144,"line_end":1144,"column_start":9,"column_end":46,"is_primary":true,"text":[{"text":" VX_CONTEXT_ATTRIBUTE_IMMEDIATE_BORDER => {","highlight_start":9,"highlight_end":46}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"you might have meant to pattern match on the similarly named constant `VX_CONTEXT_ATTRIBUTE_UNIQUE_KERNELS`","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":39540,"byte_end":39577,"line_start":1144,"line_end":1144,"column_start":9,"column_end":46,"is_primary":true,"text":[{"text":" VX_CONTEXT_ATTRIBUTE_IMMEDIATE_BORDER => {","highlight_start":9,"highlight_end":46}],"label":null,"suggested_replacement":"unified_c_api::VX_CONTEXT_ATTRIBUTE_UNIQUE_KERNELS","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null},{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":39540,"byte_end":39577,"line_start":1144,"line_end":1144,"column_start":9,"column_end":46,"is_primary":true,"text":[{"text":" VX_CONTEXT_ATTRIBUTE_IMMEDIATE_BORDER => {","highlight_start":9,"highlight_end":46}],"label":null,"suggested_replacement":"_VX_CONTEXT_ATTRIBUTE_IMMEDIATE_BORDER","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `VX_CONTEXT_ATTRIBUTE_IMMEDIATE_BORDER`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:1144:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m1144\u001b[0m \u001b[1m\u001b[94m|\u001b[0m VX_CONTEXT_ATTRIBUTE_IMMEDIATE_BORDER => {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[96mhelp\u001b[0m: you might have meant to pattern match on the similarly named constant `VX_CONTEXT_ATTRIBUTE_UNIQUE_KERNELS`\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m1144\u001b[0m \u001b[91m- \u001b[0m \u001b[91mVX_CONTEXT_ATTRIBUTE_IMMEDIATE_BORDER\u001b[0m => {\n\u001b[1m\u001b[94m1144\u001b[0m \u001b[92m+ \u001b[0m \u001b[92munified_c_api::VX_CONTEXT_ATTRIBUTE_UNIQUE_KERNELS\u001b[0m => {\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[96mhelp\u001b[0m: if this is intentional, prefix it with an underscore\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m1144\u001b[0m \u001b[1m\u001b[94m| \u001b[0m \u001b[92m_\u001b[0mVX_CONTEXT_ATTRIBUTE_IMMEDIATE_BORDER => {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[92m+\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"variable does not need to be mutable","code":{"code":"unused_mut","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":44517,"byte_end":44531,"line_start":1276,"line_end":1276,"column_start":23,"column_end":37,"is_primary":true,"text":[{"text":" if let Ok(mut params_mut) = PARAMETERS.lock() {","highlight_start":23,"highlight_end":37}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(unused_mut)]` (part of `#[warn(unused)]`) on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"remove this `mut`","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":44517,"byte_end":44521,"line_start":1276,"line_end":1276,"column_start":23,"column_end":27,"is_primary":true,"text":[{"text":" if let Ok(mut params_mut) = PARAMETERS.lock() {","highlight_start":23,"highlight_end":27}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: variable does not need to be mutable\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:1276:23\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m1276\u001b[0m \u001b[1m\u001b[94m|\u001b[0m if let Ok(mut params_mut) = PARAMETERS.lock() {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m----\u001b[0m\u001b[1m\u001b[33m^^^^^^^^^^\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94mhelp: remove this `mut`\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m= \u001b[0m\u001b[1mnote\u001b[0m: `#[warn(unused_mut)]` (part of `#[warn(unused)]`) on by default\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `context_id`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":44299,"byte_end":44309,"line_start":1269,"line_end":1269,"column_start":5,"column_end":15,"is_primary":true,"text":[{"text":" context_id: u32,","highlight_start":5,"highlight_end":15}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":44299,"byte_end":44309,"line_start":1269,"line_end":1269,"column_start":5,"column_end":15,"is_primary":true,"text":[{"text":" context_id: u32,","highlight_start":5,"highlight_end":15}],"label":null,"suggested_replacement":"_context_id","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `context_id`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:1269:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m1269\u001b[0m \u001b[1m\u001b[94m|\u001b[0m context_id: u32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_context_id`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `kernel_id`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":44320,"byte_end":44329,"line_start":1270,"line_end":1270,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" kernel_id: u64,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":44320,"byte_end":44329,"line_start":1270,"line_end":1270,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" kernel_id: u64,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":"_kernel_id","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `kernel_id`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:1270:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m1270\u001b[0m \u001b[1m\u001b[94m|\u001b[0m kernel_id: u64,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_kernel_id`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unnecessary `unsafe` block","code":{"code":"unused_unsafe","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":60267,"byte_end":60273,"line_start":1710,"line_end":1710,"column_start":25,"column_end":31,"is_primary":true,"text":[{"text":" unsafe {","highlight_start":25,"highlight_end":31}],"label":"unnecessary `unsafe` block","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":49972,"byte_end":49978,"line_start":1459,"line_end":1459,"column_start":5,"column_end":11,"is_primary":false,"text":[{"text":" unsafe {","highlight_start":5,"highlight_end":11}],"label":"because it's nested under this `unsafe` block","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unnecessary `unsafe` block\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:1710:25\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m1459\u001b[0m \u001b[1m\u001b[94m|\u001b[0m unsafe {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m------\u001b[0m \u001b[1m\u001b[94mbecause it's nested under this `unsafe` block\u001b[0m\n\u001b[1m\u001b[94m...\u001b[0m\n\u001b[1m\u001b[94m1710\u001b[0m \u001b[1m\u001b[94m|\u001b[0m unsafe {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m \u001b[1m\u001b[33munnecessary `unsafe` block\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unnecessary `unsafe` block","code":{"code":"unused_unsafe","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":60547,"byte_end":60553,"line_start":1717,"line_end":1717,"column_start":17,"column_end":23,"is_primary":true,"text":[{"text":" unsafe {","highlight_start":17,"highlight_end":23}],"label":"unnecessary `unsafe` block","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":49972,"byte_end":49978,"line_start":1459,"line_end":1459,"column_start":5,"column_end":11,"is_primary":false,"text":[{"text":" unsafe {","highlight_start":5,"highlight_end":11}],"label":"because it's nested under this `unsafe` block","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unnecessary `unsafe` block\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:1717:17\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m1459\u001b[0m \u001b[1m\u001b[94m|\u001b[0m unsafe {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m------\u001b[0m \u001b[1m\u001b[94mbecause it's nested under this `unsafe` block\u001b[0m\n\u001b[1m\u001b[94m...\u001b[0m\n\u001b[1m\u001b[94m1717\u001b[0m \u001b[1m\u001b[94m|\u001b[0m unsafe {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m \u001b[1m\u001b[33munnecessary `unsafe` block\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `msg`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":74360,"byte_end":74363,"line_start":2183,"line_end":2183,"column_start":9,"column_end":12,"is_primary":true,"text":[{"text":" let msg = CStr::from_ptr(message).to_string_lossy();","highlight_start":9,"highlight_end":12}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":74360,"byte_end":74363,"line_start":2183,"line_end":2183,"column_start":9,"column_end":12,"is_primary":true,"text":[{"text":" let msg = CStr::from_ptr(message).to_string_lossy();","highlight_start":9,"highlight_end":12}],"label":null,"suggested_replacement":"_msg","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `msg`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:2183:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m2183\u001b[0m \u001b[1m\u001b[94m|\u001b[0m let msg = CStr::from_ptr(message).to_string_lossy();\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_msg`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `attribute`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":92311,"byte_end":92320,"line_start":2695,"line_end":2695,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" attribute: i32,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":92311,"byte_end":92320,"line_start":2695,"line_end":2695,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" attribute: i32,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":"_attribute","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `attribute`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:2695:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m2695\u001b[0m \u001b[1m\u001b[94m|\u001b[0m attribute: i32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_attribute`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `size`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":92353,"byte_end":92357,"line_start":2697,"line_end":2697,"column_start":5,"column_end":9,"is_primary":true,"text":[{"text":" size: usize,","highlight_start":5,"highlight_end":9}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":92353,"byte_end":92357,"line_start":2697,"line_end":2697,"column_start":5,"column_end":9,"is_primary":true,"text":[{"text":" size: usize,","highlight_start":5,"highlight_end":9}],"label":null,"suggested_replacement":"_size","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `size`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:2697:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m2697\u001b[0m \u001b[1m\u001b[94m|\u001b[0m size: usize,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_size`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `index`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":92678,"byte_end":92683,"line_start":2718,"line_end":2718,"column_start":5,"column_end":10,"is_primary":true,"text":[{"text":" index: u32,","highlight_start":5,"highlight_end":10}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":92678,"byte_end":92683,"line_start":2718,"line_end":2718,"column_start":5,"column_end":10,"is_primary":true,"text":[{"text":" index: u32,","highlight_start":5,"highlight_end":10}],"label":null,"suggested_replacement":"_index","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `index`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:2718:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m2718\u001b[0m \u001b[1m\u001b[94m|\u001b[0m index: u32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_index`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `usage`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":92788,"byte_end":92793,"line_start":2722,"line_end":2722,"column_start":5,"column_end":10,"is_primary":true,"text":[{"text":" usage: i32,","highlight_start":5,"highlight_end":10}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":92788,"byte_end":92793,"line_start":2722,"line_end":2722,"column_start":5,"column_end":10,"is_primary":true,"text":[{"text":" usage: i32,","highlight_start":5,"highlight_end":10}],"label":null,"suggested_replacement":"_usage","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `usage`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:2722:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m2722\u001b[0m \u001b[1m\u001b[94m|\u001b[0m usage: i32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_usage`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `mem_type`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":92804,"byte_end":92812,"line_start":2723,"line_end":2723,"column_start":5,"column_end":13,"is_primary":true,"text":[{"text":" mem_type: i32,","highlight_start":5,"highlight_end":13}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":92804,"byte_end":92812,"line_start":2723,"line_end":2723,"column_start":5,"column_end":13,"is_primary":true,"text":[{"text":" mem_type: i32,","highlight_start":5,"highlight_end":13}],"label":null,"suggested_replacement":"_mem_type","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `mem_type`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:2723:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m2723\u001b[0m \u001b[1m\u001b[94m|\u001b[0m mem_type: i32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_mem_type`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `index`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":93038,"byte_end":93043,"line_start":2735,"line_end":2735,"column_start":5,"column_end":10,"is_primary":true,"text":[{"text":" index: u32,","highlight_start":5,"highlight_end":10}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":93038,"byte_end":93043,"line_start":2735,"line_end":2735,"column_start":5,"column_end":10,"is_primary":true,"text":[{"text":" index: u32,","highlight_start":5,"highlight_end":10}],"label":null,"suggested_replacement":"_index","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `index`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:2735:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m2735\u001b[0m \u001b[1m\u001b[94m|\u001b[0m index: u32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_index`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `map_id`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":93054,"byte_end":93060,"line_start":2736,"line_end":2736,"column_start":5,"column_end":11,"is_primary":true,"text":[{"text":" map_id: usize,","highlight_start":5,"highlight_end":11}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":93054,"byte_end":93060,"line_start":2736,"line_end":2736,"column_start":5,"column_end":11,"is_primary":true,"text":[{"text":" map_id: usize,","highlight_start":5,"highlight_end":11}],"label":null,"suggested_replacement":"_map_id","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `map_id`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:2736:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m2736\u001b[0m \u001b[1m\u001b[94m|\u001b[0m map_id: usize,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_map_id`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `usage`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":93231,"byte_end":93236,"line_start":2748,"line_end":2748,"column_start":5,"column_end":10,"is_primary":true,"text":[{"text":" usage: i32,","highlight_start":5,"highlight_end":10}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":93231,"byte_end":93236,"line_start":2748,"line_end":2748,"column_start":5,"column_end":10,"is_primary":true,"text":[{"text":" usage: i32,","highlight_start":5,"highlight_end":10}],"label":null,"suggested_replacement":"_usage","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `usage`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:2748:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m2748\u001b[0m \u001b[1m\u001b[94m|\u001b[0m usage: i32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_usage`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `user_mem_type`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":93247,"byte_end":93260,"line_start":2749,"line_end":2749,"column_start":5,"column_end":18,"is_primary":true,"text":[{"text":" user_mem_type: i32,","highlight_start":5,"highlight_end":18}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":93247,"byte_end":93260,"line_start":2749,"line_end":2749,"column_start":5,"column_end":18,"is_primary":true,"text":[{"text":" user_mem_type: i32,","highlight_start":5,"highlight_end":18}],"label":null,"suggested_replacement":"_user_mem_type","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `user_mem_type`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:2749:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m2749\u001b[0m \u001b[1m\u001b[94m|\u001b[0m user_mem_type: i32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_user_mem_type`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `start`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":93429,"byte_end":93434,"line_start":2760,"line_end":2760,"column_start":5,"column_end":10,"is_primary":true,"text":[{"text":" start: usize,","highlight_start":5,"highlight_end":10}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":93429,"byte_end":93434,"line_start":2760,"line_end":2760,"column_start":5,"column_end":10,"is_primary":true,"text":[{"text":" start: usize,","highlight_start":5,"highlight_end":10}],"label":null,"suggested_replacement":"_start","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `start`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:2760:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m2760\u001b[0m \u001b[1m\u001b[94m|\u001b[0m start: usize,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_start`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `end`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":93447,"byte_end":93450,"line_start":2761,"line_end":2761,"column_start":5,"column_end":8,"is_primary":true,"text":[{"text":" end: usize,","highlight_start":5,"highlight_end":8}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":93447,"byte_end":93450,"line_start":2761,"line_end":2761,"column_start":5,"column_end":8,"is_primary":true,"text":[{"text":" end: usize,","highlight_start":5,"highlight_end":8}],"label":null,"suggested_replacement":"_end","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `end`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:2761:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m2761\u001b[0m \u001b[1m\u001b[94m|\u001b[0m end: usize,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_end`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `stride`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":93463,"byte_end":93469,"line_start":2762,"line_end":2762,"column_start":5,"column_end":11,"is_primary":true,"text":[{"text":" stride: usize,","highlight_start":5,"highlight_end":11}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":93463,"byte_end":93469,"line_start":2762,"line_end":2762,"column_start":5,"column_end":11,"is_primary":true,"text":[{"text":" stride: usize,","highlight_start":5,"highlight_end":11}],"label":null,"suggested_replacement":"_stride","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `stride`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:2762:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m2762\u001b[0m \u001b[1m\u001b[94m|\u001b[0m stride: usize,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_stride`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `user_mem_type`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":93509,"byte_end":93522,"line_start":2764,"line_end":2764,"column_start":5,"column_end":18,"is_primary":true,"text":[{"text":" user_mem_type: i32,","highlight_start":5,"highlight_end":18}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":93509,"byte_end":93522,"line_start":2764,"line_end":2764,"column_start":5,"column_end":18,"is_primary":true,"text":[{"text":" user_mem_type: i32,","highlight_start":5,"highlight_end":18}],"label":null,"suggested_replacement":"_user_mem_type","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `user_mem_type`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:2764:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m2764\u001b[0m \u001b[1m\u001b[94m|\u001b[0m user_mem_type: i32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_user_mem_type`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `attribute`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":93692,"byte_end":93701,"line_start":2775,"line_end":2775,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" attribute: i32,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":93692,"byte_end":93701,"line_start":2775,"line_end":2775,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" attribute: i32,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":"_attribute","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `attribute`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:2775:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m2775\u001b[0m \u001b[1m\u001b[94m|\u001b[0m attribute: i32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_attribute`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `size`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":93734,"byte_end":93738,"line_start":2777,"line_end":2777,"column_start":5,"column_end":9,"is_primary":true,"text":[{"text":" size: usize,","highlight_start":5,"highlight_end":9}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":93734,"byte_end":93738,"line_start":2777,"line_end":2777,"column_start":5,"column_end":9,"is_primary":true,"text":[{"text":" size: usize,","highlight_start":5,"highlight_end":9}],"label":null,"suggested_replacement":"_size","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `size`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:2777:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m2777\u001b[0m \u001b[1m\u001b[94m|\u001b[0m size: usize,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_size`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `attribute`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":93917,"byte_end":93926,"line_start":2788,"line_end":2788,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" attribute: i32,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":93917,"byte_end":93926,"line_start":2788,"line_end":2788,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" attribute: i32,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":"_attribute","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `attribute`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:2788:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m2788\u001b[0m \u001b[1m\u001b[94m|\u001b[0m attribute: i32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_attribute`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `size`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":93961,"byte_end":93965,"line_start":2790,"line_end":2790,"column_start":5,"column_end":9,"is_primary":true,"text":[{"text":" size: usize,","highlight_start":5,"highlight_end":9}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":93961,"byte_end":93965,"line_start":2790,"line_end":2790,"column_start":5,"column_end":9,"is_primary":true,"text":[{"text":" size: usize,","highlight_start":5,"highlight_end":9}],"label":null,"suggested_replacement":"_size","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `size`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:2790:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m2790\u001b[0m \u001b[1m\u001b[94m|\u001b[0m size: usize,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_size`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `attribute`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":94145,"byte_end":94154,"line_start":2801,"line_end":2801,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" attribute: i32,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":94145,"byte_end":94154,"line_start":2801,"line_end":2801,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" attribute: i32,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":"_attribute","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `attribute`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:2801:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m2801\u001b[0m \u001b[1m\u001b[94m|\u001b[0m attribute: i32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_attribute`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `size`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":94187,"byte_end":94191,"line_start":2803,"line_end":2803,"column_start":5,"column_end":9,"is_primary":true,"text":[{"text":" size: usize,","highlight_start":5,"highlight_end":9}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":94187,"byte_end":94191,"line_start":2803,"line_end":2803,"column_start":5,"column_end":9,"is_primary":true,"text":[{"text":" size: usize,","highlight_start":5,"highlight_end":9}],"label":null,"suggested_replacement":"_size","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `size`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:2803:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m2803\u001b[0m \u001b[1m\u001b[94m|\u001b[0m size: usize,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_size`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `attribute`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":94376,"byte_end":94385,"line_start":2814,"line_end":2814,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" attribute: i32,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":94376,"byte_end":94385,"line_start":2814,"line_end":2814,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" attribute: i32,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":"_attribute","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `attribute`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:2814:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m2814\u001b[0m \u001b[1m\u001b[94m|\u001b[0m attribute: i32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_attribute`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `size`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":94420,"byte_end":94424,"line_start":2816,"line_end":2816,"column_start":5,"column_end":9,"is_primary":true,"text":[{"text":" size: usize,","highlight_start":5,"highlight_end":9}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":94420,"byte_end":94424,"line_start":2816,"line_end":2816,"column_start":5,"column_end":9,"is_primary":true,"text":[{"text":" size: usize,","highlight_start":5,"highlight_end":9}],"label":null,"suggested_replacement":"_size","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `size`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:2816:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m2816\u001b[0m \u001b[1m\u001b[94m|\u001b[0m size: usize,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_size`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `attribute`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":94585,"byte_end":94594,"line_start":2827,"line_end":2827,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" attribute: i32,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":94585,"byte_end":94594,"line_start":2827,"line_end":2827,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" attribute: i32,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":"_attribute","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `attribute`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:2827:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m2827\u001b[0m \u001b[1m\u001b[94m|\u001b[0m attribute: i32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_attribute`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `size`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":94627,"byte_end":94631,"line_start":2829,"line_end":2829,"column_start":5,"column_end":9,"is_primary":true,"text":[{"text":" size: usize,","highlight_start":5,"highlight_end":9}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":94627,"byte_end":94631,"line_start":2829,"line_end":2829,"column_start":5,"column_end":9,"is_primary":true,"text":[{"text":" size: usize,","highlight_start":5,"highlight_end":9}],"label":null,"suggested_replacement":"_size","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `size`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:2829:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m2829\u001b[0m \u001b[1m\u001b[94m|\u001b[0m size: usize,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_size`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unnecessary `unsafe` block","code":{"code":"unused_unsafe","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":95287,"byte_end":95293,"line_start":2859,"line_end":2859,"column_start":5,"column_end":11,"is_primary":true,"text":[{"text":" unsafe {","highlight_start":5,"highlight_end":11}],"label":"unnecessary `unsafe` block","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unnecessary `unsafe` block\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:2859:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m2859\u001b[0m \u001b[1m\u001b[94m|\u001b[0m unsafe {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m \u001b[1m\u001b[33munnecessary `unsafe` block\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `usage`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":97070,"byte_end":97075,"line_start":2923,"line_end":2923,"column_start":5,"column_end":10,"is_primary":true,"text":[{"text":" usage: i32,","highlight_start":5,"highlight_end":10}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":97070,"byte_end":97075,"line_start":2923,"line_end":2923,"column_start":5,"column_end":10,"is_primary":true,"text":[{"text":" usage: i32,","highlight_start":5,"highlight_end":10}],"label":null,"suggested_replacement":"_usage","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `usage`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:2923:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m2923\u001b[0m \u001b[1m\u001b[94m|\u001b[0m usage: i32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_usage`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `user_mem_type`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":97086,"byte_end":97099,"line_start":2924,"line_end":2924,"column_start":5,"column_end":18,"is_primary":true,"text":[{"text":" user_mem_type: i32,","highlight_start":5,"highlight_end":18}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":97086,"byte_end":97099,"line_start":2924,"line_end":2924,"column_start":5,"column_end":18,"is_primary":true,"text":[{"text":" user_mem_type: i32,","highlight_start":5,"highlight_end":18}],"label":null,"suggested_replacement":"_user_mem_type","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `user_mem_type`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:2924:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m2924\u001b[0m \u001b[1m\u001b[94m|\u001b[0m user_mem_type: i32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_user_mem_type`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unnecessary `unsafe` block","code":{"code":"unused_unsafe","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":98352,"byte_end":98358,"line_start":2978,"line_end":2978,"column_start":5,"column_end":11,"is_primary":true,"text":[{"text":" unsafe {","highlight_start":5,"highlight_end":11}],"label":"unnecessary `unsafe` block","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unnecessary `unsafe` block\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:2978:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m2978\u001b[0m \u001b[1m\u001b[94m|\u001b[0m unsafe {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m \u001b[1m\u001b[33munnecessary `unsafe` block\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `attribute`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":98722,"byte_end":98731,"line_start":2993,"line_end":2993,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" attribute: i32,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":98722,"byte_end":98731,"line_start":2993,"line_end":2993,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" attribute: i32,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":"_attribute","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `attribute`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:2993:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m2993\u001b[0m \u001b[1m\u001b[94m|\u001b[0m attribute: i32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_attribute`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `size`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":98764,"byte_end":98768,"line_start":2995,"line_end":2995,"column_start":5,"column_end":9,"is_primary":true,"text":[{"text":" size: usize,","highlight_start":5,"highlight_end":9}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":98764,"byte_end":98768,"line_start":2995,"line_end":2995,"column_start":5,"column_end":9,"is_primary":true,"text":[{"text":" size: usize,","highlight_start":5,"highlight_end":9}],"label":null,"suggested_replacement":"_size","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `size`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:2995:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m2995\u001b[0m \u001b[1m\u001b[94m|\u001b[0m size: usize,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_size`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `usage`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":98962,"byte_end":98967,"line_start":3007,"line_end":3007,"column_start":5,"column_end":10,"is_primary":true,"text":[{"text":" usage: i32,","highlight_start":5,"highlight_end":10}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":98962,"byte_end":98967,"line_start":3007,"line_end":3007,"column_start":5,"column_end":10,"is_primary":true,"text":[{"text":" usage: i32,","highlight_start":5,"highlight_end":10}],"label":null,"suggested_replacement":"_usage","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `usage`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:3007:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m3007\u001b[0m \u001b[1m\u001b[94m|\u001b[0m usage: i32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_usage`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `user_mem_type`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":98978,"byte_end":98991,"line_start":3008,"line_end":3008,"column_start":5,"column_end":18,"is_primary":true,"text":[{"text":" user_mem_type: i32,","highlight_start":5,"highlight_end":18}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":98978,"byte_end":98991,"line_start":3008,"line_end":3008,"column_start":5,"column_end":18,"is_primary":true,"text":[{"text":" user_mem_type: i32,","highlight_start":5,"highlight_end":18}],"label":null,"suggested_replacement":"_user_mem_type","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `user_mem_type`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:3008:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m3008\u001b[0m \u001b[1m\u001b[94m|\u001b[0m user_mem_type: i32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_user_mem_type`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `usage`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":99290,"byte_end":99295,"line_start":3023,"line_end":3023,"column_start":5,"column_end":10,"is_primary":true,"text":[{"text":" usage: i32,","highlight_start":5,"highlight_end":10}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":99290,"byte_end":99295,"line_start":3023,"line_end":3023,"column_start":5,"column_end":10,"is_primary":true,"text":[{"text":" usage: i32,","highlight_start":5,"highlight_end":10}],"label":null,"suggested_replacement":"_usage","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `usage`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:3023:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m3023\u001b[0m \u001b[1m\u001b[94m|\u001b[0m usage: i32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_usage`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `mem_type`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":99306,"byte_end":99314,"line_start":3024,"line_end":3024,"column_start":5,"column_end":13,"is_primary":true,"text":[{"text":" mem_type: i32,","highlight_start":5,"highlight_end":13}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":99306,"byte_end":99314,"line_start":3024,"line_end":3024,"column_start":5,"column_end":13,"is_primary":true,"text":[{"text":" mem_type: i32,","highlight_start":5,"highlight_end":13}],"label":null,"suggested_replacement":"_mem_type","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `mem_type`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:3024:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m3024\u001b[0m \u001b[1m\u001b[94m|\u001b[0m mem_type: i32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_mem_type`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unnecessary `unsafe` block","code":{"code":"unused_unsafe","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":100549,"byte_end":100555,"line_start":3078,"line_end":3078,"column_start":25,"column_end":31,"is_primary":true,"text":[{"text":" let exemplar_type = unsafe {","highlight_start":25,"highlight_end":31}],"label":"unnecessary `unsafe` block","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unnecessary `unsafe` block\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:3078:25\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m3078\u001b[0m \u001b[1m\u001b[94m|\u001b[0m let exemplar_type = unsafe {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m \u001b[1m\u001b[33munnecessary `unsafe` block\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unnecessary `unsafe` block","code":{"code":"unused_unsafe","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":101099,"byte_end":101105,"line_start":3097,"line_end":3097,"column_start":5,"column_end":11,"is_primary":true,"text":[{"text":" unsafe {","highlight_start":5,"highlight_end":11}],"label":"unnecessary `unsafe` block","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unnecessary `unsafe` block\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:3097:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m3097\u001b[0m \u001b[1m\u001b[94m|\u001b[0m unsafe {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m \u001b[1m\u001b[33munnecessary `unsafe` block\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `attribute`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":103056,"byte_end":103065,"line_start":3163,"line_end":3163,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" attribute: i32,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":103056,"byte_end":103065,"line_start":3163,"line_end":3163,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" attribute: i32,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":"_attribute","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `attribute`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:3163:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m3163\u001b[0m \u001b[1m\u001b[94m|\u001b[0m attribute: i32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_attribute`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `size`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":103098,"byte_end":103102,"line_start":3165,"line_end":3165,"column_start":5,"column_end":9,"is_primary":true,"text":[{"text":" size: usize,","highlight_start":5,"highlight_end":9}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":103098,"byte_end":103102,"line_start":3165,"line_end":3165,"column_start":5,"column_end":9,"is_primary":true,"text":[{"text":" size: usize,","highlight_start":5,"highlight_end":9}],"label":null,"suggested_replacement":"_size","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `size`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:3165:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m3165\u001b[0m \u001b[1m\u001b[94m|\u001b[0m size: usize,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_size`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `index`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":103289,"byte_end":103294,"line_start":3176,"line_end":3176,"column_start":5,"column_end":10,"is_primary":true,"text":[{"text":" index: u32,","highlight_start":5,"highlight_end":10}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":103289,"byte_end":103294,"line_start":3176,"line_end":3176,"column_start":5,"column_end":10,"is_primary":true,"text":[{"text":" index: u32,","highlight_start":5,"highlight_end":10}],"label":null,"suggested_replacement":"_index","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `index`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:3176:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m3176\u001b[0m \u001b[1m\u001b[94m|\u001b[0m index: u32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_index`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `index`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":103506,"byte_end":103511,"line_start":3187,"line_end":3187,"column_start":5,"column_end":10,"is_primary":true,"text":[{"text":" index: u32,","highlight_start":5,"highlight_end":10}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":103506,"byte_end":103511,"line_start":3187,"line_end":3187,"column_start":5,"column_end":10,"is_primary":true,"text":[{"text":" index: u32,","highlight_start":5,"highlight_end":10}],"label":null,"suggested_replacement":"_index","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `index`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:3187:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m3187\u001b[0m \u001b[1m\u001b[94m|\u001b[0m index: u32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_index`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `data_type`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":104364,"byte_end":104373,"line_start":3224,"line_end":3224,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" data_type: i32,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":104364,"byte_end":104373,"line_start":3224,"line_end":3224,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" data_type: i32,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":"_data_type","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `data_type`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:3224:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m3224\u001b[0m \u001b[1m\u001b[94m|\u001b[0m data_type: i32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_data_type`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `fixed_point_pos`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":104384,"byte_end":104399,"line_start":3225,"line_end":3225,"column_start":5,"column_end":20,"is_primary":true,"text":[{"text":" fixed_point_pos: i8,","highlight_start":5,"highlight_end":20}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":104384,"byte_end":104399,"line_start":3225,"line_end":3225,"column_start":5,"column_end":20,"is_primary":true,"text":[{"text":" fixed_point_pos: i8,","highlight_start":5,"highlight_end":20}],"label":null,"suggested_replacement":"_fixed_point_pos","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `fixed_point_pos`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:3225:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m3225\u001b[0m \u001b[1m\u001b[94m|\u001b[0m fixed_point_pos: i8,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_fixed_point_pos`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `num_dims`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":104637,"byte_end":104645,"line_start":3236,"line_end":3236,"column_start":5,"column_end":13,"is_primary":true,"text":[{"text":" num_dims: usize,","highlight_start":5,"highlight_end":13}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":104637,"byte_end":104645,"line_start":3236,"line_end":3236,"column_start":5,"column_end":13,"is_primary":true,"text":[{"text":" num_dims: usize,","highlight_start":5,"highlight_end":13}],"label":null,"suggested_replacement":"_num_dims","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `num_dims`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:3236:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m3236\u001b[0m \u001b[1m\u001b[94m|\u001b[0m num_dims: usize,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_num_dims`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `attribute`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":104941,"byte_end":104950,"line_start":3249,"line_end":3249,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" attribute: i32,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":104941,"byte_end":104950,"line_start":3249,"line_end":3249,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" attribute: i32,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":"_attribute","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `attribute`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:3249:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m3249\u001b[0m \u001b[1m\u001b[94m|\u001b[0m attribute: i32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_attribute`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `size`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":104983,"byte_end":104987,"line_start":3251,"line_end":3251,"column_start":5,"column_end":9,"is_primary":true,"text":[{"text":" size: usize,","highlight_start":5,"highlight_end":9}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":104983,"byte_end":104987,"line_start":3251,"line_end":3251,"column_start":5,"column_end":9,"is_primary":true,"text":[{"text":" size: usize,","highlight_start":5,"highlight_end":9}],"label":null,"suggested_replacement":"_size","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `size`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:3251:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m3251\u001b[0m \u001b[1m\u001b[94m|\u001b[0m size: usize,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_size`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `usage`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":105185,"byte_end":105190,"line_start":3263,"line_end":3263,"column_start":5,"column_end":10,"is_primary":true,"text":[{"text":" usage: i32,","highlight_start":5,"highlight_end":10}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":105185,"byte_end":105190,"line_start":3263,"line_end":3263,"column_start":5,"column_end":10,"is_primary":true,"text":[{"text":" usage: i32,","highlight_start":5,"highlight_end":10}],"label":null,"suggested_replacement":"_usage","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `usage`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:3263:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m3263\u001b[0m \u001b[1m\u001b[94m|\u001b[0m usage: i32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_usage`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `user_mem_type`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":105201,"byte_end":105214,"line_start":3264,"line_end":3264,"column_start":5,"column_end":18,"is_primary":true,"text":[{"text":" user_mem_type: i32,","highlight_start":5,"highlight_end":18}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":105201,"byte_end":105214,"line_start":3264,"line_end":3264,"column_start":5,"column_end":18,"is_primary":true,"text":[{"text":" user_mem_type: i32,","highlight_start":5,"highlight_end":18}],"label":null,"suggested_replacement":"_user_mem_type","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `user_mem_type`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:3264:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m3264\u001b[0m \u001b[1m\u001b[94m|\u001b[0m user_mem_type: i32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_user_mem_type`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `num_dims`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":105390,"byte_end":105398,"line_start":3275,"line_end":3275,"column_start":5,"column_end":13,"is_primary":true,"text":[{"text":" num_dims: usize,","highlight_start":5,"highlight_end":13}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":105390,"byte_end":105398,"line_start":3275,"line_end":3275,"column_start":5,"column_end":13,"is_primary":true,"text":[{"text":" num_dims: usize,","highlight_start":5,"highlight_end":13}],"label":null,"suggested_replacement":"_num_dims","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `num_dims`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:3275:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m3275\u001b[0m \u001b[1m\u001b[94m|\u001b[0m num_dims: usize,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_num_dims`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `usage`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":105542,"byte_end":105547,"line_start":3281,"line_end":3281,"column_start":5,"column_end":10,"is_primary":true,"text":[{"text":" usage: i32,","highlight_start":5,"highlight_end":10}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":105542,"byte_end":105547,"line_start":3281,"line_end":3281,"column_start":5,"column_end":10,"is_primary":true,"text":[{"text":" usage: i32,","highlight_start":5,"highlight_end":10}],"label":null,"suggested_replacement":"_usage","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `usage`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:3281:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m3281\u001b[0m \u001b[1m\u001b[94m|\u001b[0m usage: i32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_usage`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `mem_type`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":105558,"byte_end":105566,"line_start":3282,"line_end":3282,"column_start":5,"column_end":13,"is_primary":true,"text":[{"text":" mem_type: i32,","highlight_start":5,"highlight_end":13}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":105558,"byte_end":105566,"line_start":3282,"line_end":3282,"column_start":5,"column_end":13,"is_primary":true,"text":[{"text":" mem_type: i32,","highlight_start":5,"highlight_end":13}],"label":null,"suggested_replacement":"_mem_type","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `mem_type`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:3282:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m3282\u001b[0m \u001b[1m\u001b[94m|\u001b[0m mem_type: i32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_mem_type`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `attribute`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":107226,"byte_end":107235,"line_start":3360,"line_end":3360,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" attribute: i32,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":107226,"byte_end":107235,"line_start":3360,"line_end":3360,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" attribute: i32,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":"_attribute","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `attribute`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:3360:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m3360\u001b[0m \u001b[1m\u001b[94m|\u001b[0m attribute: i32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_attribute`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `size`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":107268,"byte_end":107272,"line_start":3362,"line_end":3362,"column_start":5,"column_end":9,"is_primary":true,"text":[{"text":" size: usize,","highlight_start":5,"highlight_end":9}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":107268,"byte_end":107272,"line_start":3362,"line_end":3362,"column_start":5,"column_end":9,"is_primary":true,"text":[{"text":" size: usize,","highlight_start":5,"highlight_end":9}],"label":null,"suggested_replacement":"_size","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `size`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:3362:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m3362\u001b[0m \u001b[1m\u001b[94m|\u001b[0m size: usize,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_size`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unnecessary `unsafe` block","code":{"code":"unused_unsafe","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":108011,"byte_end":108017,"line_start":3389,"line_end":3389,"column_start":20,"column_end":26,"is_primary":true,"text":[{"text":" let ref_type = unsafe {","highlight_start":20,"highlight_end":26}],"label":"unnecessary `unsafe` block","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unnecessary `unsafe` block\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:3389:20\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m3389\u001b[0m \u001b[1m\u001b[94m|\u001b[0m let ref_type = unsafe {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m \u001b[1m\u001b[33munnecessary `unsafe` block\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `num_refs`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":115877,"byte_end":115885,"line_start":3655,"line_end":3655,"column_start":5,"column_end":13,"is_primary":true,"text":[{"text":" num_refs: usize,","highlight_start":5,"highlight_end":13}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":115877,"byte_end":115885,"line_start":3655,"line_end":3655,"column_start":5,"column_end":13,"is_primary":true,"text":[{"text":" num_refs: usize,","highlight_start":5,"highlight_end":13}],"label":null,"suggested_replacement":"_num_refs","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `num_refs`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:3655:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m3655\u001b[0m \u001b[1m\u001b[94m|\u001b[0m num_refs: usize,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_num_refs`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `uses`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":115929,"byte_end":115933,"line_start":3657,"line_end":3657,"column_start":5,"column_end":9,"is_primary":true,"text":[{"text":" uses: *const usize,","highlight_start":5,"highlight_end":9}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":115929,"byte_end":115933,"line_start":3657,"line_end":3657,"column_start":5,"column_end":9,"is_primary":true,"text":[{"text":" uses: *const usize,","highlight_start":5,"highlight_end":9}],"label":null,"suggested_replacement":"_uses","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `uses`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:3657:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m3657\u001b[0m \u001b[1m\u001b[94m|\u001b[0m uses: *const usize,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_uses`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `attribute`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":116688,"byte_end":116697,"line_start":3695,"line_end":3695,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" attribute: i32,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":116688,"byte_end":116697,"line_start":3695,"line_end":3695,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" attribute: i32,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":"_attribute","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `attribute`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:3695:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m3695\u001b[0m \u001b[1m\u001b[94m|\u001b[0m attribute: i32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_attribute`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `size`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":116730,"byte_end":116734,"line_start":3697,"line_end":3697,"column_start":5,"column_end":9,"is_primary":true,"text":[{"text":" size: usize,","highlight_start":5,"highlight_end":9}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":116730,"byte_end":116734,"line_start":3697,"line_end":3697,"column_start":5,"column_end":9,"is_primary":true,"text":[{"text":" size: usize,","highlight_start":5,"highlight_end":9}],"label":null,"suggested_replacement":"_size","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `size`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:3697:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m3697\u001b[0m \u001b[1m\u001b[94m|\u001b[0m size: usize,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_size`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `attribute`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":117111,"byte_end":117120,"line_start":3716,"line_end":3716,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" attribute: i32,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":117111,"byte_end":117120,"line_start":3716,"line_end":3716,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" attribute: i32,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":"_attribute","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `attribute`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:3716:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m3716\u001b[0m \u001b[1m\u001b[94m|\u001b[0m attribute: i32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_attribute`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `size`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":117153,"byte_end":117157,"line_start":3718,"line_end":3718,"column_start":5,"column_end":9,"is_primary":true,"text":[{"text":" size: usize,","highlight_start":5,"highlight_end":9}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":117153,"byte_end":117157,"line_start":3718,"line_end":3718,"column_start":5,"column_end":9,"is_primary":true,"text":[{"text":" size: usize,","highlight_start":5,"highlight_end":9}],"label":null,"suggested_replacement":"_size","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `size`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:3718:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m3718\u001b[0m \u001b[1m\u001b[94m|\u001b[0m size: usize,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_size`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `attribute`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":117341,"byte_end":117350,"line_start":3729,"line_end":3729,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" attribute: i32,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":117341,"byte_end":117350,"line_start":3729,"line_end":3729,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" attribute: i32,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":"_attribute","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `attribute`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:3729:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m3729\u001b[0m \u001b[1m\u001b[94m|\u001b[0m attribute: i32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_attribute`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `size`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":117385,"byte_end":117389,"line_start":3731,"line_end":3731,"column_start":5,"column_end":9,"is_primary":true,"text":[{"text":" size: usize,","highlight_start":5,"highlight_end":9}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":117385,"byte_end":117389,"line_start":3731,"line_end":3731,"column_start":5,"column_end":9,"is_primary":true,"text":[{"text":" size: usize,","highlight_start":5,"highlight_end":9}],"label":null,"suggested_replacement":"_size","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `size`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:3731:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m3731\u001b[0m \u001b[1m\u001b[94m|\u001b[0m size: usize,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_size`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `index`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":117704,"byte_end":117709,"line_start":3750,"line_end":3750,"column_start":5,"column_end":10,"is_primary":true,"text":[{"text":" index: u32,","highlight_start":5,"highlight_end":10}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":117704,"byte_end":117709,"line_start":3750,"line_end":3750,"column_start":5,"column_end":10,"is_primary":true,"text":[{"text":" index: u32,","highlight_start":5,"highlight_end":10}],"label":null,"suggested_replacement":"_index","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `index`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:3750:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m3750\u001b[0m \u001b[1m\u001b[94m|\u001b[0m index: u32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_index`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `direction`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":117720,"byte_end":117729,"line_start":3751,"line_end":3751,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" direction: i32,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":117720,"byte_end":117729,"line_start":3751,"line_end":3751,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" direction: i32,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":"_direction","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `direction`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:3751:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m3751\u001b[0m \u001b[1m\u001b[94m|\u001b[0m direction: i32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_direction`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `data_type`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":117740,"byte_end":117749,"line_start":3752,"line_end":3752,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" data_type: i32,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":117740,"byte_end":117749,"line_start":3752,"line_end":3752,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" data_type: i32,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":"_data_type","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `data_type`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:3752:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m3752\u001b[0m \u001b[1m\u001b[94m|\u001b[0m data_type: i32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_data_type`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `state`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":117760,"byte_end":117765,"line_start":3753,"line_end":3753,"column_start":5,"column_end":10,"is_primary":true,"text":[{"text":" state: i32,","highlight_start":5,"highlight_end":10}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":117760,"byte_end":117765,"line_start":3753,"line_end":3753,"column_start":5,"column_end":10,"is_primary":true,"text":[{"text":" state: i32,","highlight_start":5,"highlight_end":10}],"label":null,"suggested_replacement":"_state","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `state`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:3753:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m3753\u001b[0m \u001b[1m\u001b[94m|\u001b[0m state: i32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_state`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `pattern`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":118687,"byte_end":118694,"line_start":3809,"line_end":3809,"column_start":5,"column_end":12,"is_primary":true,"text":[{"text":" pattern: i32,","highlight_start":5,"highlight_end":12}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":118687,"byte_end":118694,"line_start":3809,"line_end":3809,"column_start":5,"column_end":12,"is_primary":true,"text":[{"text":" pattern: i32,","highlight_start":5,"highlight_end":12}],"label":null,"suggested_replacement":"_pattern","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `pattern`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:3809:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m3809\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pattern: i32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_pattern`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `pattern`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":118974,"byte_end":118981,"line_start":3822,"line_end":3822,"column_start":5,"column_end":12,"is_primary":true,"text":[{"text":" pattern: i32,","highlight_start":5,"highlight_end":12}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":118974,"byte_end":118981,"line_start":3822,"line_end":3822,"column_start":5,"column_end":12,"is_primary":true,"text":[{"text":" pattern: i32,","highlight_start":5,"highlight_end":12}],"label":null,"suggested_replacement":"_pattern","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `pattern`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:3822:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m3822\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pattern: i32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_pattern`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unnecessary `unsafe` block","code":{"code":"unused_unsafe","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":119297,"byte_end":119303,"line_start":3834,"line_end":3834,"column_start":5,"column_end":11,"is_primary":true,"text":[{"text":" unsafe {","highlight_start":5,"highlight_end":11}],"label":"unnecessary `unsafe` block","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unnecessary `unsafe` block\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:3834:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m3834\u001b[0m \u001b[1m\u001b[94m|\u001b[0m unsafe {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m \u001b[1m\u001b[33munnecessary `unsafe` block\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `usage`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":164956,"byte_end":164961,"line_start":5464,"line_end":5464,"column_start":5,"column_end":10,"is_primary":true,"text":[{"text":" usage: vx_enum,","highlight_start":5,"highlight_end":10}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":164956,"byte_end":164961,"line_start":5464,"line_end":5464,"column_start":5,"column_end":10,"is_primary":true,"text":[{"text":" usage: vx_enum,","highlight_start":5,"highlight_end":10}],"label":null,"suggested_replacement":"_usage","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `usage`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:5464:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m5464\u001b[0m \u001b[1m\u001b[94m|\u001b[0m usage: vx_enum,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_usage`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `range_start`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":167953,"byte_end":167964,"line_start":5580,"line_end":5580,"column_start":5,"column_end":16,"is_primary":true,"text":[{"text":" range_start: vx_size,","highlight_start":5,"highlight_end":16}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":167953,"byte_end":167964,"line_start":5580,"line_end":5580,"column_start":5,"column_end":16,"is_primary":true,"text":[{"text":" range_start: vx_size,","highlight_start":5,"highlight_end":16}],"label":null,"suggested_replacement":"_range_start","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `range_start`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:5580:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m5580\u001b[0m \u001b[1m\u001b[94m|\u001b[0m range_start: vx_size,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_range_start`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `range_end`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":167979,"byte_end":167988,"line_start":5581,"line_end":5581,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" range_end: vx_size,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":167979,"byte_end":167988,"line_start":5581,"line_end":5581,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" range_end: vx_size,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":"_range_end","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `range_end`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:5581:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m5581\u001b[0m \u001b[1m\u001b[94m|\u001b[0m range_end: vx_size,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_range_end`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `user_stride`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":168003,"byte_end":168014,"line_start":5582,"line_end":5582,"column_start":5,"column_end":16,"is_primary":true,"text":[{"text":" user_stride: vx_size,","highlight_start":5,"highlight_end":16}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":168003,"byte_end":168014,"line_start":5582,"line_end":5582,"column_start":5,"column_end":16,"is_primary":true,"text":[{"text":" user_stride: vx_size,","highlight_start":5,"highlight_end":16}],"label":null,"suggested_replacement":"_user_stride","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `user_stride`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:5582:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m5582\u001b[0m \u001b[1m\u001b[94m|\u001b[0m user_stride: vx_size,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_user_stride`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `usage`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":168056,"byte_end":168061,"line_start":5584,"line_end":5584,"column_start":5,"column_end":10,"is_primary":true,"text":[{"text":" usage: vx_enum,","highlight_start":5,"highlight_end":10}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":168056,"byte_end":168061,"line_start":5584,"line_end":5584,"column_start":5,"column_end":10,"is_primary":true,"text":[{"text":" usage: vx_enum,","highlight_start":5,"highlight_end":10}],"label":null,"suggested_replacement":"_usage","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `usage`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:5584:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m5584\u001b[0m \u001b[1m\u001b[94m|\u001b[0m usage: vx_enum,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_usage`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `function`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":173275,"byte_end":173283,"line_start":5776,"line_end":5776,"column_start":5,"column_end":13,"is_primary":true,"text":[{"text":" function: vx_enum,","highlight_start":5,"highlight_end":13}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":173275,"byte_end":173283,"line_start":5776,"line_end":5776,"column_start":5,"column_end":13,"is_primary":true,"text":[{"text":" function: vx_enum,","highlight_start":5,"highlight_end":13}],"label":null,"suggested_replacement":"_function","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `function`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:5776:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m5776\u001b[0m \u001b[1m\u001b[94m|\u001b[0m function: vx_enum,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_function`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `mask_size`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":173319,"byte_end":173328,"line_start":5778,"line_end":5778,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" mask_size: vx_size,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":173319,"byte_end":173328,"line_start":5778,"line_end":5778,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" mask_size: vx_size,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":"_mask_size","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `mask_size`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:5778:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m5778\u001b[0m \u001b[1m\u001b[94m|\u001b[0m mask_size: vx_size,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_mask_size`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `target_enum`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":175617,"byte_end":175628,"line_start":5854,"line_end":5854,"column_start":65,"column_end":76,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxSetImmediateModeTarget(context: vx_context, target_enum: vx_enum, target_string: *const vx_char) -> vx_status {","highlight_start":65,"highlight_end":76}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":175617,"byte_end":175628,"line_start":5854,"line_end":5854,"column_start":65,"column_end":76,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxSetImmediateModeTarget(context: vx_context, target_enum: vx_enum, target_string: *const vx_char) -> vx_status {","highlight_start":65,"highlight_end":76}],"label":null,"suggested_replacement":"_target_enum","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `target_enum`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:5854:65\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m5854\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub extern \"C\" fn vxSetImmediateModeTarget(context: vx_context, target_enum: vx_enum, target_string: *const vx_char) -> vx_status {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_target_enum`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `target_string`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":175639,"byte_end":175652,"line_start":5854,"line_end":5854,"column_start":87,"column_end":100,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxSetImmediateModeTarget(context: vx_context, target_enum: vx_enum, target_string: *const vx_char) -> vx_status {","highlight_start":87,"highlight_end":100}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":175639,"byte_end":175652,"line_start":5854,"line_end":5854,"column_start":87,"column_end":100,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxSetImmediateModeTarget(context: vx_context, target_enum: vx_enum, target_string: *const vx_char) -> vx_status {","highlight_start":87,"highlight_end":100}],"label":null,"suggested_replacement":"_target_string","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `target_string`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:5854:87\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m5854\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub extern \"C\" fn vxSetImmediateModeTarget(context: vx_context, target_enum: vx_enum, target_string: *const vx_char) -> vx_status {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_target_string`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `data_type`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":175882,"byte_end":175891,"line_start":5863,"line_end":5863,"column_start":63,"column_end":72,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxCreateScalarWithSize(context: vx_context, data_type: vx_enum, ptr: *const c_void, size: vx_size) -> vx_scalar {","highlight_start":63,"highlight_end":72}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":175882,"byte_end":175891,"line_start":5863,"line_end":5863,"column_start":63,"column_end":72,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxCreateScalarWithSize(context: vx_context, data_type: vx_enum, ptr: *const c_void, size: vx_size) -> vx_scalar {","highlight_start":63,"highlight_end":72}],"label":null,"suggested_replacement":"_data_type","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `data_type`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:5863:63\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m5863\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub extern \"C\" fn vxCreateScalarWithSize(context: vx_context, data_type: vx_enum, ptr: *const c_void, size: vx_size) -> vx_scalar {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_data_type`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `data_type`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":176726,"byte_end":176735,"line_start":5887,"line_end":5887,"column_start":59,"column_end":68,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxCopyScalarWithSize(scalar: vx_scalar, data_type: vx_enum, ptr: *mut c_void, size: vx_size, usage: vx_enum) -> vx_status {","highlight_start":59,"highlight_end":68}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":176726,"byte_end":176735,"line_start":5887,"line_end":5887,"column_start":59,"column_end":68,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxCopyScalarWithSize(scalar: vx_scalar, data_type: vx_enum, ptr: *mut c_void, size: vx_size, usage: vx_enum) -> vx_status {","highlight_start":59,"highlight_end":68}],"label":null,"suggested_replacement":"_data_type","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `data_type`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:5887:59\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m5887\u001b[0m \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m...\u001b[0mze(scalar: vx_scalar, data_type: vx_enum, ptr: *mut c_void, size: vx_size, usage: vx_enum) -> vx_status {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_data_type`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `size`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":176764,"byte_end":176768,"line_start":5887,"line_end":5887,"column_start":97,"column_end":101,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxCopyScalarWithSize(scalar: vx_scalar, data_type: vx_enum, ptr: *mut c_void, size: vx_size, usage: vx_enum) -> vx_status {","highlight_start":97,"highlight_end":101}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":176764,"byte_end":176768,"line_start":5887,"line_end":5887,"column_start":97,"column_end":101,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxCopyScalarWithSize(scalar: vx_scalar, data_type: vx_enum, ptr: *mut c_void, size: vx_size, usage: vx_enum) -> vx_status {","highlight_start":97,"highlight_end":101}],"label":null,"suggested_replacement":"_size","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `size`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:5887:97\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m5887\u001b[0m \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m...\u001b[0mvx_enum, ptr: *mut c_void, size: vx_size, usage: vx_enum) -> vx_status {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_size`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `usage`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":176779,"byte_end":176784,"line_start":5887,"line_end":5887,"column_start":112,"column_end":117,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxCopyScalarWithSize(scalar: vx_scalar, data_type: vx_enum, ptr: *mut c_void, size: vx_size, usage: vx_enum) -> vx_status {","highlight_start":112,"highlight_end":117}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":176779,"byte_end":176784,"line_start":5887,"line_end":5887,"column_start":112,"column_end":117,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxCopyScalarWithSize(scalar: vx_scalar, data_type: vx_enum, ptr: *mut c_void, size: vx_size, usage: vx_enum) -> vx_status {","highlight_start":112,"highlight_end":117}],"label":null,"suggested_replacement":"_usage","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `usage`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:5887:112\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m5887\u001b[0m \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m...\u001b[0mut c_void, size: vx_size, usage: vx_enum) -> vx_status {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_usage`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unnecessary `unsafe` block","code":{"code":"unused_unsafe","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":177150,"byte_end":177156,"line_start":5900,"line_end":5900,"column_start":5,"column_end":11,"is_primary":true,"text":[{"text":" unsafe {","highlight_start":5,"highlight_end":11}],"label":"unnecessary `unsafe` block","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unnecessary `unsafe` block\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:5900:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m5900\u001b[0m \u001b[1m\u001b[94m|\u001b[0m unsafe {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m \u001b[1m\u001b[33munnecessary `unsafe` block\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unnecessary `unsafe` block","code":{"code":"unused_unsafe","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":177660,"byte_end":177666,"line_start":5914,"line_end":5914,"column_start":5,"column_end":11,"is_primary":true,"text":[{"text":" unsafe {","highlight_start":5,"highlight_end":11}],"label":"unnecessary `unsafe` block","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unnecessary `unsafe` block\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:5914:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m5914\u001b[0m \u001b[1m\u001b[94m|\u001b[0m unsafe {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m \u001b[1m\u001b[33munnecessary `unsafe` block\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `policy`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":177502,"byte_end":177508,"line_start":5910,"line_end":5910,"column_start":90,"column_end":96,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxConvertDepthNode(graph: vx_graph, input: vx_image, output: vx_image, policy: vx_enum, shift: vx_int32) -> vx_node {","highlight_start":90,"highlight_end":96}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":177502,"byte_end":177508,"line_start":5910,"line_end":5910,"column_start":90,"column_end":96,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxConvertDepthNode(graph: vx_graph, input: vx_image, output: vx_image, policy: vx_enum, shift: vx_int32) -> vx_node {","highlight_start":90,"highlight_end":96}],"label":null,"suggested_replacement":"_policy","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `policy`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:5910:90\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m5910\u001b[0m \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m...\u001b[0mimage, output: vx_image, policy: vx_enum, shift: vx_int32) -> vx_node {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_policy`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `shift`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":177519,"byte_end":177524,"line_start":5910,"line_end":5910,"column_start":107,"column_end":112,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxConvertDepthNode(graph: vx_graph, input: vx_image, output: vx_image, policy: vx_enum, shift: vx_int32) -> vx_node {","highlight_start":107,"highlight_end":112}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":177519,"byte_end":177524,"line_start":5910,"line_end":5910,"column_start":107,"column_end":112,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxConvertDepthNode(graph: vx_graph, input: vx_image, output: vx_image, policy: vx_enum, shift: vx_int32) -> vx_node {","highlight_start":107,"highlight_end":112}],"label":null,"suggested_replacement":"_shift","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `shift`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:5910:107\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m5910\u001b[0m \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m...\u001b[0mx_image, policy: vx_enum, shift: vx_int32) -> vx_node {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_shift`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `old_images`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":178011,"byte_end":178021,"line_start":5926,"line_end":5926,"column_start":5,"column_end":15,"is_primary":true,"text":[{"text":" old_images: vx_pyramid,","highlight_start":5,"highlight_end":15}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":178011,"byte_end":178021,"line_start":5926,"line_end":5926,"column_start":5,"column_end":15,"is_primary":true,"text":[{"text":" old_images: vx_pyramid,","highlight_start":5,"highlight_end":15}],"label":null,"suggested_replacement":"_old_images","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `old_images`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:5926:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m5926\u001b[0m \u001b[1m\u001b[94m|\u001b[0m old_images: vx_pyramid,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_old_images`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `new_images`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":178039,"byte_end":178049,"line_start":5927,"line_end":5927,"column_start":5,"column_end":15,"is_primary":true,"text":[{"text":" new_images: vx_pyramid,","highlight_start":5,"highlight_end":15}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":178039,"byte_end":178049,"line_start":5927,"line_end":5927,"column_start":5,"column_end":15,"is_primary":true,"text":[{"text":" new_images: vx_pyramid,","highlight_start":5,"highlight_end":15}],"label":null,"suggested_replacement":"_new_images","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `new_images`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:5927:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m5927\u001b[0m \u001b[1m\u001b[94m|\u001b[0m new_images: vx_pyramid,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_new_images`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `old_points`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":178067,"byte_end":178077,"line_start":5928,"line_end":5928,"column_start":5,"column_end":15,"is_primary":true,"text":[{"text":" old_points: vx_array,","highlight_start":5,"highlight_end":15}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":178067,"byte_end":178077,"line_start":5928,"line_end":5928,"column_start":5,"column_end":15,"is_primary":true,"text":[{"text":" old_points: vx_array,","highlight_start":5,"highlight_end":15}],"label":null,"suggested_replacement":"_old_points","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `old_points`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:5928:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m5928\u001b[0m \u001b[1m\u001b[94m|\u001b[0m old_points: vx_array,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_old_points`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `new_points_estimates`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":178093,"byte_end":178113,"line_start":5929,"line_end":5929,"column_start":5,"column_end":25,"is_primary":true,"text":[{"text":" new_points_estimates: vx_array,","highlight_start":5,"highlight_end":25}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":178093,"byte_end":178113,"line_start":5929,"line_end":5929,"column_start":5,"column_end":25,"is_primary":true,"text":[{"text":" new_points_estimates: vx_array,","highlight_start":5,"highlight_end":25}],"label":null,"suggested_replacement":"_new_points_estimates","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `new_points_estimates`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:5929:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m5929\u001b[0m \u001b[1m\u001b[94m|\u001b[0m new_points_estimates: vx_array,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_new_points_estimates`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `new_points`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":178129,"byte_end":178139,"line_start":5930,"line_end":5930,"column_start":5,"column_end":15,"is_primary":true,"text":[{"text":" new_points: vx_array,","highlight_start":5,"highlight_end":15}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":178129,"byte_end":178139,"line_start":5930,"line_end":5930,"column_start":5,"column_end":15,"is_primary":true,"text":[{"text":" new_points: vx_array,","highlight_start":5,"highlight_end":15}],"label":null,"suggested_replacement":"_new_points","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `new_points`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:5930:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m5930\u001b[0m \u001b[1m\u001b[94m|\u001b[0m new_points: vx_array,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_new_points`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `termination`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":178155,"byte_end":178166,"line_start":5931,"line_end":5931,"column_start":5,"column_end":16,"is_primary":true,"text":[{"text":" termination: vx_enum,","highlight_start":5,"highlight_end":16}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":178155,"byte_end":178166,"line_start":5931,"line_end":5931,"column_start":5,"column_end":16,"is_primary":true,"text":[{"text":" termination: vx_enum,","highlight_start":5,"highlight_end":16}],"label":null,"suggested_replacement":"_termination","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `termination`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:5931:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m5931\u001b[0m \u001b[1m\u001b[94m|\u001b[0m termination: vx_enum,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_termination`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `epsilon`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":178181,"byte_end":178188,"line_start":5932,"line_end":5932,"column_start":5,"column_end":12,"is_primary":true,"text":[{"text":" epsilon: vx_float32,","highlight_start":5,"highlight_end":12}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":178181,"byte_end":178188,"line_start":5932,"line_end":5932,"column_start":5,"column_end":12,"is_primary":true,"text":[{"text":" epsilon: vx_float32,","highlight_start":5,"highlight_end":12}],"label":null,"suggested_replacement":"_epsilon","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `epsilon`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:5932:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m5932\u001b[0m \u001b[1m\u001b[94m|\u001b[0m epsilon: vx_float32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_epsilon`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `num_iterations`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":178206,"byte_end":178220,"line_start":5933,"line_end":5933,"column_start":5,"column_end":19,"is_primary":true,"text":[{"text":" num_iterations: vx_uint32,","highlight_start":5,"highlight_end":19}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":178206,"byte_end":178220,"line_start":5933,"line_end":5933,"column_start":5,"column_end":19,"is_primary":true,"text":[{"text":" num_iterations: vx_uint32,","highlight_start":5,"highlight_end":19}],"label":null,"suggested_replacement":"_num_iterations","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `num_iterations`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:5933:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m5933\u001b[0m \u001b[1m\u001b[94m|\u001b[0m num_iterations: vx_uint32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_num_iterations`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `use_initial_estimate`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":178237,"byte_end":178257,"line_start":5934,"line_end":5934,"column_start":5,"column_end":25,"is_primary":true,"text":[{"text":" use_initial_estimate: vx_bool,","highlight_start":5,"highlight_end":25}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":178237,"byte_end":178257,"line_start":5934,"line_end":5934,"column_start":5,"column_end":25,"is_primary":true,"text":[{"text":" use_initial_estimate: vx_bool,","highlight_start":5,"highlight_end":25}],"label":null,"suggested_replacement":"_use_initial_estimate","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `use_initial_estimate`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:5934:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m5934\u001b[0m \u001b[1m\u001b[94m|\u001b[0m use_initial_estimate: vx_bool,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_use_initial_estimate`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `window_dimension`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":178272,"byte_end":178288,"line_start":5935,"line_end":5935,"column_start":5,"column_end":21,"is_primary":true,"text":[{"text":" window_dimension: vx_size,","highlight_start":5,"highlight_end":21}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":178272,"byte_end":178288,"line_start":5935,"line_end":5935,"column_start":5,"column_end":21,"is_primary":true,"text":[{"text":" window_dimension: vx_size,","highlight_start":5,"highlight_end":21}],"label":null,"suggested_replacement":"_window_dimension","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `window_dimension`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:5935:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m5935\u001b[0m \u001b[1m\u001b[94m|\u001b[0m window_dimension: vx_size,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_window_dimension`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `usage`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":181514,"byte_end":181519,"line_start":6027,"line_end":6027,"column_start":88,"column_end":93,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxMapLUT(lut: vx_lut, map_id: *mut vx_map_id, ptr: *mut *mut c_void, usage: vx_enum, mem_type: vx_enum, copy_enable: vx_bool) -> vx_status {","highlight_start":88,"highlight_end":93}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":181514,"byte_end":181519,"line_start":6027,"line_end":6027,"column_start":88,"column_end":93,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxMapLUT(lut: vx_lut, map_id: *mut vx_map_id, ptr: *mut *mut c_void, usage: vx_enum, mem_type: vx_enum, copy_enable: vx_bool) -> vx_status {","highlight_start":88,"highlight_end":93}],"label":null,"suggested_replacement":"_usage","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `usage`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:6027:88\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m6027\u001b[0m \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m...\u001b[0md, ptr: *mut *mut c_void, usage: vx_enum, mem_type: vx_enum, copy_enable: vx_bool) -> vx_status {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_usage`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `copy_enable`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":181549,"byte_end":181560,"line_start":6027,"line_end":6027,"column_start":123,"column_end":134,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxMapLUT(lut: vx_lut, map_id: *mut vx_map_id, ptr: *mut *mut c_void, usage: vx_enum, mem_type: vx_enum, copy_enable: vx_bool) -> vx_status {","highlight_start":123,"highlight_end":134}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":181549,"byte_end":181560,"line_start":6027,"line_end":6027,"column_start":123,"column_end":134,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxMapLUT(lut: vx_lut, map_id: *mut vx_map_id, ptr: *mut *mut c_void, usage: vx_enum, mem_type: vx_enum, copy_enable: vx_bool) -> vx_status {","highlight_start":123,"highlight_end":134}],"label":null,"suggested_replacement":"_copy_enable","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `copy_enable`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:6027:123\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m6027\u001b[0m \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m...\u001b[0m mem_type: vx_enum, copy_enable: vx_bool) -> vx_status {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_copy_enable`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `map_id`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":181926,"byte_end":181932,"line_start":6042,"line_end":6042,"column_start":43,"column_end":49,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxUnmapLUT(lut: vx_lut, map_id: vx_map_id) -> vx_status {","highlight_start":43,"highlight_end":49}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":181926,"byte_end":181932,"line_start":6042,"line_end":6042,"column_start":43,"column_end":49,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxUnmapLUT(lut: vx_lut, map_id: vx_map_id) -> vx_status {","highlight_start":43,"highlight_end":49}],"label":null,"suggested_replacement":"_map_id","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `map_id`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:6042:43\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m6042\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub extern \"C\" fn vxUnmapLUT(lut: vx_lut, map_id: vx_map_id) -> vx_status {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_map_id`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `pattern`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":183101,"byte_end":183108,"line_start":6079,"line_end":6079,"column_start":75,"column_end":82,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxCreateMatrixFromPatternAndOrigin(context: vx_context, pattern: vx_enum, origin_x: vx_size, origin_y: vx_size, rows: vx_size, cols: vx_size) -> vx_matrix {","highlight_start":75,"highlight_end":82}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":183101,"byte_end":183108,"line_start":6079,"line_end":6079,"column_start":75,"column_end":82,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxCreateMatrixFromPatternAndOrigin(context: vx_context, pattern: vx_enum, origin_x: vx_size, origin_y: vx_size, rows: vx_size, cols: vx_size) -> vx_matrix {","highlight_start":75,"highlight_end":82}],"label":null,"suggested_replacement":"_pattern","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `pattern`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:6079:75\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m6079\u001b[0m \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m...\u001b[0min(context: vx_context, pattern: vx_enum, origin_x: vx_size, origin_y: vx_size, rows: vx_size, cols: vx_size) -> vx_matrix {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_pattern`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `origin_x`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":183119,"byte_end":183127,"line_start":6079,"line_end":6079,"column_start":93,"column_end":101,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxCreateMatrixFromPatternAndOrigin(context: vx_context, pattern: vx_enum, origin_x: vx_size, origin_y: vx_size, rows: vx_size, cols: vx_size) -> vx_matrix {","highlight_start":93,"highlight_end":101}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":183119,"byte_end":183127,"line_start":6079,"line_end":6079,"column_start":93,"column_end":101,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxCreateMatrixFromPatternAndOrigin(context: vx_context, pattern: vx_enum, origin_x: vx_size, origin_y: vx_size, rows: vx_size, cols: vx_size) -> vx_matrix {","highlight_start":93,"highlight_end":101}],"label":null,"suggested_replacement":"_origin_x","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `origin_x`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:6079:93\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m6079\u001b[0m \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m...\u001b[0mext, pattern: vx_enum, origin_x: vx_size, origin_y: vx_size, rows: vx_size, cols: vx_size) -> vx_matrix {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_origin_x`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `origin_y`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":183138,"byte_end":183146,"line_start":6079,"line_end":6079,"column_start":112,"column_end":120,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxCreateMatrixFromPatternAndOrigin(context: vx_context, pattern: vx_enum, origin_x: vx_size, origin_y: vx_size, rows: vx_size, cols: vx_size) -> vx_matrix {","highlight_start":112,"highlight_end":120}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":183138,"byte_end":183146,"line_start":6079,"line_end":6079,"column_start":112,"column_end":120,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxCreateMatrixFromPatternAndOrigin(context: vx_context, pattern: vx_enum, origin_x: vx_size, origin_y: vx_size, rows: vx_size, cols: vx_size) -> vx_matrix {","highlight_start":112,"highlight_end":120}],"label":null,"suggested_replacement":"_origin_y","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `origin_y`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:6079:112\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m6079\u001b[0m \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m...\u001b[0mum, origin_x: vx_size, origin_y: vx_size, rows: vx_size, cols: vx_size) -> vx_matrix {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_origin_y`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `index`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":183862,"byte_end":183867,"line_start":6098,"line_end":6098,"column_start":63,"column_end":68,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxSetGraphParameterByIndex(graph: vx_graph, index: vx_uint32, param: vx_reference) -> vx_status {","highlight_start":63,"highlight_end":68}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":183862,"byte_end":183867,"line_start":6098,"line_end":6098,"column_start":63,"column_end":68,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxSetGraphParameterByIndex(graph: vx_graph, index: vx_uint32, param: vx_reference) -> vx_status {","highlight_start":63,"highlight_end":68}],"label":null,"suggested_replacement":"_index","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `index`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:6098:63\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m6098\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub extern \"C\" fn vxSetGraphParameterByIndex(graph: vx_graph, index: vx_uint32, param: vx_reference) -> vx_status {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_index`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `index`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":184190,"byte_end":184195,"line_start":6110,"line_end":6110,"column_start":63,"column_end":68,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxGetGraphParameterByIndex(graph: vx_graph, index: vx_uint32) -> vx_parameter {","highlight_start":63,"highlight_end":68}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":184190,"byte_end":184195,"line_start":6110,"line_end":6110,"column_start":63,"column_end":68,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxGetGraphParameterByIndex(graph: vx_graph, index: vx_uint32) -> vx_parameter {","highlight_start":63,"highlight_end":68}],"label":null,"suggested_replacement":"_index","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `index`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:6110:63\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m6110\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub extern \"C\" fn vxGetGraphParameterByIndex(graph: vx_graph, index: vx_uint32) -> vx_parameter {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_index`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `callback`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":185355,"byte_end":185363,"line_start":6152,"line_end":6152,"column_start":57,"column_end":65,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxRetrieveNodeCallback(node: vx_node, callback: *mut vx_nodecomplete_f, parameter: *mut *mut c_void) -> vx_status {","highlight_start":57,"highlight_end":65}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":185355,"byte_end":185363,"line_start":6152,"line_end":6152,"column_start":57,"column_end":65,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxRetrieveNodeCallback(node: vx_node, callback: *mut vx_nodecomplete_f, parameter: *mut *mut c_void) -> vx_status {","highlight_start":57,"highlight_end":65}],"label":null,"suggested_replacement":"_callback","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `callback`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:6152:57\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m6152\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub extern \"C\" fn vxRetrieveNodeCallback(node: vx_node, callback: *mut vx_nodecomplete_f, parameter: *mut *mut c_void) -> vx_status {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_callback`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `parameter`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":185389,"byte_end":185398,"line_start":6152,"line_end":6152,"column_start":91,"column_end":100,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxRetrieveNodeCallback(node: vx_node, callback: *mut vx_nodecomplete_f, parameter: *mut *mut c_void) -> vx_status {","highlight_start":91,"highlight_end":100}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":185389,"byte_end":185398,"line_start":6152,"line_end":6152,"column_start":91,"column_end":100,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxRetrieveNodeCallback(node: vx_node, callback: *mut vx_nodecomplete_f, parameter: *mut *mut c_void) -> vx_status {","highlight_start":91,"highlight_end":100}],"label":null,"suggested_replacement":"_parameter","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `parameter`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:6152:91\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m6152\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub extern \"C\" fn vxRetrieveNodeCallback(node: vx_node, callback: *mut vx_nodecomplete_f, parameter: *mut *mut c_void) -> vx_status {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_parameter`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unnecessary `unsafe` block","code":{"code":"unused_unsafe","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":185806,"byte_end":185812,"line_start":6165,"line_end":6165,"column_start":5,"column_end":11,"is_primary":true,"text":[{"text":" unsafe {","highlight_start":5,"highlight_end":11}],"label":"unnecessary `unsafe` block","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unnecessary `unsafe` block\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:6165:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m6165\u001b[0m \u001b[1m\u001b[94m|\u001b[0m unsafe {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m \u001b[1m\u001b[33munnecessary `unsafe` block\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `kernel_size`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":185660,"byte_end":185671,"line_start":6161,"line_end":6161,"column_start":95,"column_end":106,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxHalfScaleGaussianNode(graph: vx_graph, input: vx_image, output: vx_image, kernel_size: vx_size) -> vx_node {","highlight_start":95,"highlight_end":106}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":185660,"byte_end":185671,"line_start":6161,"line_end":6161,"column_start":95,"column_end":106,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxHalfScaleGaussianNode(graph: vx_graph, input: vx_image, output: vx_image, kernel_size: vx_size) -> vx_node {","highlight_start":95,"highlight_end":106}],"label":null,"suggested_replacement":"_kernel_size","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `kernel_size`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:6161:95\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m6161\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub extern \"C\" fn vxHalfScaleGaussianNode(graph: vx_graph, input: vx_image, output: vx_image, kernel_size: vx_size) -> vx_node {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_kernel_size`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `kernel_size`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":186180,"byte_end":186191,"line_start":6175,"line_end":6175,"column_start":96,"column_end":107,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxuHalfScaleGaussian(context: vx_context, input: vx_image, output: vx_image, kernel_size: vx_size) -> vx_status {","highlight_start":96,"highlight_end":107}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":186180,"byte_end":186191,"line_start":6175,"line_end":6175,"column_start":96,"column_end":107,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxuHalfScaleGaussian(context: vx_context, input: vx_image, output: vx_image, kernel_size: vx_size) -> vx_status {","highlight_start":96,"highlight_end":107}],"label":null,"suggested_replacement":"_kernel_size","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `kernel_size`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:6175:96\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m6175\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub extern \"C\" fn vxuHalfScaleGaussian(context: vx_context, input: vx_image, output: vx_image, kernel_size: vx_size) -> vx_status {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_kernel_size`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `map_id`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":186451,"byte_end":186457,"line_start":6184,"line_end":6184,"column_start":68,"column_end":74,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxMapDistribution(distribution: vx_distribution, map_id: *mut vx_map_id, ptr: *mut *mut c_void, usage: vx_enum, mem_type: vx_enum, copy_enable: vx_bool) -> vx_status {","highlight_start":68,"highlight_end":74}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":186451,"byte_end":186457,"line_start":6184,"line_end":6184,"column_start":68,"column_end":74,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxMapDistribution(distribution: vx_distribution, map_id: *mut vx_map_id, ptr: *mut *mut c_void, usage: vx_enum, mem_type: vx_enum, copy_enable: vx_bool) -> vx_status {","highlight_start":68,"highlight_end":74}],"label":null,"suggested_replacement":"_map_id","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `map_id`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:6184:68\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m6184\u001b[0m \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m...\u001b[0mbution: vx_distribution, map_id: *mut vx_map_id, ptr: *mut *mut c_void, usage: vx_enum, mem_type: vx_enum, copy_enable: vx_bool\u001b[1m\u001b[94m...\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_map_id`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `usage`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":186498,"byte_end":186503,"line_start":6184,"line_end":6184,"column_start":115,"column_end":120,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxMapDistribution(distribution: vx_distribution, map_id: *mut vx_map_id, ptr: *mut *mut c_void, usage: vx_enum, mem_type: vx_enum, copy_enable: vx_bool) -> vx_status {","highlight_start":115,"highlight_end":120}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":186498,"byte_end":186503,"line_start":6184,"line_end":6184,"column_start":115,"column_end":120,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxMapDistribution(distribution: vx_distribution, map_id: *mut vx_map_id, ptr: *mut *mut c_void, usage: vx_enum, mem_type: vx_enum, copy_enable: vx_bool) -> vx_status {","highlight_start":115,"highlight_end":120}],"label":null,"suggested_replacement":"_usage","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `usage`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:6184:115\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m6184\u001b[0m \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m...\u001b[0md, ptr: *mut *mut c_void, usage: vx_enum, mem_type: vx_enum, copy_enable: vx_bool) -> vx_status {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_usage`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `mem_type`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":186514,"byte_end":186522,"line_start":6184,"line_end":6184,"column_start":131,"column_end":139,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxMapDistribution(distribution: vx_distribution, map_id: *mut vx_map_id, ptr: *mut *mut c_void, usage: vx_enum, mem_type: vx_enum, copy_enable: vx_bool) -> vx_status {","highlight_start":131,"highlight_end":139}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":186514,"byte_end":186522,"line_start":6184,"line_end":6184,"column_start":131,"column_end":139,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxMapDistribution(distribution: vx_distribution, map_id: *mut vx_map_id, ptr: *mut *mut c_void, usage: vx_enum, mem_type: vx_enum, copy_enable: vx_bool) -> vx_status {","highlight_start":131,"highlight_end":139}],"label":null,"suggested_replacement":"_mem_type","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `mem_type`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:6184:131\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m6184\u001b[0m \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m...\u001b[0m_void, usage: vx_enum, mem_type: vx_enum, copy_enable: vx_bool) -> vx_status {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_mem_type`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `copy_enable`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":186533,"byte_end":186544,"line_start":6184,"line_end":6184,"column_start":150,"column_end":161,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxMapDistribution(distribution: vx_distribution, map_id: *mut vx_map_id, ptr: *mut *mut c_void, usage: vx_enum, mem_type: vx_enum, copy_enable: vx_bool) -> vx_status {","highlight_start":150,"highlight_end":161}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":186533,"byte_end":186544,"line_start":6184,"line_end":6184,"column_start":150,"column_end":161,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxMapDistribution(distribution: vx_distribution, map_id: *mut vx_map_id, ptr: *mut *mut c_void, usage: vx_enum, mem_type: vx_enum, copy_enable: vx_bool) -> vx_status {","highlight_start":150,"highlight_end":161}],"label":null,"suggested_replacement":"_copy_enable","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `copy_enable`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:6184:150\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m6184\u001b[0m \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m...\u001b[0m mem_type: vx_enum, copy_enable: vx_bool) -> vx_status {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_copy_enable`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `map_id`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":186854,"byte_end":186860,"line_start":6196,"line_end":6196,"column_start":70,"column_end":76,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxUnmapDistribution(distribution: vx_distribution, map_id: vx_map_id) -> vx_status {","highlight_start":70,"highlight_end":76}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":186854,"byte_end":186860,"line_start":6196,"line_end":6196,"column_start":70,"column_end":76,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxUnmapDistribution(distribution: vx_distribution, map_id: vx_map_id) -> vx_status {","highlight_start":70,"highlight_end":76}],"label":null,"suggested_replacement":"_map_id","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `map_id`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:6196:70\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m6196\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub extern \"C\" fn vxUnmapDistribution(distribution: vx_distribution, map_id: vx_map_id) -> vx_status {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_map_id`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `policy`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":187159,"byte_end":187165,"line_start":6207,"line_end":6207,"column_start":91,"column_end":97,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxuConvertDepth(context: vx_context, input: vx_image, output: vx_image, policy: vx_enum, shift: vx_int32) -> vx_status {","highlight_start":91,"highlight_end":97}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":187159,"byte_end":187165,"line_start":6207,"line_end":6207,"column_start":91,"column_end":97,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxuConvertDepth(context: vx_context, input: vx_image, output: vx_image, policy: vx_enum, shift: vx_int32) -> vx_status {","highlight_start":91,"highlight_end":97}],"label":null,"suggested_replacement":"_policy","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `policy`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:6207:91\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m6207\u001b[0m \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m...\u001b[0mimage, output: vx_image, policy: vx_enum, shift: vx_int32) -> vx_status {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_policy`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `shift`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":187176,"byte_end":187181,"line_start":6207,"line_end":6207,"column_start":108,"column_end":113,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxuConvertDepth(context: vx_context, input: vx_image, output: vx_image, policy: vx_enum, shift: vx_int32) -> vx_status {","highlight_start":108,"highlight_end":113}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":187176,"byte_end":187181,"line_start":6207,"line_end":6207,"column_start":108,"column_end":113,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxuConvertDepth(context: vx_context, input: vx_image, output: vx_image, policy: vx_enum, shift: vx_int32) -> vx_status {","highlight_start":108,"highlight_end":113}],"label":null,"suggested_replacement":"_shift","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `shift`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:6207:108\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m6207\u001b[0m \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m...\u001b[0mx_image, policy: vx_enum, shift: vx_int32) -> vx_status {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_shift`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unnecessary `unsafe` block","code":{"code":"unused_unsafe","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":187595,"byte_end":187601,"line_start":6220,"line_end":6220,"column_start":5,"column_end":11,"is_primary":true,"text":[{"text":" unsafe {","highlight_start":5,"highlight_end":11}],"label":"unnecessary `unsafe` block","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unnecessary `unsafe` block\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:6220:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m6220\u001b[0m \u001b[1m\u001b[94m|\u001b[0m unsafe {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m \u001b[1m\u001b[33munnecessary `unsafe` block\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unnecessary `unsafe` block","code":{"code":"unused_unsafe","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":188420,"byte_end":188426,"line_start":6243,"line_end":6243,"column_start":5,"column_end":11,"is_primary":true,"text":[{"text":" unsafe {","highlight_start":5,"highlight_end":11}],"label":"unnecessary `unsafe` block","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unnecessary `unsafe` block\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:6243:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m6243\u001b[0m \u001b[1m\u001b[94m|\u001b[0m unsafe {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m \u001b[1m\u001b[33munnecessary `unsafe` block\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `strength_thresh`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":188216,"byte_end":188231,"line_start":6239,"line_end":6239,"column_start":71,"column_end":86,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxFastCornersNode(graph: vx_graph, input: vx_image, strength_thresh: vx_float32, nonmax_suppression: vx_bool, num_corners: vx_array, corners: vx_array) -> vx_node {","highlight_start":71,"highlight_end":86}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":188216,"byte_end":188231,"line_start":6239,"line_end":6239,"column_start":71,"column_end":86,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxFastCornersNode(graph: vx_graph, input: vx_image, strength_thresh: vx_float32, nonmax_suppression: vx_bool, num_corners: vx_array, corners: vx_array) -> vx_node {","highlight_start":71,"highlight_end":86}],"label":null,"suggested_replacement":"_strength_thresh","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `strength_thresh`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:6239:71\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m6239\u001b[0m \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m...\u001b[0mnput: vx_image, strength_thresh: vx_float32, nonmax_suppression: vx_bool, num_corners: vx_array, corners: vx_array) -> vx_node {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_strength_thresh`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `nonmax_suppression`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":188245,"byte_end":188263,"line_start":6239,"line_end":6239,"column_start":100,"column_end":118,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxFastCornersNode(graph: vx_graph, input: vx_image, strength_thresh: vx_float32, nonmax_suppression: vx_bool, num_corners: vx_array, corners: vx_array) -> vx_node {","highlight_start":100,"highlight_end":118}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":188245,"byte_end":188263,"line_start":6239,"line_end":6239,"column_start":100,"column_end":118,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxFastCornersNode(graph: vx_graph, input: vx_image, strength_thresh: vx_float32, nonmax_suppression: vx_bool, num_corners: vx_array, corners: vx_array) -> vx_node {","highlight_start":100,"highlight_end":118}],"label":null,"suggested_replacement":"_nonmax_suppression","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `nonmax_suppression`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:6239:100\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m6239\u001b[0m \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m...\u001b[0m vx_float32, nonmax_suppression: vx_bool, num_corners: vx_array, corners: vx_array) -> vx_node {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_nonmax_suppression`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `num_corners`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":188274,"byte_end":188285,"line_start":6239,"line_end":6239,"column_start":129,"column_end":140,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxFastCornersNode(graph: vx_graph, input: vx_image, strength_thresh: vx_float32, nonmax_suppression: vx_bool, num_corners: vx_array, corners: vx_array) -> vx_node {","highlight_start":129,"highlight_end":140}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":188274,"byte_end":188285,"line_start":6239,"line_end":6239,"column_start":129,"column_end":140,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxFastCornersNode(graph: vx_graph, input: vx_image, strength_thresh: vx_float32, nonmax_suppression: vx_bool, num_corners: vx_array, corners: vx_array) -> vx_node {","highlight_start":129,"highlight_end":140}],"label":null,"suggested_replacement":"_num_corners","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `num_corners`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:6239:129\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m6239\u001b[0m \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m...\u001b[0mppression: vx_bool, num_corners: vx_array, corners: vx_array) -> vx_node {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_num_corners`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `corners`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":188297,"byte_end":188304,"line_start":6239,"line_end":6239,"column_start":152,"column_end":159,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxFastCornersNode(graph: vx_graph, input: vx_image, strength_thresh: vx_float32, nonmax_suppression: vx_bool, num_corners: vx_array, corners: vx_array) -> vx_node {","highlight_start":152,"highlight_end":159}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":188297,"byte_end":188304,"line_start":6239,"line_end":6239,"column_start":152,"column_end":159,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxFastCornersNode(graph: vx_graph, input: vx_image, strength_thresh: vx_float32, nonmax_suppression: vx_bool, num_corners: vx_array, corners: vx_array) -> vx_node {","highlight_start":152,"highlight_end":159}],"label":null,"suggested_replacement":"_corners","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `corners`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:6239:152\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m6239\u001b[0m \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m...\u001b[0m num_corners: vx_array, corners: vx_array) -> vx_node {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_corners`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `strength_thresh`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":188699,"byte_end":188714,"line_start":6252,"line_end":6252,"column_start":72,"column_end":87,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxuFastCorners(context: vx_context, input: vx_image, strength_thresh: vx_float32, nonmax_suppression: vx_bool, num_corners: vx_array, corners: vx_array) -> vx_status {","highlight_start":72,"highlight_end":87}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":188699,"byte_end":188714,"line_start":6252,"line_end":6252,"column_start":72,"column_end":87,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxuFastCorners(context: vx_context, input: vx_image, strength_thresh: vx_float32, nonmax_suppression: vx_bool, num_corners: vx_array, corners: vx_array) -> vx_status {","highlight_start":72,"highlight_end":87}],"label":null,"suggested_replacement":"_strength_thresh","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `strength_thresh`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:6252:72\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m6252\u001b[0m \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m...\u001b[0mnput: vx_image, strength_thresh: vx_float32, nonmax_suppression: vx_bool, num_corners: vx_array, corners: vx_array) -> vx_status {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_strength_thresh`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `nonmax_suppression`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":188728,"byte_end":188746,"line_start":6252,"line_end":6252,"column_start":101,"column_end":119,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxuFastCorners(context: vx_context, input: vx_image, strength_thresh: vx_float32, nonmax_suppression: vx_bool, num_corners: vx_array, corners: vx_array) -> vx_status {","highlight_start":101,"highlight_end":119}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":188728,"byte_end":188746,"line_start":6252,"line_end":6252,"column_start":101,"column_end":119,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxuFastCorners(context: vx_context, input: vx_image, strength_thresh: vx_float32, nonmax_suppression: vx_bool, num_corners: vx_array, corners: vx_array) -> vx_status {","highlight_start":101,"highlight_end":119}],"label":null,"suggested_replacement":"_nonmax_suppression","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `nonmax_suppression`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:6252:101\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m6252\u001b[0m \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m...\u001b[0m vx_float32, nonmax_suppression: vx_bool, num_corners: vx_array, corners: vx_array) -> vx_status {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_nonmax_suppression`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `num_corners`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":188757,"byte_end":188768,"line_start":6252,"line_end":6252,"column_start":130,"column_end":141,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxuFastCorners(context: vx_context, input: vx_image, strength_thresh: vx_float32, nonmax_suppression: vx_bool, num_corners: vx_array, corners: vx_array) -> vx_status {","highlight_start":130,"highlight_end":141}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":188757,"byte_end":188768,"line_start":6252,"line_end":6252,"column_start":130,"column_end":141,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxuFastCorners(context: vx_context, input: vx_image, strength_thresh: vx_float32, nonmax_suppression: vx_bool, num_corners: vx_array, corners: vx_array) -> vx_status {","highlight_start":130,"highlight_end":141}],"label":null,"suggested_replacement":"_num_corners","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `num_corners`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:6252:130\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m6252\u001b[0m \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m...\u001b[0mppression: vx_bool, num_corners: vx_array, corners: vx_array) -> vx_status {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_num_corners`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `corners`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":188780,"byte_end":188787,"line_start":6252,"line_end":6252,"column_start":153,"column_end":160,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxuFastCorners(context: vx_context, input: vx_image, strength_thresh: vx_float32, nonmax_suppression: vx_bool, num_corners: vx_array, corners: vx_array) -> vx_status {","highlight_start":153,"highlight_end":160}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":188780,"byte_end":188787,"line_start":6252,"line_end":6252,"column_start":153,"column_end":160,"is_primary":true,"text":[{"text":"pub extern \"C\" fn vxuFastCorners(context: vx_context, input: vx_image, strength_thresh: vx_float32, nonmax_suppression: vx_bool, num_corners: vx_array, corners: vx_array) -> vx_status {","highlight_start":153,"highlight_end":160}],"label":null,"suggested_replacement":"_corners","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `corners`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:6252:153\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m6252\u001b[0m \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m...\u001b[0m num_corners: vx_array, corners: vx_array) -> vx_status {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_corners`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `context`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/vxu_impl.rs","byte_start":16883,"byte_end":16890,"line_start":470,"line_end":470,"column_start":5,"column_end":12,"is_primary":true,"text":[{"text":" context: vx_context,","highlight_start":5,"highlight_end":12}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/vxu_impl.rs","byte_start":16883,"byte_end":16890,"line_start":470,"line_end":470,"column_start":5,"column_end":12,"is_primary":true,"text":[{"text":" context: vx_context,","highlight_start":5,"highlight_end":12}],"label":null,"suggested_replacement":"_context","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `context`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/vxu_impl.rs:470:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m470\u001b[0m \u001b[1m\u001b[94m|\u001b[0m context: vx_context,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_context`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `half_h`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/vxu_impl.rs","byte_start":23999,"byte_end":24005,"line_start":634,"line_end":634,"column_start":25,"column_end":31,"is_primary":true,"text":[{"text":" let half_h = (height + 1) / 2;","highlight_start":25,"highlight_end":31}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/vxu_impl.rs","byte_start":23999,"byte_end":24005,"line_start":634,"line_end":634,"column_start":25,"column_end":31,"is_primary":true,"text":[{"text":" let half_h = (height + 1) / 2;","highlight_start":25,"highlight_end":31}],"label":null,"suggested_replacement":"_half_h","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `half_h`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/vxu_impl.rs:634:25\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m634\u001b[0m \u001b[1m\u001b[94m|\u001b[0m let half_h = (height + 1) / 2;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_half_h`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `half_h`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/vxu_impl.rs","byte_start":37276,"byte_end":37282,"line_start":907,"line_end":907,"column_start":25,"column_end":31,"is_primary":true,"text":[{"text":" let half_h = (height + 1) / 2;","highlight_start":25,"highlight_end":31}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/vxu_impl.rs","byte_start":37276,"byte_end":37282,"line_start":907,"line_end":907,"column_start":25,"column_end":31,"is_primary":true,"text":[{"text":" let half_h = (height + 1) / 2;","highlight_start":25,"highlight_end":31}],"label":null,"suggested_replacement":"_half_h","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `half_h`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/vxu_impl.rs:907:25\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m907\u001b[0m \u001b[1m\u001b[94m|\u001b[0m let half_h = (height + 1) / 2;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_half_h`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `half_h`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/vxu_impl.rs","byte_start":40415,"byte_end":40421,"line_start":971,"line_end":971,"column_start":25,"column_end":31,"is_primary":true,"text":[{"text":" let half_h = (height + 1) / 2;","highlight_start":25,"highlight_end":31}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/vxu_impl.rs","byte_start":40415,"byte_end":40421,"line_start":971,"line_end":971,"column_start":25,"column_end":31,"is_primary":true,"text":[{"text":" let half_h = (height + 1) / 2;","highlight_start":25,"highlight_end":31}],"label":null,"suggested_replacement":"_half_h","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `half_h`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/vxu_impl.rs:971:25\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m971\u001b[0m \u001b[1m\u001b[94m|\u001b[0m let half_h = (height + 1) / 2;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_half_h`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `half_h`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/vxu_impl.rs","byte_start":53958,"byte_end":53964,"line_start":1244,"line_end":1244,"column_start":25,"column_end":31,"is_primary":true,"text":[{"text":" let half_h = (height + 1) / 2;","highlight_start":25,"highlight_end":31}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/vxu_impl.rs","byte_start":53958,"byte_end":53964,"line_start":1244,"line_end":1244,"column_start":25,"column_end":31,"is_primary":true,"text":[{"text":" let half_h = (height + 1) / 2;","highlight_start":25,"highlight_end":31}],"label":null,"suggested_replacement":"_half_h","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `half_h`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/vxu_impl.rs:1244:25\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m1244\u001b[0m \u001b[1m\u001b[94m|\u001b[0m let half_h = (height + 1) / 2;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_half_h`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"variable does not need to be mutable","code":{"code":"unused_mut","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/vxu_impl.rs","byte_start":56779,"byte_end":56791,"line_start":1318,"line_end":1318,"column_start":13,"column_end":25,"is_primary":true,"text":[{"text":" let mut dst_data = dst.data_mut();","highlight_start":13,"highlight_end":25}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"remove this `mut`","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/vxu_impl.rs","byte_start":56779,"byte_end":56783,"line_start":1318,"line_end":1318,"column_start":13,"column_end":17,"is_primary":true,"text":[{"text":" let mut dst_data = dst.data_mut();","highlight_start":13,"highlight_end":17}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: variable does not need to be mutable\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/vxu_impl.rs:1318:13\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m1318\u001b[0m \u001b[1m\u001b[94m|\u001b[0m let mut dst_data = dst.data_mut();\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m----\u001b[0m\u001b[1m\u001b[33m^^^^^^^^\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94mhelp: remove this `mut`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"variable does not need to be mutable","code":{"code":"unused_mut","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/vxu_impl.rs","byte_start":58743,"byte_end":58755,"line_start":1376,"line_end":1376,"column_start":13,"column_end":25,"is_primary":true,"text":[{"text":" let mut dst_data = dst.data_mut();","highlight_start":13,"highlight_end":25}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"remove this `mut`","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/vxu_impl.rs","byte_start":58743,"byte_end":58747,"line_start":1376,"line_end":1376,"column_start":13,"column_end":17,"is_primary":true,"text":[{"text":" let mut dst_data = dst.data_mut();","highlight_start":13,"highlight_end":17}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: variable does not need to be mutable\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/vxu_impl.rs:1376:13\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m1376\u001b[0m \u001b[1m\u001b[94m|\u001b[0m let mut dst_data = dst.data_mut();\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m----\u001b[0m\u001b[1m\u001b[33m^^^^^^^^\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94mhelp: remove this `mut`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unnecessary `unsafe` block","code":{"code":"unused_unsafe","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/vxu_impl.rs","byte_start":66429,"byte_end":66435,"line_start":1635,"line_end":1635,"column_start":37,"column_end":43,"is_primary":true,"text":[{"text":" let const_val = unsafe { b.constant_value.U8 };","highlight_start":37,"highlight_end":43}],"label":"unnecessary `unsafe` block","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/vxu_impl.rs","byte_start":65915,"byte_end":65921,"line_start":1620,"line_end":1620,"column_start":5,"column_end":11,"is_primary":false,"text":[{"text":" unsafe {","highlight_start":5,"highlight_end":11}],"label":"because it's nested under this `unsafe` block","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unnecessary `unsafe` block\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/vxu_impl.rs:1635:37\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m1620\u001b[0m \u001b[1m\u001b[94m|\u001b[0m unsafe {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m------\u001b[0m \u001b[1m\u001b[94mbecause it's nested under this `unsafe` block\u001b[0m\n\u001b[1m\u001b[94m...\u001b[0m\n\u001b[1m\u001b[94m1635\u001b[0m \u001b[1m\u001b[94m|\u001b[0m let const_val = unsafe { b.constant_value.U8 };\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m \u001b[1m\u001b[33munnecessary `unsafe` block\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unnecessary `unsafe` block","code":{"code":"unused_unsafe","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/vxu_impl.rs","byte_start":67888,"byte_end":67894,"line_start":1685,"line_end":1685,"column_start":37,"column_end":43,"is_primary":true,"text":[{"text":" let const_val = unsafe { b.constant_value.U8 };","highlight_start":37,"highlight_end":43}],"label":"unnecessary `unsafe` block","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/vxu_impl.rs","byte_start":67374,"byte_end":67380,"line_start":1670,"line_end":1670,"column_start":5,"column_end":11,"is_primary":false,"text":[{"text":" unsafe {","highlight_start":5,"highlight_end":11}],"label":"because it's nested under this `unsafe` block","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unnecessary `unsafe` block\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/vxu_impl.rs:1685:37\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m1670\u001b[0m \u001b[1m\u001b[94m|\u001b[0m unsafe {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m------\u001b[0m \u001b[1m\u001b[94mbecause it's nested under this `unsafe` block\u001b[0m\n\u001b[1m\u001b[94m...\u001b[0m\n\u001b[1m\u001b[94m1685\u001b[0m \u001b[1m\u001b[94m|\u001b[0m let const_val = unsafe { b.constant_value.U8 };\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m \u001b[1m\u001b[33munnecessary `unsafe` block\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"variable does not need to be mutable","code":{"code":"unused_mut","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/vxu_impl.rs","byte_start":133191,"byte_end":133203,"line_start":3822,"line_end":3822,"column_start":9,"column_end":21,"is_primary":true,"text":[{"text":" let mut dst_data = dst.data_mut();","highlight_start":9,"highlight_end":21}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"remove this `mut`","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/vxu_impl.rs","byte_start":133191,"byte_end":133195,"line_start":3822,"line_end":3822,"column_start":9,"column_end":13,"is_primary":true,"text":[{"text":" let mut dst_data = dst.data_mut();","highlight_start":9,"highlight_end":13}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: variable does not need to be mutable\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/vxu_impl.rs:3822:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m3822\u001b[0m \u001b[1m\u001b[94m|\u001b[0m let mut dst_data = dst.data_mut();\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m----\u001b[0m\u001b[1m\u001b[33m^^^^^^^^\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94mhelp: remove this `mut`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `dx2`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/vxu_impl.rs","byte_start":132273,"byte_end":132276,"line_start":3796,"line_end":3796,"column_start":28,"column_end":31,"is_primary":true,"text":[{"text":" let (dx1, dy1, dx2, dy2) = match angle {","highlight_start":28,"highlight_end":31}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/vxu_impl.rs","byte_start":132273,"byte_end":132276,"line_start":3796,"line_end":3796,"column_start":28,"column_end":31,"is_primary":true,"text":[{"text":" let (dx1, dy1, dx2, dy2) = match angle {","highlight_start":28,"highlight_end":31}],"label":null,"suggested_replacement":"_dx2","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `dx2`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/vxu_impl.rs:3796:28\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m3796\u001b[0m \u001b[1m\u001b[94m|\u001b[0m let (dx1, dy1, dx2, dy2) = match angle {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_dx2`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"variable does not need to be mutable","code":{"code":"unused_mut","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/vxu_impl.rs","byte_start":146338,"byte_end":146350,"line_start":4229,"line_end":4229,"column_start":13,"column_end":25,"is_primary":true,"text":[{"text":" let mut dst_data = dst.data_mut();","highlight_start":13,"highlight_end":25}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"remove this `mut`","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/vxu_impl.rs","byte_start":146338,"byte_end":146342,"line_start":4229,"line_end":4229,"column_start":13,"column_end":17,"is_primary":true,"text":[{"text":" let mut dst_data = dst.data_mut();","highlight_start":13,"highlight_end":17}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: variable does not need to be mutable\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/vxu_impl.rs:4229:13\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m4229\u001b[0m \u001b[1m\u001b[94m|\u001b[0m let mut dst_data = dst.data_mut();\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m----\u001b[0m\u001b[1m\u001b[33m^^^^^^^^\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94mhelp: remove this `mut`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"variable does not need to be mutable","code":{"code":"unused_mut","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/vxu_impl.rs","byte_start":147609,"byte_end":147621,"line_start":4275,"line_end":4275,"column_start":13,"column_end":25,"is_primary":true,"text":[{"text":" let mut dst_data = dst.data_mut();","highlight_start":13,"highlight_end":25}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"remove this `mut`","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/vxu_impl.rs","byte_start":147609,"byte_end":147613,"line_start":4275,"line_end":4275,"column_start":13,"column_end":17,"is_primary":true,"text":[{"text":" let mut dst_data = dst.data_mut();","highlight_start":13,"highlight_end":17}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: variable does not need to be mutable\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/vxu_impl.rs:4275:13\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m4275\u001b[0m \u001b[1m\u001b[94m|\u001b[0m let mut dst_data = dst.data_mut();\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m----\u001b[0m\u001b[1m\u001b[33m^^^^^^^^\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94mhelp: remove this `mut`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"variable does not need to be mutable","code":{"code":"unused_mut","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/vxu_impl.rs","byte_start":148882,"byte_end":148894,"line_start":4321,"line_end":4321,"column_start":13,"column_end":25,"is_primary":true,"text":[{"text":" let mut dst_data = dst.data_mut();","highlight_start":13,"highlight_end":25}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"remove this `mut`","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/vxu_impl.rs","byte_start":148882,"byte_end":148886,"line_start":4321,"line_end":4321,"column_start":13,"column_end":17,"is_primary":true,"text":[{"text":" let mut dst_data = dst.data_mut();","highlight_start":13,"highlight_end":17}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: variable does not need to be mutable\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/vxu_impl.rs:4321:13\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m4321\u001b[0m \u001b[1m\u001b[94m|\u001b[0m let mut dst_data = dst.data_mut();\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m----\u001b[0m\u001b[1m\u001b[33m^^^^^^^^\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94mhelp: remove this `mut`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"variable does not need to be mutable","code":{"code":"unused_mut","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/vxu_impl.rs","byte_start":149978,"byte_end":149990,"line_start":4361,"line_end":4361,"column_start":13,"column_end":25,"is_primary":true,"text":[{"text":" let mut dst_data = dst.data_mut();","highlight_start":13,"highlight_end":25}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"remove this `mut`","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/vxu_impl.rs","byte_start":149978,"byte_end":149982,"line_start":4361,"line_end":4361,"column_start":13,"column_end":17,"is_primary":true,"text":[{"text":" let mut dst_data = dst.data_mut();","highlight_start":13,"highlight_end":17}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: variable does not need to be mutable\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/vxu_impl.rs:4361:13\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m4361\u001b[0m \u001b[1m\u001b[94m|\u001b[0m let mut dst_data = dst.data_mut();\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m----\u001b[0m\u001b[1m\u001b[33m^^^^^^^^\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94mhelp: remove this `mut`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"fields `vendor_id`, `version`, and `implementation` are never read","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/context.rs","byte_start":218,"byte_end":225,"line_start":9,"line_end":9,"column_start":12,"column_end":19,"is_primary":false,"text":[{"text":"pub struct Context {","highlight_start":12,"highlight_end":19}],"label":"fields in this struct","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/context.rs","byte_start":282,"byte_end":291,"line_start":12,"line_end":12,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" vendor_id: u32,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/context.rs","byte_start":302,"byte_end":309,"line_start":13,"line_end":13,"column_start":5,"column_end":12,"is_primary":true,"text":[{"text":" version: (u32, u32),","highlight_start":5,"highlight_end":12}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/context.rs","byte_start":327,"byte_end":341,"line_start":14,"line_end":14,"column_start":5,"column_end":19,"is_primary":true,"text":[{"text":" implementation: String,","highlight_start":5,"highlight_end":19}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(dead_code)]` (part of `#[warn(unused)]`) on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: fields `vendor_id`, `version`, and `implementation` are never read\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/context.rs:12:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m 9\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub struct Context {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m-------\u001b[0m \u001b[1m\u001b[94mfields in this struct\u001b[0m\n\u001b[1m\u001b[94m...\u001b[0m\n\u001b[1m\u001b[94m12\u001b[0m \u001b[1m\u001b[94m|\u001b[0m vendor_id: u32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m\n\u001b[1m\u001b[94m13\u001b[0m \u001b[1m\u001b[94m|\u001b[0m version: (u32, u32),\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^\u001b[0m\n\u001b[1m\u001b[94m14\u001b[0m \u001b[1m\u001b[94m|\u001b[0m implementation: String,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m= \u001b[0m\u001b[1mnote\u001b[0m: `#[warn(dead_code)]` (part of `#[warn(unused)]`) on by default\n\n"} +{"$message_type":"diagnostic","message":"fields `data` and `context` are never read","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api_data.rs","byte_start":2255,"byte_end":2268,"line_start":63,"line_end":63,"column_start":12,"column_end":25,"is_primary":false,"text":[{"text":"pub struct VxCScalarData {","highlight_start":12,"highlight_end":25}],"label":"fields in this struct","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/c_api_data.rs","byte_start":2299,"byte_end":2303,"line_start":65,"line_end":65,"column_start":5,"column_end":9,"is_primary":true,"text":[{"text":" data: Vec,","highlight_start":5,"highlight_end":9}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/c_api_data.rs","byte_start":2318,"byte_end":2325,"line_start":66,"line_end":66,"column_start":5,"column_end":12,"is_primary":true,"text":[{"text":" context: vx_context,","highlight_start":5,"highlight_end":12}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: fields `data` and `context` are never read\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api_data.rs:65:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m63\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub struct VxCScalarData {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m-------------\u001b[0m \u001b[1m\u001b[94mfields in this struct\u001b[0m\n\u001b[1m\u001b[94m64\u001b[0m \u001b[1m\u001b[94m|\u001b[0m data_type: vx_enum,\n\u001b[1m\u001b[94m65\u001b[0m \u001b[1m\u001b[94m|\u001b[0m data: Vec,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^\u001b[0m\n\u001b[1m\u001b[94m66\u001b[0m \u001b[1m\u001b[94m|\u001b[0m context: vx_context,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"fields `scale` and `context` are never read","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api_data.rs","byte_start":5961,"byte_end":5979,"line_start":197,"line_end":197,"column_start":12,"column_end":30,"is_primary":false,"text":[{"text":"pub struct VxCConvolutionData {","highlight_start":12,"highlight_end":30}],"label":"fields in this struct","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/c_api_data.rs","byte_start":6027,"byte_end":6032,"line_start":200,"line_end":200,"column_start":5,"column_end":10,"is_primary":true,"text":[{"text":" scale: vx_uint32,","highlight_start":5,"highlight_end":10}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/c_api_data.rs","byte_start":6077,"byte_end":6084,"line_start":202,"line_end":202,"column_start":5,"column_end":12,"is_primary":true,"text":[{"text":" context: vx_context,","highlight_start":5,"highlight_end":12}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: fields `scale` and `context` are never read\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api_data.rs:200:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m197\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub struct VxCConvolutionData {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m------------------\u001b[0m \u001b[1m\u001b[94mfields in this struct\u001b[0m\n\u001b[1m\u001b[94m...\u001b[0m\n\u001b[1m\u001b[94m200\u001b[0m \u001b[1m\u001b[94m|\u001b[0m scale: vx_uint32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^\u001b[0m\n\u001b[1m\u001b[94m201\u001b[0m \u001b[1m\u001b[94m|\u001b[0m data: RwLock>,\n\u001b[1m\u001b[94m202\u001b[0m \u001b[1m\u001b[94m|\u001b[0m context: vx_context,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"fields `offset` and `context` are never read","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api_data.rs","byte_start":15316,"byte_end":15326,"line_start":530,"line_end":530,"column_start":12,"column_end":22,"is_primary":false,"text":[{"text":"pub struct VxCLUTData {","highlight_start":12,"highlight_end":22}],"label":"fields in this struct","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/c_api_data.rs","byte_start":15377,"byte_end":15383,"line_start":533,"line_end":533,"column_start":5,"column_end":11,"is_primary":true,"text":[{"text":" offset: vx_int32,","highlight_start":5,"highlight_end":11}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/c_api_data.rs","byte_start":15426,"byte_end":15433,"line_start":535,"line_end":535,"column_start":5,"column_end":12,"is_primary":true,"text":[{"text":" context: vx_context,","highlight_start":5,"highlight_end":12}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: fields `offset` and `context` are never read\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api_data.rs:533:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m530\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub struct VxCLUTData {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m----------\u001b[0m \u001b[1m\u001b[94mfields in this struct\u001b[0m\n\u001b[1m\u001b[94m...\u001b[0m\n\u001b[1m\u001b[94m533\u001b[0m \u001b[1m\u001b[94m|\u001b[0m offset: vx_int32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m\n\u001b[1m\u001b[94m534\u001b[0m \u001b[1m\u001b[94m|\u001b[0m data: RwLock>,\n\u001b[1m\u001b[94m535\u001b[0m \u001b[1m\u001b[94m|\u001b[0m context: vx_context,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"field `context` is never read","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api_data.rs","byte_start":19382,"byte_end":19398,"line_start":684,"line_end":684,"column_start":12,"column_end":28,"is_primary":false,"text":[{"text":"pub struct VxCThresholdData {","highlight_start":12,"highlight_end":28}],"label":"field in this struct","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/c_api_data.rs","byte_start":19670,"byte_end":19677,"line_start":694,"line_end":694,"column_start":5,"column_end":12,"is_primary":true,"text":[{"text":" context: vx_context,","highlight_start":5,"highlight_end":12}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: field `context` is never read\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api_data.rs:694:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m684\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub struct VxCThresholdData {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m----------------\u001b[0m \u001b[1m\u001b[94mfield in this struct\u001b[0m\n\u001b[1m\u001b[94m...\u001b[0m\n\u001b[1m\u001b[94m694\u001b[0m \u001b[1m\u001b[94m|\u001b[0m context: vx_context,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"fields `width` and `height` are never read","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api_data.rs","byte_start":31730,"byte_end":31745,"line_start":1105,"line_end":1105,"column_start":12,"column_end":27,"is_primary":false,"text":[{"text":"pub struct VxCPyramidLevel {","highlight_start":12,"highlight_end":27}],"label":"fields in this struct","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/c_api_data.rs","byte_start":31752,"byte_end":31757,"line_start":1106,"line_end":1106,"column_start":5,"column_end":10,"is_primary":true,"text":[{"text":" width: vx_uint32,","highlight_start":5,"highlight_end":10}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/c_api_data.rs","byte_start":31774,"byte_end":31780,"line_start":1107,"line_end":1107,"column_start":5,"column_end":11,"is_primary":true,"text":[{"text":" height: vx_uint32,","highlight_start":5,"highlight_end":11}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: fields `width` and `height` are never read\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api_data.rs:1106:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m1105\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub struct VxCPyramidLevel {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m---------------\u001b[0m \u001b[1m\u001b[94mfields in this struct\u001b[0m\n\u001b[1m\u001b[94m1106\u001b[0m \u001b[1m\u001b[94m|\u001b[0m width: vx_uint32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^\u001b[0m\n\u001b[1m\u001b[94m1107\u001b[0m \u001b[1m\u001b[94m|\u001b[0m height: vx_uint32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"fields `scale`, `format`, and `context` are never read","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api_data.rs","byte_start":31858,"byte_end":31872,"line_start":1112,"line_end":1112,"column_start":12,"column_end":26,"is_primary":false,"text":[{"text":"pub struct VxCPyramidData {","highlight_start":12,"highlight_end":26}],"label":"fields in this struct","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/c_api_data.rs","byte_start":31900,"byte_end":31905,"line_start":1114,"line_end":1114,"column_start":5,"column_end":10,"is_primary":true,"text":[{"text":" scale: vx_float32,","highlight_start":5,"highlight_end":10}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/c_api_data.rs","byte_start":31923,"byte_end":31929,"line_start":1115,"line_end":1115,"column_start":5,"column_end":11,"is_primary":true,"text":[{"text":" format: vx_df_image,","highlight_start":5,"highlight_end":11}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/c_api_data.rs","byte_start":31982,"byte_end":31989,"line_start":1117,"line_end":1117,"column_start":5,"column_end":12,"is_primary":true,"text":[{"text":" context: vx_context,","highlight_start":5,"highlight_end":12}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: fields `scale`, `format`, and `context` are never read\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api_data.rs:1114:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m1112\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub struct VxCPyramidData {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m--------------\u001b[0m \u001b[1m\u001b[94mfields in this struct\u001b[0m\n\u001b[1m\u001b[94m1113\u001b[0m \u001b[1m\u001b[94m|\u001b[0m levels: vx_size,\n\u001b[1m\u001b[94m1114\u001b[0m \u001b[1m\u001b[94m|\u001b[0m scale: vx_float32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^\u001b[0m\n\u001b[1m\u001b[94m1115\u001b[0m \u001b[1m\u001b[94m|\u001b[0m format: vx_df_image,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m\n\u001b[1m\u001b[94m1116\u001b[0m \u001b[1m\u001b[94m|\u001b[0m images: Vec,\n\u001b[1m\u001b[94m1117\u001b[0m \u001b[1m\u001b[94m|\u001b[0m context: vx_context,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"fields `item_type`, `capacity`, `items`, and `ref_count` are never read","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":9135,"byte_end":9143,"line_start":261,"line_end":261,"column_start":12,"column_end":20,"is_primary":false,"text":[{"text":"pub struct VxCArray {","highlight_start":12,"highlight_end":20}],"label":"fields in this struct","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":9150,"byte_end":9159,"line_start":262,"line_end":262,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" item_type: vx_enum,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":9174,"byte_end":9182,"line_start":263,"line_end":263,"column_start":5,"column_end":13,"is_primary":true,"text":[{"text":" capacity: usize,","highlight_start":5,"highlight_end":13}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":9195,"byte_end":9200,"line_start":264,"line_end":264,"column_start":5,"column_end":10,"is_primary":true,"text":[{"text":" items: RwLock>,","highlight_start":5,"highlight_end":10}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":9223,"byte_end":9232,"line_start":265,"line_end":265,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" ref_count: AtomicUsize,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: fields `item_type`, `capacity`, `items`, and `ref_count` are never read\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:262:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m261\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub struct VxCArray {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m--------\u001b[0m \u001b[1m\u001b[94mfields in this struct\u001b[0m\n\u001b[1m\u001b[94m262\u001b[0m \u001b[1m\u001b[94m|\u001b[0m item_type: vx_enum,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m\n\u001b[1m\u001b[94m263\u001b[0m \u001b[1m\u001b[94m|\u001b[0m capacity: usize,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^\u001b[0m\n\u001b[1m\u001b[94m264\u001b[0m \u001b[1m\u001b[94m|\u001b[0m items: RwLock>,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^\u001b[0m\n\u001b[1m\u001b[94m265\u001b[0m \u001b[1m\u001b[94m|\u001b[0m ref_count: AtomicUsize,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"fields `rows`, `cols`, `data_type`, `data`, and `ref_count` are never read","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":9277,"byte_end":9286,"line_start":269,"line_end":269,"column_start":12,"column_end":21,"is_primary":false,"text":[{"text":"pub struct VxCMatrix {","highlight_start":12,"highlight_end":21}],"label":"fields in this struct","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":9293,"byte_end":9297,"line_start":270,"line_end":270,"column_start":5,"column_end":9,"is_primary":true,"text":[{"text":" rows: u32,","highlight_start":5,"highlight_end":9}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":9308,"byte_end":9312,"line_start":271,"line_end":271,"column_start":5,"column_end":9,"is_primary":true,"text":[{"text":" cols: u32,","highlight_start":5,"highlight_end":9}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":9323,"byte_end":9332,"line_start":272,"line_end":272,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" data_type: vx_enum,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":9347,"byte_end":9351,"line_start":273,"line_end":273,"column_start":5,"column_end":9,"is_primary":true,"text":[{"text":" data: RwLock>,","highlight_start":5,"highlight_end":9}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":9375,"byte_end":9384,"line_start":274,"line_end":274,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" ref_count: AtomicUsize,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: fields `rows`, `cols`, `data_type`, `data`, and `ref_count` are never read\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:270:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m269\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub struct VxCMatrix {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m---------\u001b[0m \u001b[1m\u001b[94mfields in this struct\u001b[0m\n\u001b[1m\u001b[94m270\u001b[0m \u001b[1m\u001b[94m|\u001b[0m rows: u32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^\u001b[0m\n\u001b[1m\u001b[94m271\u001b[0m \u001b[1m\u001b[94m|\u001b[0m cols: u32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^\u001b[0m\n\u001b[1m\u001b[94m272\u001b[0m \u001b[1m\u001b[94m|\u001b[0m data_type: vx_enum,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m\n\u001b[1m\u001b[94m273\u001b[0m \u001b[1m\u001b[94m|\u001b[0m data: RwLock>,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^\u001b[0m\n\u001b[1m\u001b[94m274\u001b[0m \u001b[1m\u001b[94m|\u001b[0m ref_count: AtomicUsize,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"fields `rows`, `cols`, `scale`, `data`, and `ref_count` are never read","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":9434,"byte_end":9448,"line_start":278,"line_end":278,"column_start":12,"column_end":26,"is_primary":false,"text":[{"text":"pub struct VxCConvolution {","highlight_start":12,"highlight_end":26}],"label":"fields in this struct","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":9455,"byte_end":9459,"line_start":279,"line_end":279,"column_start":5,"column_end":9,"is_primary":true,"text":[{"text":" rows: u32,","highlight_start":5,"highlight_end":9}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":9470,"byte_end":9474,"line_start":280,"line_end":280,"column_start":5,"column_end":9,"is_primary":true,"text":[{"text":" cols: u32,","highlight_start":5,"highlight_end":9}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":9485,"byte_end":9490,"line_start":281,"line_end":281,"column_start":5,"column_end":10,"is_primary":true,"text":[{"text":" scale: u32,","highlight_start":5,"highlight_end":10}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":9501,"byte_end":9505,"line_start":282,"line_end":282,"column_start":5,"column_end":9,"is_primary":true,"text":[{"text":" data: RwLock>,","highlight_start":5,"highlight_end":9}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":9529,"byte_end":9538,"line_start":283,"line_end":283,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" ref_count: AtomicUsize,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: fields `rows`, `cols`, `scale`, `data`, and `ref_count` are never read\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:279:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m278\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub struct VxCConvolution {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m--------------\u001b[0m \u001b[1m\u001b[94mfields in this struct\u001b[0m\n\u001b[1m\u001b[94m279\u001b[0m \u001b[1m\u001b[94m|\u001b[0m rows: u32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^\u001b[0m\n\u001b[1m\u001b[94m280\u001b[0m \u001b[1m\u001b[94m|\u001b[0m cols: u32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^\u001b[0m\n\u001b[1m\u001b[94m281\u001b[0m \u001b[1m\u001b[94m|\u001b[0m scale: u32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^\u001b[0m\n\u001b[1m\u001b[94m282\u001b[0m \u001b[1m\u001b[94m|\u001b[0m data: RwLock>,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^\u001b[0m\n\u001b[1m\u001b[94m283\u001b[0m \u001b[1m\u001b[94m|\u001b[0m ref_count: AtomicUsize,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"fields `data_type`, `count`, `data`, and `ref_count` are never read","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":9580,"byte_end":9586,"line_start":287,"line_end":287,"column_start":12,"column_end":18,"is_primary":false,"text":[{"text":"pub struct VxCLUT {","highlight_start":12,"highlight_end":18}],"label":"fields in this struct","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":9593,"byte_end":9602,"line_start":288,"line_end":288,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" data_type: vx_enum,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":9617,"byte_end":9622,"line_start":289,"line_end":289,"column_start":5,"column_end":10,"is_primary":true,"text":[{"text":" count: usize,","highlight_start":5,"highlight_end":10}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":9635,"byte_end":9639,"line_start":290,"line_end":290,"column_start":5,"column_end":9,"is_primary":true,"text":[{"text":" data: RwLock>,","highlight_start":5,"highlight_end":9}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":9662,"byte_end":9671,"line_start":291,"line_end":291,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" ref_count: AtomicUsize,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: fields `data_type`, `count`, `data`, and `ref_count` are never read\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:288:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m287\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub struct VxCLUT {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m------\u001b[0m \u001b[1m\u001b[94mfields in this struct\u001b[0m\n\u001b[1m\u001b[94m288\u001b[0m \u001b[1m\u001b[94m|\u001b[0m data_type: vx_enum,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m\n\u001b[1m\u001b[94m289\u001b[0m \u001b[1m\u001b[94m|\u001b[0m count: usize,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^\u001b[0m\n\u001b[1m\u001b[94m290\u001b[0m \u001b[1m\u001b[94m|\u001b[0m data: RwLock>,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^\u001b[0m\n\u001b[1m\u001b[94m291\u001b[0m \u001b[1m\u001b[94m|\u001b[0m ref_count: AtomicUsize,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"fields `data` and `ref_count` are never read","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":9722,"byte_end":9737,"line_start":295,"line_end":295,"column_start":12,"column_end":27,"is_primary":false,"text":[{"text":"pub struct VxCDistribution {","highlight_start":12,"highlight_end":27}],"label":"fields in this struct","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":9794,"byte_end":9798,"line_start":299,"line_end":299,"column_start":5,"column_end":9,"is_primary":true,"text":[{"text":" data: RwLock>,","highlight_start":5,"highlight_end":9}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":9822,"byte_end":9831,"line_start":300,"line_end":300,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" ref_count: AtomicUsize,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: fields `data` and `ref_count` are never read\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:299:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m295\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub struct VxCDistribution {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m---------------\u001b[0m \u001b[1m\u001b[94mfields in this struct\u001b[0m\n\u001b[1m\u001b[94m...\u001b[0m\n\u001b[1m\u001b[94m299\u001b[0m \u001b[1m\u001b[94m|\u001b[0m data: RwLock>,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^\u001b[0m\n\u001b[1m\u001b[94m300\u001b[0m \u001b[1m\u001b[94m|\u001b[0m ref_count: AtomicUsize,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"fields `thresh_type`, `data_type`, and `ref_count` are never read","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":9879,"byte_end":9891,"line_start":304,"line_end":304,"column_start":12,"column_end":24,"is_primary":false,"text":[{"text":"pub struct VxCThreshold {","highlight_start":12,"highlight_end":24}],"label":"fields in this struct","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":9898,"byte_end":9909,"line_start":305,"line_end":305,"column_start":5,"column_end":16,"is_primary":true,"text":[{"text":" thresh_type: vx_enum,","highlight_start":5,"highlight_end":16}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":9924,"byte_end":9933,"line_start":306,"line_end":306,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" data_type: vx_enum,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":9948,"byte_end":9957,"line_start":307,"line_end":307,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" ref_count: AtomicUsize,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: fields `thresh_type`, `data_type`, and `ref_count` are never read\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:305:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m304\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub struct VxCThreshold {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m------------\u001b[0m \u001b[1m\u001b[94mfields in this struct\u001b[0m\n\u001b[1m\u001b[94m305\u001b[0m \u001b[1m\u001b[94m|\u001b[0m thresh_type: vx_enum,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^\u001b[0m\n\u001b[1m\u001b[94m306\u001b[0m \u001b[1m\u001b[94m|\u001b[0m data_type: vx_enum,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m\n\u001b[1m\u001b[94m307\u001b[0m \u001b[1m\u001b[94m|\u001b[0m ref_count: AtomicUsize,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"fields `levels`, `scale`, and `ref_count` are never read","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":10003,"byte_end":10013,"line_start":311,"line_end":311,"column_start":12,"column_end":22,"is_primary":false,"text":[{"text":"pub struct VxCPyramid {","highlight_start":12,"highlight_end":22}],"label":"fields in this struct","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":10020,"byte_end":10026,"line_start":312,"line_end":312,"column_start":5,"column_end":11,"is_primary":true,"text":[{"text":" levels: usize,","highlight_start":5,"highlight_end":11}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":10039,"byte_end":10044,"line_start":313,"line_end":313,"column_start":5,"column_end":10,"is_primary":true,"text":[{"text":" scale: f32,","highlight_start":5,"highlight_end":10}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":10055,"byte_end":10064,"line_start":314,"line_end":314,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" ref_count: AtomicUsize,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: fields `levels`, `scale`, and `ref_count` are never read\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:312:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m311\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub struct VxCPyramid {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m----------\u001b[0m \u001b[1m\u001b[94mfields in this struct\u001b[0m\n\u001b[1m\u001b[94m312\u001b[0m \u001b[1m\u001b[94m|\u001b[0m levels: usize,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m\n\u001b[1m\u001b[94m313\u001b[0m \u001b[1m\u001b[94m|\u001b[0m scale: f32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^\u001b[0m\n\u001b[1m\u001b[94m314\u001b[0m \u001b[1m\u001b[94m|\u001b[0m ref_count: AtomicUsize,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"fields `src_width`, `src_height`, `dst_width`, `dst_height`, and `ref_count` are never read","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":10108,"byte_end":10116,"line_start":318,"line_end":318,"column_start":12,"column_end":20,"is_primary":false,"text":[{"text":"pub struct VxCRemap {","highlight_start":12,"highlight_end":20}],"label":"fields in this struct","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":10123,"byte_end":10132,"line_start":319,"line_end":319,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" src_width: u32,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":10143,"byte_end":10153,"line_start":320,"line_end":320,"column_start":5,"column_end":15,"is_primary":true,"text":[{"text":" src_height: u32,","highlight_start":5,"highlight_end":15}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":10164,"byte_end":10173,"line_start":321,"line_end":321,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" dst_width: u32,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":10184,"byte_end":10194,"line_start":322,"line_end":322,"column_start":5,"column_end":15,"is_primary":true,"text":[{"text":" dst_height: u32,","highlight_start":5,"highlight_end":15}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":10205,"byte_end":10214,"line_start":323,"line_end":323,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" ref_count: AtomicUsize,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: fields `src_width`, `src_height`, `dst_width`, `dst_height`, and `ref_count` are never read\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:319:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m318\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub struct VxCRemap {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m--------\u001b[0m \u001b[1m\u001b[94mfields in this struct\u001b[0m\n\u001b[1m\u001b[94m319\u001b[0m \u001b[1m\u001b[94m|\u001b[0m src_width: u32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m\n\u001b[1m\u001b[94m320\u001b[0m \u001b[1m\u001b[94m|\u001b[0m src_height: u32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^\u001b[0m\n\u001b[1m\u001b[94m321\u001b[0m \u001b[1m\u001b[94m|\u001b[0m dst_width: u32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m\n\u001b[1m\u001b[94m322\u001b[0m \u001b[1m\u001b[94m|\u001b[0m dst_height: u32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^\u001b[0m\n\u001b[1m\u001b[94m323\u001b[0m \u001b[1m\u001b[94m|\u001b[0m ref_count: AtomicUsize,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"fields `exemplar_type`, `count`, and `ref_count` are never read","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":10265,"byte_end":10279,"line_start":327,"line_end":327,"column_start":12,"column_end":26,"is_primary":false,"text":[{"text":"pub struct VxCObjectArray {","highlight_start":12,"highlight_end":26}],"label":"fields in this struct","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":10286,"byte_end":10299,"line_start":328,"line_end":328,"column_start":5,"column_end":18,"is_primary":true,"text":[{"text":" exemplar_type: vx_enum,","highlight_start":5,"highlight_end":18}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":10314,"byte_end":10319,"line_start":329,"line_end":329,"column_start":5,"column_end":10,"is_primary":true,"text":[{"text":" count: usize,","highlight_start":5,"highlight_end":10}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":10332,"byte_end":10341,"line_start":330,"line_end":330,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" ref_count: AtomicUsize,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: fields `exemplar_type`, `count`, and `ref_count` are never read\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:328:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m327\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub struct VxCObjectArray {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m--------------\u001b[0m \u001b[1m\u001b[94mfields in this struct\u001b[0m\n\u001b[1m\u001b[94m328\u001b[0m \u001b[1m\u001b[94m|\u001b[0m exemplar_type: vx_enum,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^\u001b[0m\n\u001b[1m\u001b[94m329\u001b[0m \u001b[1m\u001b[94m|\u001b[0m count: usize,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^\u001b[0m\n\u001b[1m\u001b[94m330\u001b[0m \u001b[1m\u001b[94m|\u001b[0m ref_count: AtomicUsize,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"fields `num_dims`, `dims`, `data_type`, and `ref_count` are never read","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":11456,"byte_end":11465,"line_start":361,"line_end":361,"column_start":12,"column_end":21,"is_primary":false,"text":[{"text":"pub struct VxCTensor {","highlight_start":12,"highlight_end":21}],"label":"fields in this struct","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":11472,"byte_end":11480,"line_start":362,"line_end":362,"column_start":5,"column_end":13,"is_primary":true,"text":[{"text":" num_dims: usize,","highlight_start":5,"highlight_end":13}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":11493,"byte_end":11497,"line_start":363,"line_end":363,"column_start":5,"column_end":9,"is_primary":true,"text":[{"text":" dims: Vec,","highlight_start":5,"highlight_end":9}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":11515,"byte_end":11524,"line_start":364,"line_end":364,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" data_type: vx_enum,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":11539,"byte_end":11548,"line_start":365,"line_end":365,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" ref_count: AtomicUsize,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: fields `num_dims`, `dims`, `data_type`, and `ref_count` are never read\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:362:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m361\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub struct VxCTensor {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m---------\u001b[0m \u001b[1m\u001b[94mfields in this struct\u001b[0m\n\u001b[1m\u001b[94m362\u001b[0m \u001b[1m\u001b[94m|\u001b[0m num_dims: usize,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^\u001b[0m\n\u001b[1m\u001b[94m363\u001b[0m \u001b[1m\u001b[94m|\u001b[0m dims: Vec,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^\u001b[0m\n\u001b[1m\u001b[94m364\u001b[0m \u001b[1m\u001b[94m|\u001b[0m data_type: vx_enum,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m\n\u001b[1m\u001b[94m365\u001b[0m \u001b[1m\u001b[94m|\u001b[0m ref_count: AtomicUsize,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"fields `format_type` and `ref_count` are never read","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":11598,"byte_end":11611,"line_start":369,"line_end":369,"column_start":12,"column_end":25,"is_primary":false,"text":[{"text":"pub struct VxCMetaFormat {","highlight_start":12,"highlight_end":25}],"label":"fields in this struct","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":11618,"byte_end":11629,"line_start":370,"line_end":370,"column_start":5,"column_end":16,"is_primary":true,"text":[{"text":" format_type: vx_enum,","highlight_start":5,"highlight_end":16}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":11644,"byte_end":11653,"line_start":371,"line_end":371,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" ref_count: AtomicUsize,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: fields `format_type` and `ref_count` are never read\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:370:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m369\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub struct VxCMetaFormat {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m-------------\u001b[0m \u001b[1m\u001b[94mfields in this struct\u001b[0m\n\u001b[1m\u001b[94m370\u001b[0m \u001b[1m\u001b[94m|\u001b[0m format_type: vx_enum,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^\u001b[0m\n\u001b[1m\u001b[94m371\u001b[0m \u001b[1m\u001b[94m|\u001b[0m ref_count: AtomicUsize,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"fields `import_type` and `ref_count` are never read","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":11698,"byte_end":11707,"line_start":375,"line_end":375,"column_start":12,"column_end":21,"is_primary":false,"text":[{"text":"pub struct VxCImport {","highlight_start":12,"highlight_end":21}],"label":"fields in this struct","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":11714,"byte_end":11725,"line_start":376,"line_end":376,"column_start":5,"column_end":16,"is_primary":true,"text":[{"text":" import_type: vx_enum,","highlight_start":5,"highlight_end":16}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":11740,"byte_end":11749,"line_start":377,"line_end":377,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" ref_count: AtomicUsize,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: fields `import_type` and `ref_count` are never read\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:376:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m375\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub struct VxCImport {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m---------\u001b[0m \u001b[1m\u001b[94mfields in this struct\u001b[0m\n\u001b[1m\u001b[94m376\u001b[0m \u001b[1m\u001b[94m|\u001b[0m import_type: vx_enum,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^\u001b[0m\n\u001b[1m\u001b[94m377\u001b[0m \u001b[1m\u001b[94m|\u001b[0m ref_count: AtomicUsize,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"fields `enumeration` and `ref_count` are never read","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":11794,"byte_end":11803,"line_start":381,"line_end":381,"column_start":12,"column_end":21,"is_primary":false,"text":[{"text":"pub struct VxCKernel {","highlight_start":12,"highlight_end":21}],"label":"fields in this struct","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":11810,"byte_end":11821,"line_start":382,"line_end":382,"column_start":5,"column_end":16,"is_primary":true,"text":[{"text":" enumeration: vx_enum,","highlight_start":5,"highlight_end":16}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":11854,"byte_end":11863,"line_start":384,"line_end":384,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" ref_count: AtomicUsize,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: fields `enumeration` and `ref_count` are never read\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:382:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m381\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub struct VxCKernel {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m---------\u001b[0m \u001b[1m\u001b[94mfields in this struct\u001b[0m\n\u001b[1m\u001b[94m382\u001b[0m \u001b[1m\u001b[94m|\u001b[0m enumeration: vx_enum,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^\u001b[0m\n\u001b[1m\u001b[94m383\u001b[0m \u001b[1m\u001b[94m|\u001b[0m name: String,\n\u001b[1m\u001b[94m384\u001b[0m \u001b[1m\u001b[94m|\u001b[0m ref_count: AtomicUsize,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"fields `id`, `name`, and `ref_count` are never read","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":11908,"byte_end":11917,"line_start":388,"line_end":388,"column_start":12,"column_end":21,"is_primary":false,"text":[{"text":"pub struct VxCTarget {","highlight_start":12,"highlight_end":21}],"label":"fields in this struct","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":11924,"byte_end":11926,"line_start":389,"line_end":389,"column_start":5,"column_end":7,"is_primary":true,"text":[{"text":" id: u64,","highlight_start":5,"highlight_end":7}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":11937,"byte_end":11941,"line_start":390,"line_end":390,"column_start":5,"column_end":9,"is_primary":true,"text":[{"text":" name: String,","highlight_start":5,"highlight_end":9}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":11955,"byte_end":11964,"line_start":391,"line_end":391,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" ref_count: AtomicUsize,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: fields `id`, `name`, and `ref_count` are never read\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:389:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m388\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub struct VxCTarget {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m---------\u001b[0m \u001b[1m\u001b[94mfields in this struct\u001b[0m\n\u001b[1m\u001b[94m389\u001b[0m \u001b[1m\u001b[94m|\u001b[0m id: u64,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^\u001b[0m\n\u001b[1m\u001b[94m390\u001b[0m \u001b[1m\u001b[94m|\u001b[0m name: String,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^\u001b[0m\n\u001b[1m\u001b[94m391\u001b[0m \u001b[1m\u001b[94m|\u001b[0m ref_count: AtomicUsize,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"fields `id`, `kernel`, and `ref_count` are never read","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":12007,"byte_end":12014,"line_start":395,"line_end":395,"column_start":12,"column_end":19,"is_primary":false,"text":[{"text":"pub struct VxCNode {","highlight_start":12,"highlight_end":19}],"label":"fields in this struct","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":12021,"byte_end":12023,"line_start":396,"line_end":396,"column_start":5,"column_end":7,"is_primary":true,"text":[{"text":" id: u64,","highlight_start":5,"highlight_end":7}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":12034,"byte_end":12040,"line_start":397,"line_end":397,"column_start":5,"column_end":11,"is_primary":true,"text":[{"text":" kernel: vx_enum,","highlight_start":5,"highlight_end":11}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":12055,"byte_end":12064,"line_start":398,"line_end":398,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" ref_count: AtomicUsize,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: fields `id`, `kernel`, and `ref_count` are never read\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:396:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m395\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub struct VxCNode {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m-------\u001b[0m \u001b[1m\u001b[94mfields in this struct\u001b[0m\n\u001b[1m\u001b[94m396\u001b[0m \u001b[1m\u001b[94m|\u001b[0m id: u64,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^\u001b[0m\n\u001b[1m\u001b[94m397\u001b[0m \u001b[1m\u001b[94m|\u001b[0m kernel: vx_enum,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m\n\u001b[1m\u001b[94m398\u001b[0m \u001b[1m\u001b[94m|\u001b[0m ref_count: AtomicUsize,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"static `NEXT_GRAPH_ID` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":12789,"byte_end":12802,"line_start":428,"line_end":428,"column_start":8,"column_end":21,"is_primary":true,"text":[{"text":"static NEXT_GRAPH_ID: Lazy = Lazy::new(|| {","highlight_start":8,"highlight_end":21}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: static `NEXT_GRAPH_ID` is never used\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:428:8\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m428\u001b[0m \u001b[1m\u001b[94m|\u001b[0m static NEXT_GRAPH_ID: Lazy = Lazy::new(|| {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"function `generate_graph_id` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":12871,"byte_end":12888,"line_start":432,"line_end":432,"column_start":4,"column_end":21,"is_primary":true,"text":[{"text":"fn generate_graph_id() -> u64 {","highlight_start":4,"highlight_end":21}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: function `generate_graph_id` is never used\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:432:4\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m432\u001b[0m \u001b[1m\u001b[94m|\u001b[0m fn generate_graph_id() -> u64 {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"fields `data_type` and `context` are never read","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":66236,"byte_end":66245,"line_start":1898,"line_end":1898,"column_start":12,"column_end":21,"is_primary":false,"text":[{"text":"pub struct VxCScalar {","highlight_start":12,"highlight_end":21}],"label":"fields in this struct","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":66252,"byte_end":66261,"line_start":1899,"line_end":1899,"column_start":5,"column_end":14,"is_primary":true,"text":[{"text":" data_type: vx_enum,","highlight_start":5,"highlight_end":14}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":66303,"byte_end":66310,"line_start":1901,"line_end":1901,"column_start":5,"column_end":12,"is_primary":true,"text":[{"text":" context: vx_context,","highlight_start":5,"highlight_end":12}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: fields `data_type` and `context` are never read\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:1899:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m1898\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub struct VxCScalar {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m---------\u001b[0m \u001b[1m\u001b[94mfields in this struct\u001b[0m\n\u001b[1m\u001b[94m1899\u001b[0m \u001b[1m\u001b[94m|\u001b[0m data_type: vx_enum,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m\n\u001b[1m\u001b[94m1900\u001b[0m \u001b[1m\u001b[94m|\u001b[0m data: RwLock>,\n\u001b[1m\u001b[94m1901\u001b[0m \u001b[1m\u001b[94m|\u001b[0m context: vx_context,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"multiple fields are never read","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":69849,"byte_end":69862,"line_start":2013,"line_end":2013,"column_start":12,"column_end":25,"is_primary":false,"text":[{"text":"pub struct VxCUserKernel {","highlight_start":12,"highlight_end":25}],"label":"fields in this struct","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":69869,"byte_end":69873,"line_start":2014,"line_end":2014,"column_start":5,"column_end":9,"is_primary":true,"text":[{"text":" name: String,","highlight_start":5,"highlight_end":9}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":69887,"byte_end":69898,"line_start":2015,"line_end":2015,"column_start":5,"column_end":16,"is_primary":true,"text":[{"text":" enumeration: vx_enum,","highlight_start":5,"highlight_end":16}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":69913,"byte_end":69921,"line_start":2016,"line_end":2016,"column_start":5,"column_end":13,"is_primary":true,"text":[{"text":" validate: VxKernelValidateF,","highlight_start":5,"highlight_end":13}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":69946,"byte_end":69950,"line_start":2017,"line_end":2017,"column_start":5,"column_end":9,"is_primary":true,"text":[{"text":" init: VxKernelInitializeF,","highlight_start":5,"highlight_end":9}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":69977,"byte_end":69983,"line_start":2018,"line_end":2018,"column_start":5,"column_end":11,"is_primary":true,"text":[{"text":" deinit: VxKernelDeinitializeF,","highlight_start":5,"highlight_end":11}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":70012,"byte_end":70022,"line_start":2019,"line_end":2019,"column_start":5,"column_end":15,"is_primary":true,"text":[{"text":" num_params: vx_uint32,","highlight_start":5,"highlight_end":15}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":70039,"byte_end":70049,"line_start":2020,"line_end":2020,"column_start":5,"column_end":15,"is_primary":true,"text":[{"text":" context_id: u64,","highlight_start":5,"highlight_end":15}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: multiple fields are never read\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:2014:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m2013\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub struct VxCUserKernel {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m-------------\u001b[0m \u001b[1m\u001b[94mfields in this struct\u001b[0m\n\u001b[1m\u001b[94m2014\u001b[0m \u001b[1m\u001b[94m|\u001b[0m name: String,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^\u001b[0m\n\u001b[1m\u001b[94m2015\u001b[0m \u001b[1m\u001b[94m|\u001b[0m enumeration: vx_enum,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^\u001b[0m\n\u001b[1m\u001b[94m2016\u001b[0m \u001b[1m\u001b[94m|\u001b[0m validate: VxKernelValidateF,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^\u001b[0m\n\u001b[1m\u001b[94m2017\u001b[0m \u001b[1m\u001b[94m|\u001b[0m init: VxKernelInitializeF,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^\u001b[0m\n\u001b[1m\u001b[94m2018\u001b[0m \u001b[1m\u001b[94m|\u001b[0m deinit: VxKernelDeinitializeF,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m\n\u001b[1m\u001b[94m2019\u001b[0m \u001b[1m\u001b[94m|\u001b[0m num_params: vx_uint32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^\u001b[0m\n\u001b[1m\u001b[94m2020\u001b[0m \u001b[1m\u001b[94m|\u001b[0m context_id: u64,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"function `scalar_from_ptr` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":130675,"byte_end":130690,"line_start":4270,"line_end":4270,"column_start":11,"column_end":26,"is_primary":true,"text":[{"text":"unsafe fn scalar_from_ptr(ptr: *mut c_void) -> vx_scalar {","highlight_start":11,"highlight_end":26}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: function `scalar_from_ptr` is never used\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:4270:11\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m4270\u001b[0m \u001b[1m\u001b[94m|\u001b[0m unsafe fn scalar_from_ptr(ptr: *mut c_void) -> vx_scalar {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"function `c_image_to_rust_raw` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/vxu_impl.rs","byte_start":6572,"byte_end":6591,"line_start":178,"line_end":178,"column_start":11,"column_end":30,"is_primary":true,"text":[{"text":"unsafe fn c_image_to_rust_raw(image: vx_image) -> Option {","highlight_start":11,"highlight_end":30}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: function `c_image_to_rust_raw` is never used\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/vxu_impl.rs:178:11\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m178\u001b[0m \u001b[1m\u001b[94m|\u001b[0m unsafe fn c_image_to_rust_raw(image: vx_image) -> Option {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"function `copy_rust_to_c_image_optimized` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/vxu_impl.rs","byte_start":8579,"byte_end":8609,"line_start":233,"line_end":233,"column_start":11,"column_end":41,"is_primary":true,"text":[{"text":"unsafe fn copy_rust_to_c_image_optimized(src: &Image, dst: vx_image) -> vx_status {","highlight_start":11,"highlight_end":41}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: function `copy_rust_to_c_image_optimized` is never used\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/vxu_impl.rs:233:11\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m233\u001b[0m \u001b[1m\u001b[94m|\u001b[0m unsafe fn copy_rust_to_c_image_optimized(src: &Image, dst: vx_image) -> vx_status {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"constant `Y_COEFF_R` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/vxu_impl.rs","byte_start":13329,"byte_end":13338,"line_start":362,"line_end":362,"column_start":7,"column_end":16,"is_primary":true,"text":[{"text":"const Y_COEFF_R: i32 = 54; // 0.2126 * 256 (BT.709)","highlight_start":7,"highlight_end":16}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: constant `Y_COEFF_R` is never used\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/vxu_impl.rs:362:7\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m362\u001b[0m \u001b[1m\u001b[94m|\u001b[0m const Y_COEFF_R: i32 = 54; // 0.2126 * 256 (BT.709)\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"constant `Y_COEFF_G` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/vxu_impl.rs","byte_start":13383,"byte_end":13392,"line_start":363,"line_end":363,"column_start":7,"column_end":16,"is_primary":true,"text":[{"text":"const Y_COEFF_G: i32 = 183; // 0.7152 * 256 (BT.709)","highlight_start":7,"highlight_end":16}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: constant `Y_COEFF_G` is never used\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/vxu_impl.rs:363:7\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m363\u001b[0m \u001b[1m\u001b[94m|\u001b[0m const Y_COEFF_G: i32 = 183; // 0.7152 * 256 (BT.709)\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"constant `Y_COEFF_B` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/vxu_impl.rs","byte_start":13437,"byte_end":13446,"line_start":364,"line_end":364,"column_start":7,"column_end":16,"is_primary":true,"text":[{"text":"const Y_COEFF_B: i32 = 18; // 0.0722 * 256 (BT.709)","highlight_start":7,"highlight_end":16}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: constant `Y_COEFF_B` is never used\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/vxu_impl.rs:364:7\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m364\u001b[0m \u001b[1m\u001b[94m|\u001b[0m const Y_COEFF_B: i32 = 18; // 0.0722 * 256 (BT.709)\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"constant `U_COEFF_R` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/vxu_impl.rs","byte_start":13492,"byte_end":13501,"line_start":366,"line_end":366,"column_start":7,"column_end":16,"is_primary":true,"text":[{"text":"const U_COEFF_R: i32 = -29; // -0.1146 * 256 (BT.709)","highlight_start":7,"highlight_end":16}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: constant `U_COEFF_R` is never used\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/vxu_impl.rs:366:7\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m366\u001b[0m \u001b[1m\u001b[94m|\u001b[0m const U_COEFF_R: i32 = -29; // -0.1146 * 256 (BT.709)\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"constant `U_COEFF_G` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/vxu_impl.rs","byte_start":13547,"byte_end":13556,"line_start":367,"line_end":367,"column_start":7,"column_end":16,"is_primary":true,"text":[{"text":"const U_COEFF_G: i32 = -99; // -0.3854 * 256 (BT.709)","highlight_start":7,"highlight_end":16}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: constant `U_COEFF_G` is never used\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/vxu_impl.rs:367:7\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m367\u001b[0m \u001b[1m\u001b[94m|\u001b[0m const U_COEFF_G: i32 = -99; // -0.3854 * 256 (BT.709)\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"constant `U_COEFF_B` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/vxu_impl.rs","byte_start":13602,"byte_end":13611,"line_start":368,"line_end":368,"column_start":7,"column_end":16,"is_primary":true,"text":[{"text":"const U_COEFF_B: i32 = 128; // 0.5 * 256","highlight_start":7,"highlight_end":16}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: constant `U_COEFF_B` is never used\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/vxu_impl.rs:368:7\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m368\u001b[0m \u001b[1m\u001b[94m|\u001b[0m const U_COEFF_B: i32 = 128; // 0.5 * 256\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"constant `V_COEFF_R` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/vxu_impl.rs","byte_start":13645,"byte_end":13654,"line_start":370,"line_end":370,"column_start":7,"column_end":16,"is_primary":true,"text":[{"text":"const V_COEFF_R: i32 = 128; // 0.5 * 256","highlight_start":7,"highlight_end":16}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: constant `V_COEFF_R` is never used\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/vxu_impl.rs:370:7\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m370\u001b[0m \u001b[1m\u001b[94m|\u001b[0m const V_COEFF_R: i32 = 128; // 0.5 * 256\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"constant `V_COEFF_G` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/vxu_impl.rs","byte_start":13687,"byte_end":13696,"line_start":371,"line_end":371,"column_start":7,"column_end":16,"is_primary":true,"text":[{"text":"const V_COEFF_G: i32 = -116; // -0.4542 * 256 (BT.709)","highlight_start":7,"highlight_end":16}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: constant `V_COEFF_G` is never used\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/vxu_impl.rs:371:7\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m371\u001b[0m \u001b[1m\u001b[94m|\u001b[0m const V_COEFF_G: i32 = -116; // -0.4542 * 256 (BT.709)\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"constant `V_COEFF_B` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/vxu_impl.rs","byte_start":13742,"byte_end":13751,"line_start":372,"line_end":372,"column_start":7,"column_end":16,"is_primary":true,"text":[{"text":"const V_COEFF_B: i32 = -12; // -0.0458 * 256 (BT.709)","highlight_start":7,"highlight_end":16}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: constant `V_COEFF_B` is never used\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/vxu_impl.rs:372:7\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m372\u001b[0m \u001b[1m\u001b[94m|\u001b[0m const V_COEFF_B: i32 = -12; // -0.0458 * 256 (BT.709)\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"function `get_nv21_plane_info` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/vxu_impl.rs","byte_start":15698,"byte_end":15717,"line_start":432,"line_end":432,"column_start":4,"column_end":23,"is_primary":true,"text":[{"text":"fn get_nv21_plane_info(width: u32, height: u32) -> (usize, usize, usize) {","highlight_start":4,"highlight_end":23}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: function `get_nv21_plane_info` is never used\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/vxu_impl.rs:432:4\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m432\u001b[0m \u001b[1m\u001b[94m|\u001b[0m fn get_nv21_plane_info(width: u32, height: u32) -> (usize, usize, usize) {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"function `get_nv12_uv_indices` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/vxu_impl.rs","byte_start":16659,"byte_end":16678,"line_start":463,"line_end":463,"column_start":4,"column_end":23,"is_primary":true,"text":[{"text":"fn get_nv12_uv_indices(x: usize, y: usize, width: usize, y_size: usize) -> usize {","highlight_start":4,"highlight_end":23}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: function `get_nv12_uv_indices` is never used\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/vxu_impl.rs:463:4\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m463\u001b[0m \u001b[1m\u001b[94m|\u001b[0m fn get_nv12_uv_indices(x: usize, y: usize, width: usize, y_size: usize) -> usize {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"function `rgb_to_gray` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/vxu_impl.rs","byte_start":90930,"byte_end":90941,"line_start":2477,"line_end":2477,"column_start":4,"column_end":15,"is_primary":true,"text":[{"text":"fn rgb_to_gray(src: &Image, dst: &mut Image) -> VxResult<()> {","highlight_start":4,"highlight_end":15}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: function `rgb_to_gray` is never used\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/vxu_impl.rs:2477:4\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m2477\u001b[0m \u001b[1m\u001b[94m|\u001b[0m fn rgb_to_gray(src: &Image, dst: &mut Image) -> VxResult<()> {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"function `gray_to_rgb` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/vxu_impl.rs","byte_start":91405,"byte_end":91416,"line_start":2496,"line_end":2496,"column_start":4,"column_end":15,"is_primary":true,"text":[{"text":"fn gray_to_rgb(src: &Image, dst: &mut Image) -> VxResult<()> {","highlight_start":4,"highlight_end":15}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: function `gray_to_rgb` is never used\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/vxu_impl.rs:2496:4\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m2496\u001b[0m \u001b[1m\u001b[94m|\u001b[0m fn gray_to_rgb(src: &Image, dst: &mut Image) -> VxResult<()> {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"function `rgb_to_rgba` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/vxu_impl.rs","byte_start":91834,"byte_end":91845,"line_start":2514,"line_end":2514,"column_start":4,"column_end":15,"is_primary":true,"text":[{"text":"fn rgb_to_rgba(src: &Image, dst: &mut Image) -> VxResult<()> {","highlight_start":4,"highlight_end":15}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: function `rgb_to_rgba` is never used\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/vxu_impl.rs:2514:4\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m2514\u001b[0m \u001b[1m\u001b[94m|\u001b[0m fn rgb_to_rgba(src: &Image, dst: &mut Image) -> VxResult<()> {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"function `rgba_to_rgb` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/vxu_impl.rs","byte_start":92567,"byte_end":92578,"line_start":2539,"line_end":2539,"column_start":4,"column_end":15,"is_primary":true,"text":[{"text":"fn rgba_to_rgb(src: &Image, dst: &mut Image) -> VxResult<()> {","highlight_start":4,"highlight_end":15}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: function `rgba_to_rgb` is never used\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/vxu_impl.rs:2539:4\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m2539\u001b[0m \u001b[1m\u001b[94m|\u001b[0m fn rgba_to_rgb(src: &Image, dst: &mut Image) -> VxResult<()> {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"function `threshold_image` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/vxu_impl.rs","byte_start":135447,"byte_end":135462,"line_start":3891,"line_end":3891,"column_start":4,"column_end":19,"is_primary":true,"text":[{"text":"fn threshold_image(src: &Image, dst: &mut Image, thresh_type: vx_enum, value: i32, lower: i32, upper: i32, true_val: i32, false_val: i32) -> VxResult<()> {","highlight_start":4,"highlight_end":19}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: function `threshold_image` is never used\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/vxu_impl.rs:3891:4\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m3891\u001b[0m \u001b[1m\u001b[94m|\u001b[0m fn threshold_image(src: &Image, dst: &mut Image, thresh_type: vx_enum, value: i32, lower: i32, upper: i32, true_val: i32, false_va\u001b[1m\u001b[94m...\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"structure field `RGB` should have a snake case name","code":{"code":"non_snake_case","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api_data.rs","byte_start":1066,"byte_end":1069,"line_start":26,"line_end":26,"column_start":9,"column_end":12,"is_primary":true,"text":[{"text":" pub RGB: [u8; 3],","highlight_start":9,"highlight_end":12}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(non_snake_case)]` (part of `#[warn(nonstandard_style)]`) on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"convert the identifier to snake case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/c_api_data.rs","byte_start":1066,"byte_end":1069,"line_start":26,"line_end":26,"column_start":9,"column_end":12,"is_primary":true,"text":[{"text":" pub RGB: [u8; 3],","highlight_start":9,"highlight_end":12}],"label":null,"suggested_replacement":"rgb","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: structure field `RGB` should have a snake case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api_data.rs:26:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m26\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub RGB: [u8; 3],\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to snake case: `rgb`\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m= \u001b[0m\u001b[1mnote\u001b[0m: `#[warn(non_snake_case)]` (part of `#[warn(nonstandard_style)]`) on by default\n\n"} +{"$message_type":"diagnostic","message":"structure field `RGBX` should have a snake case name","code":{"code":"non_snake_case","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api_data.rs","byte_start":1143,"byte_end":1147,"line_start":28,"line_end":28,"column_start":9,"column_end":13,"is_primary":true,"text":[{"text":" pub RGBX: [u8; 4],","highlight_start":9,"highlight_end":13}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to snake case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/c_api_data.rs","byte_start":1143,"byte_end":1147,"line_start":28,"line_end":28,"column_start":9,"column_end":13,"is_primary":true,"text":[{"text":" pub RGBX: [u8; 4],","highlight_start":9,"highlight_end":13}],"label":null,"suggested_replacement":"rgbx","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: structure field `RGBX` should have a snake case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api_data.rs:28:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m28\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub RGBX: [u8; 4],\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to snake case: `rgbx`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"structure field `RGBA` should have a snake case name","code":{"code":"non_snake_case","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api_data.rs","byte_start":1219,"byte_end":1223,"line_start":30,"line_end":30,"column_start":9,"column_end":13,"is_primary":true,"text":[{"text":" pub RGBA: [u8; 4],","highlight_start":9,"highlight_end":13}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to snake case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/c_api_data.rs","byte_start":1219,"byte_end":1223,"line_start":30,"line_end":30,"column_start":9,"column_end":13,"is_primary":true,"text":[{"text":" pub RGBA: [u8; 4],","highlight_start":9,"highlight_end":13}],"label":null,"suggested_replacement":"rgba","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: structure field `RGBA` should have a snake case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api_data.rs:30:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m30\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub RGBA: [u8; 4],\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to snake case: `rgba`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"structure field `YUV` should have a snake case name","code":{"code":"non_snake_case","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api_data.rs","byte_start":1285,"byte_end":1288,"line_start":32,"line_end":32,"column_start":9,"column_end":12,"is_primary":true,"text":[{"text":" pub YUV: [u8; 3],","highlight_start":9,"highlight_end":12}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to snake case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/c_api_data.rs","byte_start":1285,"byte_end":1288,"line_start":32,"line_end":32,"column_start":9,"column_end":12,"is_primary":true,"text":[{"text":" pub YUV: [u8; 3],","highlight_start":9,"highlight_end":12}],"label":null,"suggested_replacement":"yuv","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: structure field `YUV` should have a snake case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api_data.rs:32:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m32\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub YUV: [u8; 3],\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to snake case (notice the capitalization): `yuv`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"structure field `U1` should have a snake case name","code":{"code":"non_snake_case","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api_data.rs","byte_start":1330,"byte_end":1332,"line_start":34,"line_end":34,"column_start":9,"column_end":11,"is_primary":true,"text":[{"text":" pub U1: u8,","highlight_start":9,"highlight_end":11}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to snake case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/c_api_data.rs","byte_start":1330,"byte_end":1332,"line_start":34,"line_end":34,"column_start":9,"column_end":11,"is_primary":true,"text":[{"text":" pub U1: u8,","highlight_start":9,"highlight_end":11}],"label":null,"suggested_replacement":"u1","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: structure field `U1` should have a snake case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api_data.rs:34:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m34\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub U1: u8,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to snake case (notice the capitalization): `u1`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"structure field `U8` should have a snake case name","code":{"code":"non_snake_case","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api_data.rs","byte_start":1397,"byte_end":1399,"line_start":36,"line_end":36,"column_start":9,"column_end":11,"is_primary":true,"text":[{"text":" pub U8: u8,","highlight_start":9,"highlight_end":11}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to snake case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/c_api_data.rs","byte_start":1397,"byte_end":1399,"line_start":36,"line_end":36,"column_start":9,"column_end":11,"is_primary":true,"text":[{"text":" pub U8: u8,","highlight_start":9,"highlight_end":11}],"label":null,"suggested_replacement":"u8","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: structure field `U8` should have a snake case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api_data.rs:36:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m36\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub U8: u8,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to snake case (notice the capitalization): `u8`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"structure field `U16` should have a snake case name","code":{"code":"non_snake_case","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api_data.rs","byte_start":1468,"byte_end":1471,"line_start":38,"line_end":38,"column_start":9,"column_end":12,"is_primary":true,"text":[{"text":" pub U16: u16,","highlight_start":9,"highlight_end":12}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to snake case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/c_api_data.rs","byte_start":1468,"byte_end":1471,"line_start":38,"line_end":38,"column_start":9,"column_end":12,"is_primary":true,"text":[{"text":" pub U16: u16,","highlight_start":9,"highlight_end":12}],"label":null,"suggested_replacement":"u16","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: structure field `U16` should have a snake case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api_data.rs:38:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m38\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub U16: u16,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to snake case (notice the capitalization): `u16`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"structure field `S16` should have a snake case name","code":{"code":"non_snake_case","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api_data.rs","byte_start":1541,"byte_end":1544,"line_start":40,"line_end":40,"column_start":9,"column_end":12,"is_primary":true,"text":[{"text":" pub S16: i16,","highlight_start":9,"highlight_end":12}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to snake case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/c_api_data.rs","byte_start":1541,"byte_end":1544,"line_start":40,"line_end":40,"column_start":9,"column_end":12,"is_primary":true,"text":[{"text":" pub S16: i16,","highlight_start":9,"highlight_end":12}],"label":null,"suggested_replacement":"s16","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: structure field `S16` should have a snake case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api_data.rs:40:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m40\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub S16: i16,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to snake case (notice the capitalization): `s16`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"structure field `U32` should have a snake case name","code":{"code":"non_snake_case","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api_data.rs","byte_start":1614,"byte_end":1617,"line_start":42,"line_end":42,"column_start":9,"column_end":12,"is_primary":true,"text":[{"text":" pub U32: u32,","highlight_start":9,"highlight_end":12}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to snake case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/c_api_data.rs","byte_start":1614,"byte_end":1617,"line_start":42,"line_end":42,"column_start":9,"column_end":12,"is_primary":true,"text":[{"text":" pub U32: u32,","highlight_start":9,"highlight_end":12}],"label":null,"suggested_replacement":"u32","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: structure field `U32` should have a snake case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api_data.rs:42:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m42\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub U32: u32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to snake case (notice the capitalization): `u32`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"structure field `S32` should have a snake case name","code":{"code":"non_snake_case","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/c_api_data.rs","byte_start":1687,"byte_end":1690,"line_start":44,"line_end":44,"column_start":9,"column_end":12,"is_primary":true,"text":[{"text":" pub S32: i32,","highlight_start":9,"highlight_end":12}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to snake case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/c_api_data.rs","byte_start":1687,"byte_end":1690,"line_start":44,"line_end":44,"column_start":9,"column_end":12,"is_primary":true,"text":[{"text":" pub S32: i32,","highlight_start":9,"highlight_end":12}],"label":null,"suggested_replacement":"s32","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: structure field `S32` should have a snake case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/c_api_data.rs:44:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m44\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub S32: i32,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to snake case (notice the capitalization): `s32`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"variable `VX_CONTEXT_ATTRIBUTE_IMMEDIATE_BORDER` should have a snake case name","code":{"code":"non_snake_case","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":39540,"byte_end":39577,"line_start":1144,"line_end":1144,"column_start":9,"column_end":46,"is_primary":true,"text":[{"text":" VX_CONTEXT_ATTRIBUTE_IMMEDIATE_BORDER => {","highlight_start":9,"highlight_end":46}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to snake case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":39540,"byte_end":39577,"line_start":1144,"line_end":1144,"column_start":9,"column_end":46,"is_primary":true,"text":[{"text":" VX_CONTEXT_ATTRIBUTE_IMMEDIATE_BORDER => {","highlight_start":9,"highlight_end":46}],"label":null,"suggested_replacement":"vx_context_attribute_immediate_border","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: variable `VX_CONTEXT_ATTRIBUTE_IMMEDIATE_BORDER` should have a snake case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:1144:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m1144\u001b[0m \u001b[1m\u001b[94m|\u001b[0m VX_CONTEXT_ATTRIBUTE_IMMEDIATE_BORDER => {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to snake case: `vx_context_attribute_immediate_border`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"constant `VX_KERNEL_SOBEL_3x3` should have an upper case name","code":{"code":"non_upper_case_globals","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":87936,"byte_end":87955,"line_start":2607,"line_end":2607,"column_start":11,"column_end":30,"is_primary":true,"text":[{"text":"pub const VX_KERNEL_SOBEL_3x3: vx_enum = 0x03;","highlight_start":11,"highlight_end":30}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(non_upper_case_globals)]` (part of `#[warn(nonstandard_style)]`) on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"convert the identifier to upper case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":87936,"byte_end":87955,"line_start":2607,"line_end":2607,"column_start":11,"column_end":30,"is_primary":true,"text":[{"text":"pub const VX_KERNEL_SOBEL_3x3: vx_enum = 0x03;","highlight_start":11,"highlight_end":30}],"label":null,"suggested_replacement":"VX_KERNEL_SOBEL_3X3","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: constant `VX_KERNEL_SOBEL_3x3` should have an upper case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:2607:11\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m2607\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub const VX_KERNEL_SOBEL_3x3: vx_enum = 0x03;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper case (notice the capitalization): `VX_KERNEL_SOBEL_3X3`\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m= \u001b[0m\u001b[1mnote\u001b[0m: `#[warn(non_upper_case_globals)]` (part of `#[warn(nonstandard_style)]`) on by default\n\n"} +{"$message_type":"diagnostic","message":"constant `VX_KERNEL_GAUSSIAN_3x3` should have an upper case name","code":{"code":"non_upper_case_globals","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":88458,"byte_end":88480,"line_start":2618,"line_end":2618,"column_start":11,"column_end":33,"is_primary":true,"text":[{"text":"pub const VX_KERNEL_GAUSSIAN_3x3: vx_enum = 0x0E;","highlight_start":11,"highlight_end":33}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to upper case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":88458,"byte_end":88480,"line_start":2618,"line_end":2618,"column_start":11,"column_end":33,"is_primary":true,"text":[{"text":"pub const VX_KERNEL_GAUSSIAN_3x3: vx_enum = 0x0E;","highlight_start":11,"highlight_end":33}],"label":null,"suggested_replacement":"VX_KERNEL_GAUSSIAN_3X3","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: constant `VX_KERNEL_GAUSSIAN_3x3` should have an upper case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:2618:11\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m2618\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub const VX_KERNEL_GAUSSIAN_3x3: vx_enum = 0x0E;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper case (notice the capitalization): `VX_KERNEL_GAUSSIAN_3X3`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"constant `VX_KERNEL_MEDIAN_3x3` should have an upper case name","code":{"code":"non_upper_case_globals","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":88508,"byte_end":88528,"line_start":2619,"line_end":2619,"column_start":11,"column_end":31,"is_primary":true,"text":[{"text":"pub const VX_KERNEL_MEDIAN_3x3: vx_enum = 0x0F;","highlight_start":11,"highlight_end":31}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to upper case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":88508,"byte_end":88528,"line_start":2619,"line_end":2619,"column_start":11,"column_end":31,"is_primary":true,"text":[{"text":"pub const VX_KERNEL_MEDIAN_3x3: vx_enum = 0x0F;","highlight_start":11,"highlight_end":31}],"label":null,"suggested_replacement":"VX_KERNEL_MEDIAN_3X3","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: constant `VX_KERNEL_MEDIAN_3x3` should have an upper case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:2619:11\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m2619\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub const VX_KERNEL_MEDIAN_3x3: vx_enum = 0x0F;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper case (notice the capitalization): `VX_KERNEL_MEDIAN_3X3`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"constant `VX_KERNEL_SOBEL_5x5` should have an upper case name","code":{"code":"non_upper_case_globals","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":88556,"byte_end":88575,"line_start":2620,"line_end":2620,"column_start":11,"column_end":30,"is_primary":true,"text":[{"text":"pub const VX_KERNEL_SOBEL_5x5: vx_enum = 0x10;","highlight_start":11,"highlight_end":30}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to upper case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":88556,"byte_end":88575,"line_start":2620,"line_end":2620,"column_start":11,"column_end":30,"is_primary":true,"text":[{"text":"pub const VX_KERNEL_SOBEL_5x5: vx_enum = 0x10;","highlight_start":11,"highlight_end":30}],"label":null,"suggested_replacement":"VX_KERNEL_SOBEL_5X5","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: constant `VX_KERNEL_SOBEL_5x5` should have an upper case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:2620:11\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m2620\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub const VX_KERNEL_SOBEL_5x5: vx_enum = 0x10;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper case (notice the capitalization): `VX_KERNEL_SOBEL_5X5`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"constant `VX_KERNEL_BOX_3x3` should have an upper case name","code":{"code":"non_upper_case_globals","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":88603,"byte_end":88620,"line_start":2621,"line_end":2621,"column_start":11,"column_end":28,"is_primary":true,"text":[{"text":"pub const VX_KERNEL_BOX_3x3: vx_enum = 0x12; // Per OpenVX spec: VX_KERNEL_BASE + 0x12","highlight_start":11,"highlight_end":28}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to upper case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":88603,"byte_end":88620,"line_start":2621,"line_end":2621,"column_start":11,"column_end":28,"is_primary":true,"text":[{"text":"pub const VX_KERNEL_BOX_3x3: vx_enum = 0x12; // Per OpenVX spec: VX_KERNEL_BASE + 0x12","highlight_start":11,"highlight_end":28}],"label":null,"suggested_replacement":"VX_KERNEL_BOX_3X3","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: constant `VX_KERNEL_BOX_3x3` should have an upper case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:2621:11\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m2621\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub const VX_KERNEL_BOX_3x3: vx_enum = 0x12; // Per OpenVX spec: VX_KERNEL_BASE + 0x12\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper case (notice the capitalization): `VX_KERNEL_BOX_3X3`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"constant `VX_KERNEL_GAUSSIAN_5x5` should have an upper case name","code":{"code":"non_upper_case_globals","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":88691,"byte_end":88713,"line_start":2622,"line_end":2622,"column_start":11,"column_end":33,"is_primary":true,"text":[{"text":"pub const VX_KERNEL_GAUSSIAN_5x5: vx_enum = 0x13;","highlight_start":11,"highlight_end":33}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to upper case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":88691,"byte_end":88713,"line_start":2622,"line_end":2622,"column_start":11,"column_end":33,"is_primary":true,"text":[{"text":"pub const VX_KERNEL_GAUSSIAN_5x5: vx_enum = 0x13;","highlight_start":11,"highlight_end":33}],"label":null,"suggested_replacement":"VX_KERNEL_GAUSSIAN_5X5","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: constant `VX_KERNEL_GAUSSIAN_5x5` should have an upper case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:2622:11\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m2622\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub const VX_KERNEL_GAUSSIAN_5x5: vx_enum = 0x13;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper case (notice the capitalization): `VX_KERNEL_GAUSSIAN_5X5`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"constant `VX_KERNEL_DILATE_3x3` should have an upper case name","code":{"code":"non_upper_case_globals","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":89002,"byte_end":89022,"line_start":2628,"line_end":2628,"column_start":11,"column_end":31,"is_primary":true,"text":[{"text":"pub const VX_KERNEL_DILATE_3x3: vx_enum = 0x19;","highlight_start":11,"highlight_end":31}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to upper case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":89002,"byte_end":89022,"line_start":2628,"line_end":2628,"column_start":11,"column_end":31,"is_primary":true,"text":[{"text":"pub const VX_KERNEL_DILATE_3x3: vx_enum = 0x19;","highlight_start":11,"highlight_end":31}],"label":null,"suggested_replacement":"VX_KERNEL_DILATE_3X3","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: constant `VX_KERNEL_DILATE_3x3` should have an upper case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:2628:11\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m2628\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub const VX_KERNEL_DILATE_3x3: vx_enum = 0x19;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper case (notice the capitalization): `VX_KERNEL_DILATE_3X3`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"constant `VX_KERNEL_ERODE_3x3` should have an upper case name","code":{"code":"non_upper_case_globals","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":89050,"byte_end":89069,"line_start":2629,"line_end":2629,"column_start":11,"column_end":30,"is_primary":true,"text":[{"text":"pub const VX_KERNEL_ERODE_3x3: vx_enum = 0x1A;","highlight_start":11,"highlight_end":30}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to upper case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":89050,"byte_end":89069,"line_start":2629,"line_end":2629,"column_start":11,"column_end":30,"is_primary":true,"text":[{"text":"pub const VX_KERNEL_ERODE_3x3: vx_enum = 0x1A;","highlight_start":11,"highlight_end":30}],"label":null,"suggested_replacement":"VX_KERNEL_ERODE_3X3","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: constant `VX_KERNEL_ERODE_3x3` should have an upper case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:2629:11\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m2629\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub const VX_KERNEL_ERODE_3x3: vx_enum = 0x1A;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper case (notice the capitalization): `VX_KERNEL_ERODE_3X3`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"constant `VX_KERNEL_MEDIAN_3x3_ALT` should have an upper case name","code":{"code":"non_upper_case_globals","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":89097,"byte_end":89121,"line_start":2630,"line_end":2630,"column_start":11,"column_end":35,"is_primary":true,"text":[{"text":"pub const VX_KERNEL_MEDIAN_3x3_ALT: vx_enum = 0x1B; // 0x1B","highlight_start":11,"highlight_end":35}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to upper case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":89097,"byte_end":89121,"line_start":2630,"line_end":2630,"column_start":11,"column_end":35,"is_primary":true,"text":[{"text":"pub const VX_KERNEL_MEDIAN_3x3_ALT: vx_enum = 0x1B; // 0x1B","highlight_start":11,"highlight_end":35}],"label":null,"suggested_replacement":"VX_KERNEL_MEDIAN_3X3_ALT","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: constant `VX_KERNEL_MEDIAN_3x3_ALT` should have an upper case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:2630:11\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m2630\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub const VX_KERNEL_MEDIAN_3x3_ALT: vx_enum = 0x1B; // 0x1B\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper case (notice the capitalization): `VX_KERNEL_MEDIAN_3X3_ALT`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"constant `VX_KERNEL_DILATE_5x5` should have an upper case name","code":{"code":"non_upper_case_globals","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":89604,"byte_end":89624,"line_start":2640,"line_end":2640,"column_start":11,"column_end":31,"is_primary":true,"text":[{"text":"pub const VX_KERNEL_DILATE_5x5: vx_enum = 0x25;","highlight_start":11,"highlight_end":31}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to upper case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":89604,"byte_end":89624,"line_start":2640,"line_end":2640,"column_start":11,"column_end":31,"is_primary":true,"text":[{"text":"pub const VX_KERNEL_DILATE_5x5: vx_enum = 0x25;","highlight_start":11,"highlight_end":31}],"label":null,"suggested_replacement":"VX_KERNEL_DILATE_5X5","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: constant `VX_KERNEL_DILATE_5x5` should have an upper case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:2640:11\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m2640\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub const VX_KERNEL_DILATE_5x5: vx_enum = 0x25;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper case (notice the capitalization): `VX_KERNEL_DILATE_5X5`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"constant `VX_KERNEL_ERODE_5x5` should have an upper case name","code":{"code":"non_upper_case_globals","explanation":null},"level":"warning","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":89652,"byte_end":89671,"line_start":2641,"line_end":2641,"column_start":11,"column_end":30,"is_primary":true,"text":[{"text":"pub const VX_KERNEL_ERODE_5x5: vx_enum = 0x26;","highlight_start":11,"highlight_end":30}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"convert the identifier to upper case","code":null,"level":"help","spans":[{"file_name":"openvx-core/src/unified_c_api.rs","byte_start":89652,"byte_end":89671,"line_start":2641,"line_end":2641,"column_start":11,"column_end":30,"is_primary":true,"text":[{"text":"pub const VX_KERNEL_ERODE_5x5: vx_enum = 0x26;","highlight_start":11,"highlight_end":30}],"label":null,"suggested_replacement":"VX_KERNEL_ERODE_5X5","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: constant `VX_KERNEL_ERODE_5x5` should have an upper case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-core/src/unified_c_api.rs:2641:11\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m2641\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub const VX_KERNEL_ERODE_5x5: vx_enum = 0x26;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper case (notice the capitalization): `VX_KERNEL_ERODE_5X5`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"298 warnings emitted","code":null,"level":"warning","spans":[],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: 298 warnings emitted\u001b[0m\n\n"} diff --git a/target/release/.fingerprint/openvx-core-b3e9f44a082d8104/test-lib-openvx_core b/target/release/.fingerprint/openvx-core-b3e9f44a082d8104/test-lib-openvx_core new file mode 100644 index 0000000..db1430c --- /dev/null +++ b/target/release/.fingerprint/openvx-core-b3e9f44a082d8104/test-lib-openvx_core @@ -0,0 +1 @@ +d11fd148f389b89e \ No newline at end of file diff --git a/target/release/.fingerprint/openvx-core-b3e9f44a082d8104/test-lib-openvx_core.json b/target/release/.fingerprint/openvx-core-b3e9f44a082d8104/test-lib-openvx_core.json new file mode 100644 index 0000000..a15fdc5 --- /dev/null +++ b/target/release/.fingerprint/openvx-core-b3e9f44a082d8104/test-lib-openvx_core.json @@ -0,0 +1 @@ +{"rustc":18276270781310494267,"features":"[\"default\"]","declared_features":"[\"c-api\", \"default\"]","target":1909464329141176262,"profile":10220379689200424945,"path":17993126686957639070,"deps":[[5855319743879205494,"once_cell",false,6238387259129243755],[8008191657135824715,"thiserror",false,4000739929892150198],[10630857666389190470,"log",false,1771208510127974518],[12459942763388630573,"parking_lot",false,12109111506902632338],[16532555906320553198,"petgraph",false,11609772400921011127]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/openvx-core-b3e9f44a082d8104/dep-test-lib-openvx_core","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/openvx-ffi-c287c272f8bbdadc/dep-test-lib-openvx_ffi b/target/release/.fingerprint/openvx-ffi-c287c272f8bbdadc/dep-test-lib-openvx_ffi new file mode 100644 index 0000000..024be49 Binary files /dev/null and b/target/release/.fingerprint/openvx-ffi-c287c272f8bbdadc/dep-test-lib-openvx_ffi differ diff --git a/target/release/.fingerprint/openvx-ffi-c287c272f8bbdadc/invoked.timestamp b/target/release/.fingerprint/openvx-ffi-c287c272f8bbdadc/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/openvx-ffi-c287c272f8bbdadc/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/openvx-ffi-c287c272f8bbdadc/output-test-lib-openvx_ffi b/target/release/.fingerprint/openvx-ffi-c287c272f8bbdadc/output-test-lib-openvx_ffi new file mode 100644 index 0000000..abb871d --- /dev/null +++ b/target/release/.fingerprint/openvx-ffi-c287c272f8bbdadc/output-test-lib-openvx_ffi @@ -0,0 +1,57 @@ +{"$message_type":"diagnostic","message":"ambiguous glob re-exports","code":{"code":"ambiguous_glob_reexports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-ffi/src/lib.rs","byte_start":257,"byte_end":278,"line_start":7,"line_end":7,"column_start":9,"column_end":30,"is_primary":true,"text":[{"text":"pub use openvx_core::c_api::*;","highlight_start":9,"highlight_end":30}],"label":"the name `VxDistribution` in the type namespace is first re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-ffi/src/lib.rs","byte_start":324,"byte_end":353,"line_start":9,"line_end":9,"column_start":9,"column_end":38,"is_primary":false,"text":[{"text":"pub use openvx_core::unified_c_api::*;","highlight_start":9,"highlight_end":38}],"label":"but the name `VxDistribution` in the type namespace is also re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(ambiguous_glob_reexports)]` on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: ambiguous glob re-exports\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-ffi/src/lib.rs:7:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m7\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mthe name `VxDistribution` in the type namespace is first re-exported here\u001b[0m\n\u001b[1m\u001b[94m8\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api_data::*;\n\u001b[1m\u001b[94m9\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::unified_c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m-----------------------------\u001b[0m \u001b[1m\u001b[94mbut the name `VxDistribution` in the type namespace is also re-exported here\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m= \u001b[0m\u001b[1mnote\u001b[0m: `#[warn(ambiguous_glob_reexports)]` on by default\n\n"} +{"$message_type":"diagnostic","message":"ambiguous glob re-exports","code":{"code":"ambiguous_glob_reexports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-ffi/src/lib.rs","byte_start":257,"byte_end":278,"line_start":7,"line_end":7,"column_start":9,"column_end":30,"is_primary":true,"text":[{"text":"pub use openvx_core::c_api::*;","highlight_start":9,"highlight_end":30}],"label":"the name `vx_distribution` in the type namespace is first re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-ffi/src/lib.rs","byte_start":324,"byte_end":353,"line_start":9,"line_end":9,"column_start":9,"column_end":38,"is_primary":false,"text":[{"text":"pub use openvx_core::unified_c_api::*;","highlight_start":9,"highlight_end":38}],"label":"but the name `vx_distribution` in the type namespace is also re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: ambiguous glob re-exports\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-ffi/src/lib.rs:7:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m7\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mthe name `vx_distribution` in the type namespace is first re-exported here\u001b[0m\n\u001b[1m\u001b[94m8\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api_data::*;\n\u001b[1m\u001b[94m9\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::unified_c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m-----------------------------\u001b[0m \u001b[1m\u001b[94mbut the name `vx_distribution` in the type namespace is also re-exported here\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"ambiguous glob re-exports","code":{"code":"ambiguous_glob_reexports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-ffi/src/lib.rs","byte_start":257,"byte_end":278,"line_start":7,"line_end":7,"column_start":9,"column_end":30,"is_primary":true,"text":[{"text":"pub use openvx_core::c_api::*;","highlight_start":9,"highlight_end":30}],"label":"the name `VxDelay` in the type namespace is first re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-ffi/src/lib.rs","byte_start":324,"byte_end":353,"line_start":9,"line_end":9,"column_start":9,"column_end":38,"is_primary":false,"text":[{"text":"pub use openvx_core::unified_c_api::*;","highlight_start":9,"highlight_end":38}],"label":"but the name `VxDelay` in the type namespace is also re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: ambiguous glob re-exports\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-ffi/src/lib.rs:7:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m7\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mthe name `VxDelay` in the type namespace is first re-exported here\u001b[0m\n\u001b[1m\u001b[94m8\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api_data::*;\n\u001b[1m\u001b[94m9\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::unified_c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m-----------------------------\u001b[0m \u001b[1m\u001b[94mbut the name `VxDelay` in the type namespace is also re-exported here\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"ambiguous glob re-exports","code":{"code":"ambiguous_glob_reexports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-ffi/src/lib.rs","byte_start":257,"byte_end":278,"line_start":7,"line_end":7,"column_start":9,"column_end":30,"is_primary":true,"text":[{"text":"pub use openvx_core::c_api::*;","highlight_start":9,"highlight_end":30}],"label":"the name `vx_delay` in the type namespace is first re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-ffi/src/lib.rs","byte_start":324,"byte_end":353,"line_start":9,"line_end":9,"column_start":9,"column_end":38,"is_primary":false,"text":[{"text":"pub use openvx_core::unified_c_api::*;","highlight_start":9,"highlight_end":38}],"label":"but the name `vx_delay` in the type namespace is also re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: ambiguous glob re-exports\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-ffi/src/lib.rs:7:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m7\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mthe name `vx_delay` in the type namespace is first re-exported here\u001b[0m\n\u001b[1m\u001b[94m8\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api_data::*;\n\u001b[1m\u001b[94m9\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::unified_c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m-----------------------------\u001b[0m \u001b[1m\u001b[94mbut the name `vx_delay` in the type namespace is also re-exported here\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"ambiguous glob re-exports","code":{"code":"ambiguous_glob_reexports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-ffi/src/lib.rs","byte_start":257,"byte_end":278,"line_start":7,"line_end":7,"column_start":9,"column_end":30,"is_primary":true,"text":[{"text":"pub use openvx_core::c_api::*;","highlight_start":9,"highlight_end":30}],"label":"the name `VxRemap` in the type namespace is first re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-ffi/src/lib.rs","byte_start":324,"byte_end":353,"line_start":9,"line_end":9,"column_start":9,"column_end":38,"is_primary":false,"text":[{"text":"pub use openvx_core::unified_c_api::*;","highlight_start":9,"highlight_end":38}],"label":"but the name `VxRemap` in the type namespace is also re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: ambiguous glob re-exports\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-ffi/src/lib.rs:7:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m7\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mthe name `VxRemap` in the type namespace is first re-exported here\u001b[0m\n\u001b[1m\u001b[94m8\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api_data::*;\n\u001b[1m\u001b[94m9\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::unified_c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m-----------------------------\u001b[0m \u001b[1m\u001b[94mbut the name `VxRemap` in the type namespace is also re-exported here\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"ambiguous glob re-exports","code":{"code":"ambiguous_glob_reexports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-ffi/src/lib.rs","byte_start":257,"byte_end":278,"line_start":7,"line_end":7,"column_start":9,"column_end":30,"is_primary":true,"text":[{"text":"pub use openvx_core::c_api::*;","highlight_start":9,"highlight_end":30}],"label":"the name `vx_remap` in the type namespace is first re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-ffi/src/lib.rs","byte_start":324,"byte_end":353,"line_start":9,"line_end":9,"column_start":9,"column_end":38,"is_primary":false,"text":[{"text":"pub use openvx_core::unified_c_api::*;","highlight_start":9,"highlight_end":38}],"label":"but the name `vx_remap` in the type namespace is also re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: ambiguous glob re-exports\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-ffi/src/lib.rs:7:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m7\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mthe name `vx_remap` in the type namespace is first re-exported here\u001b[0m\n\u001b[1m\u001b[94m8\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api_data::*;\n\u001b[1m\u001b[94m9\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::unified_c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m-----------------------------\u001b[0m \u001b[1m\u001b[94mbut the name `vx_remap` in the type namespace is also re-exported here\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"ambiguous glob re-exports","code":{"code":"ambiguous_glob_reexports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-ffi/src/lib.rs","byte_start":257,"byte_end":278,"line_start":7,"line_end":7,"column_start":9,"column_end":30,"is_primary":true,"text":[{"text":"pub use openvx_core::c_api::*;","highlight_start":9,"highlight_end":30}],"label":"the name `VxTensor` in the type namespace is first re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-ffi/src/lib.rs","byte_start":324,"byte_end":353,"line_start":9,"line_end":9,"column_start":9,"column_end":38,"is_primary":false,"text":[{"text":"pub use openvx_core::unified_c_api::*;","highlight_start":9,"highlight_end":38}],"label":"but the name `VxTensor` in the type namespace is also re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: ambiguous glob re-exports\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-ffi/src/lib.rs:7:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m7\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mthe name `VxTensor` in the type namespace is first re-exported here\u001b[0m\n\u001b[1m\u001b[94m8\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api_data::*;\n\u001b[1m\u001b[94m9\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::unified_c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m-----------------------------\u001b[0m \u001b[1m\u001b[94mbut the name `VxTensor` in the type namespace is also re-exported here\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"ambiguous glob re-exports","code":{"code":"ambiguous_glob_reexports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-ffi/src/lib.rs","byte_start":257,"byte_end":278,"line_start":7,"line_end":7,"column_start":9,"column_end":30,"is_primary":true,"text":[{"text":"pub use openvx_core::c_api::*;","highlight_start":9,"highlight_end":30}],"label":"the name `vx_tensor` in the type namespace is first re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-ffi/src/lib.rs","byte_start":324,"byte_end":353,"line_start":9,"line_end":9,"column_start":9,"column_end":38,"is_primary":false,"text":[{"text":"pub use openvx_core::unified_c_api::*;","highlight_start":9,"highlight_end":38}],"label":"but the name `vx_tensor` in the type namespace is also re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: ambiguous glob re-exports\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-ffi/src/lib.rs:7:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m7\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mthe name `vx_tensor` in the type namespace is first re-exported here\u001b[0m\n\u001b[1m\u001b[94m8\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api_data::*;\n\u001b[1m\u001b[94m9\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::unified_c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m-----------------------------\u001b[0m \u001b[1m\u001b[94mbut the name `vx_tensor` in the type namespace is also re-exported here\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"ambiguous glob re-exports","code":{"code":"ambiguous_glob_reexports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-ffi/src/lib.rs","byte_start":257,"byte_end":278,"line_start":7,"line_end":7,"column_start":9,"column_end":30,"is_primary":true,"text":[{"text":"pub use openvx_core::c_api::*;","highlight_start":9,"highlight_end":30}],"label":"the name `VxMetaFormat` in the type namespace is first re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-ffi/src/lib.rs","byte_start":324,"byte_end":353,"line_start":9,"line_end":9,"column_start":9,"column_end":38,"is_primary":false,"text":[{"text":"pub use openvx_core::unified_c_api::*;","highlight_start":9,"highlight_end":38}],"label":"but the name `VxMetaFormat` in the type namespace is also re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: ambiguous glob re-exports\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-ffi/src/lib.rs:7:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m7\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mthe name `VxMetaFormat` in the type namespace is first re-exported here\u001b[0m\n\u001b[1m\u001b[94m8\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api_data::*;\n\u001b[1m\u001b[94m9\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::unified_c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m-----------------------------\u001b[0m \u001b[1m\u001b[94mbut the name `VxMetaFormat` in the type namespace is also re-exported here\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"ambiguous glob re-exports","code":{"code":"ambiguous_glob_reexports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-ffi/src/lib.rs","byte_start":257,"byte_end":278,"line_start":7,"line_end":7,"column_start":9,"column_end":30,"is_primary":true,"text":[{"text":"pub use openvx_core::c_api::*;","highlight_start":9,"highlight_end":30}],"label":"the name `vx_meta_format` in the type namespace is first re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-ffi/src/lib.rs","byte_start":324,"byte_end":353,"line_start":9,"line_end":9,"column_start":9,"column_end":38,"is_primary":false,"text":[{"text":"pub use openvx_core::unified_c_api::*;","highlight_start":9,"highlight_end":38}],"label":"but the name `vx_meta_format` in the type namespace is also re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: ambiguous glob re-exports\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-ffi/src/lib.rs:7:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m7\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mthe name `vx_meta_format` in the type namespace is first re-exported here\u001b[0m\n\u001b[1m\u001b[94m8\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api_data::*;\n\u001b[1m\u001b[94m9\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::unified_c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m-----------------------------\u001b[0m \u001b[1m\u001b[94mbut the name `vx_meta_format` in the type namespace is also re-exported here\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"ambiguous glob re-exports","code":{"code":"ambiguous_glob_reexports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-ffi/src/lib.rs","byte_start":257,"byte_end":278,"line_start":7,"line_end":7,"column_start":9,"column_end":30,"is_primary":true,"text":[{"text":"pub use openvx_core::c_api::*;","highlight_start":9,"highlight_end":30}],"label":"the name `VxGraphParameter` in the type namespace is first re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-ffi/src/lib.rs","byte_start":324,"byte_end":353,"line_start":9,"line_end":9,"column_start":9,"column_end":38,"is_primary":false,"text":[{"text":"pub use openvx_core::unified_c_api::*;","highlight_start":9,"highlight_end":38}],"label":"but the name `VxGraphParameter` in the type namespace is also re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: ambiguous glob re-exports\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-ffi/src/lib.rs:7:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m7\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mthe name `VxGraphParameter` in the type namespace is first re-exported here\u001b[0m\n\u001b[1m\u001b[94m8\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api_data::*;\n\u001b[1m\u001b[94m9\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::unified_c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m-----------------------------\u001b[0m \u001b[1m\u001b[94mbut the name `VxGraphParameter` in the type namespace is also re-exported here\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"ambiguous glob re-exports","code":{"code":"ambiguous_glob_reexports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-ffi/src/lib.rs","byte_start":257,"byte_end":278,"line_start":7,"line_end":7,"column_start":9,"column_end":30,"is_primary":true,"text":[{"text":"pub use openvx_core::c_api::*;","highlight_start":9,"highlight_end":30}],"label":"the name `vx_graph_parameter` in the type namespace is first re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-ffi/src/lib.rs","byte_start":324,"byte_end":353,"line_start":9,"line_end":9,"column_start":9,"column_end":38,"is_primary":false,"text":[{"text":"pub use openvx_core::unified_c_api::*;","highlight_start":9,"highlight_end":38}],"label":"but the name `vx_graph_parameter` in the type namespace is also re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: ambiguous glob re-exports\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-ffi/src/lib.rs:7:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m7\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mthe name `vx_graph_parameter` in the type namespace is first re-exported here\u001b[0m\n\u001b[1m\u001b[94m8\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api_data::*;\n\u001b[1m\u001b[94m9\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::unified_c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m-----------------------------\u001b[0m \u001b[1m\u001b[94mbut the name `vx_graph_parameter` in the type namespace is also re-exported here\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"ambiguous glob re-exports","code":{"code":"ambiguous_glob_reexports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-ffi/src/lib.rs","byte_start":257,"byte_end":278,"line_start":7,"line_end":7,"column_start":9,"column_end":30,"is_primary":true,"text":[{"text":"pub use openvx_core::c_api::*;","highlight_start":9,"highlight_end":30}],"label":"the name `VxImport` in the type namespace is first re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-ffi/src/lib.rs","byte_start":324,"byte_end":353,"line_start":9,"line_end":9,"column_start":9,"column_end":38,"is_primary":false,"text":[{"text":"pub use openvx_core::unified_c_api::*;","highlight_start":9,"highlight_end":38}],"label":"but the name `VxImport` in the type namespace is also re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: ambiguous glob re-exports\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-ffi/src/lib.rs:7:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m7\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mthe name `VxImport` in the type namespace is first re-exported here\u001b[0m\n\u001b[1m\u001b[94m8\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api_data::*;\n\u001b[1m\u001b[94m9\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::unified_c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m-----------------------------\u001b[0m \u001b[1m\u001b[94mbut the name `VxImport` in the type namespace is also re-exported here\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"ambiguous glob re-exports","code":{"code":"ambiguous_glob_reexports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-ffi/src/lib.rs","byte_start":257,"byte_end":278,"line_start":7,"line_end":7,"column_start":9,"column_end":30,"is_primary":true,"text":[{"text":"pub use openvx_core::c_api::*;","highlight_start":9,"highlight_end":30}],"label":"the name `vx_import` in the type namespace is first re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-ffi/src/lib.rs","byte_start":324,"byte_end":353,"line_start":9,"line_end":9,"column_start":9,"column_end":38,"is_primary":false,"text":[{"text":"pub use openvx_core::unified_c_api::*;","highlight_start":9,"highlight_end":38}],"label":"but the name `vx_import` in the type namespace is also re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: ambiguous glob re-exports\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-ffi/src/lib.rs:7:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m7\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mthe name `vx_import` in the type namespace is first re-exported here\u001b[0m\n\u001b[1m\u001b[94m8\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api_data::*;\n\u001b[1m\u001b[94m9\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::unified_c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m-----------------------------\u001b[0m \u001b[1m\u001b[94mbut the name `vx_import` in the type namespace is also re-exported here\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"ambiguous glob re-exports","code":{"code":"ambiguous_glob_reexports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-ffi/src/lib.rs","byte_start":257,"byte_end":278,"line_start":7,"line_end":7,"column_start":9,"column_end":30,"is_primary":true,"text":[{"text":"pub use openvx_core::c_api::*;","highlight_start":9,"highlight_end":30}],"label":"the name `VxTarget` in the type namespace is first re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-ffi/src/lib.rs","byte_start":324,"byte_end":353,"line_start":9,"line_end":9,"column_start":9,"column_end":38,"is_primary":false,"text":[{"text":"pub use openvx_core::unified_c_api::*;","highlight_start":9,"highlight_end":38}],"label":"but the name `VxTarget` in the type namespace is also re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: ambiguous glob re-exports\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-ffi/src/lib.rs:7:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m7\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mthe name `VxTarget` in the type namespace is first re-exported here\u001b[0m\n\u001b[1m\u001b[94m8\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api_data::*;\n\u001b[1m\u001b[94m9\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::unified_c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m-----------------------------\u001b[0m \u001b[1m\u001b[94mbut the name `VxTarget` in the type namespace is also re-exported here\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"ambiguous glob re-exports","code":{"code":"ambiguous_glob_reexports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-ffi/src/lib.rs","byte_start":257,"byte_end":278,"line_start":7,"line_end":7,"column_start":9,"column_end":30,"is_primary":true,"text":[{"text":"pub use openvx_core::c_api::*;","highlight_start":9,"highlight_end":30}],"label":"the name `vx_target` in the type namespace is first re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-ffi/src/lib.rs","byte_start":324,"byte_end":353,"line_start":9,"line_end":9,"column_start":9,"column_end":38,"is_primary":false,"text":[{"text":"pub use openvx_core::unified_c_api::*;","highlight_start":9,"highlight_end":38}],"label":"but the name `vx_target` in the type namespace is also re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: ambiguous glob re-exports\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-ffi/src/lib.rs:7:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m7\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mthe name `vx_target` in the type namespace is first re-exported here\u001b[0m\n\u001b[1m\u001b[94m8\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api_data::*;\n\u001b[1m\u001b[94m9\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::unified_c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m-----------------------------\u001b[0m \u001b[1m\u001b[94mbut the name `vx_target` in the type namespace is also re-exported here\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"ambiguous glob re-exports","code":{"code":"ambiguous_glob_reexports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-ffi/src/lib.rs","byte_start":257,"byte_end":278,"line_start":7,"line_end":7,"column_start":9,"column_end":30,"is_primary":true,"text":[{"text":"pub use openvx_core::c_api::*;","highlight_start":9,"highlight_end":30}],"label":"the name `CONTEXTS` in the value namespace is first re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-ffi/src/lib.rs","byte_start":324,"byte_end":353,"line_start":9,"line_end":9,"column_start":9,"column_end":38,"is_primary":false,"text":[{"text":"pub use openvx_core::unified_c_api::*;","highlight_start":9,"highlight_end":38}],"label":"but the name `CONTEXTS` in the value namespace is also re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: ambiguous glob re-exports\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-ffi/src/lib.rs:7:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m7\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mthe name `CONTEXTS` in the value namespace is first re-exported here\u001b[0m\n\u001b[1m\u001b[94m8\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api_data::*;\n\u001b[1m\u001b[94m9\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::unified_c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m-----------------------------\u001b[0m \u001b[1m\u001b[94mbut the name `CONTEXTS` in the value namespace is also re-exported here\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"ambiguous glob re-exports","code":{"code":"ambiguous_glob_reexports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-ffi/src/lib.rs","byte_start":257,"byte_end":278,"line_start":7,"line_end":7,"column_start":9,"column_end":30,"is_primary":true,"text":[{"text":"pub use openvx_core::c_api::*;","highlight_start":9,"highlight_end":30}],"label":"the name `KERNELS` in the value namespace is first re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-ffi/src/lib.rs","byte_start":324,"byte_end":353,"line_start":9,"line_end":9,"column_start":9,"column_end":38,"is_primary":false,"text":[{"text":"pub use openvx_core::unified_c_api::*;","highlight_start":9,"highlight_end":38}],"label":"but the name `KERNELS` in the value namespace is also re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: ambiguous glob re-exports\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-ffi/src/lib.rs:7:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m7\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mthe name `KERNELS` in the value namespace is first re-exported here\u001b[0m\n\u001b[1m\u001b[94m8\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api_data::*;\n\u001b[1m\u001b[94m9\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::unified_c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m-----------------------------\u001b[0m \u001b[1m\u001b[94mbut the name `KERNELS` in the value namespace is also re-exported here\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"ambiguous glob re-exports","code":{"code":"ambiguous_glob_reexports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-ffi/src/lib.rs","byte_start":257,"byte_end":278,"line_start":7,"line_end":7,"column_start":9,"column_end":30,"is_primary":true,"text":[{"text":"pub use openvx_core::c_api::*;","highlight_start":9,"highlight_end":30}],"label":"the name `PARAMETERS` in the value namespace is first re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-ffi/src/lib.rs","byte_start":324,"byte_end":353,"line_start":9,"line_end":9,"column_start":9,"column_end":38,"is_primary":false,"text":[{"text":"pub use openvx_core::unified_c_api::*;","highlight_start":9,"highlight_end":38}],"label":"but the name `PARAMETERS` in the value namespace is also re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: ambiguous glob re-exports\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-ffi/src/lib.rs:7:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m7\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mthe name `PARAMETERS` in the value namespace is first re-exported here\u001b[0m\n\u001b[1m\u001b[94m8\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api_data::*;\n\u001b[1m\u001b[94m9\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::unified_c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m-----------------------------\u001b[0m \u001b[1m\u001b[94mbut the name `PARAMETERS` in the value namespace is also re-exported here\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"ambiguous glob re-exports","code":{"code":"ambiguous_glob_reexports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-ffi/src/lib.rs","byte_start":257,"byte_end":278,"line_start":7,"line_end":7,"column_start":9,"column_end":30,"is_primary":true,"text":[{"text":"pub use openvx_core::c_api::*;","highlight_start":9,"highlight_end":30}],"label":"the name `VX_TYPE_CONTEXT` in the value namespace is first re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-ffi/src/lib.rs","byte_start":324,"byte_end":353,"line_start":9,"line_end":9,"column_start":9,"column_end":38,"is_primary":false,"text":[{"text":"pub use openvx_core::unified_c_api::*;","highlight_start":9,"highlight_end":38}],"label":"but the name `VX_TYPE_CONTEXT` in the value namespace is also re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: ambiguous glob re-exports\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-ffi/src/lib.rs:7:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m7\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mthe name `VX_TYPE_CONTEXT` in the value namespace is first re-exported here\u001b[0m\n\u001b[1m\u001b[94m8\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api_data::*;\n\u001b[1m\u001b[94m9\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::unified_c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m-----------------------------\u001b[0m \u001b[1m\u001b[94mbut the name `VX_TYPE_CONTEXT` in the value namespace is also re-exported here\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"ambiguous glob re-exports","code":{"code":"ambiguous_glob_reexports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-ffi/src/lib.rs","byte_start":257,"byte_end":278,"line_start":7,"line_end":7,"column_start":9,"column_end":30,"is_primary":true,"text":[{"text":"pub use openvx_core::c_api::*;","highlight_start":9,"highlight_end":30}],"label":"the name `VX_TYPE_GRAPH` in the value namespace is first re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-ffi/src/lib.rs","byte_start":324,"byte_end":353,"line_start":9,"line_end":9,"column_start":9,"column_end":38,"is_primary":false,"text":[{"text":"pub use openvx_core::unified_c_api::*;","highlight_start":9,"highlight_end":38}],"label":"but the name `VX_TYPE_GRAPH` in the value namespace is also re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: ambiguous glob re-exports\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-ffi/src/lib.rs:7:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m7\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mthe name `VX_TYPE_GRAPH` in the value namespace is first re-exported here\u001b[0m\n\u001b[1m\u001b[94m8\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api_data::*;\n\u001b[1m\u001b[94m9\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::unified_c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m-----------------------------\u001b[0m \u001b[1m\u001b[94mbut the name `VX_TYPE_GRAPH` in the value namespace is also re-exported here\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"ambiguous glob re-exports","code":{"code":"ambiguous_glob_reexports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-ffi/src/lib.rs","byte_start":257,"byte_end":278,"line_start":7,"line_end":7,"column_start":9,"column_end":30,"is_primary":true,"text":[{"text":"pub use openvx_core::c_api::*;","highlight_start":9,"highlight_end":30}],"label":"the name `VX_TYPE_NODE` in the value namespace is first re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-ffi/src/lib.rs","byte_start":324,"byte_end":353,"line_start":9,"line_end":9,"column_start":9,"column_end":38,"is_primary":false,"text":[{"text":"pub use openvx_core::unified_c_api::*;","highlight_start":9,"highlight_end":38}],"label":"but the name `VX_TYPE_NODE` in the value namespace is also re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: ambiguous glob re-exports\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-ffi/src/lib.rs:7:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m7\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mthe name `VX_TYPE_NODE` in the value namespace is first re-exported here\u001b[0m\n\u001b[1m\u001b[94m8\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api_data::*;\n\u001b[1m\u001b[94m9\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::unified_c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m-----------------------------\u001b[0m \u001b[1m\u001b[94mbut the name `VX_TYPE_NODE` in the value namespace is also re-exported here\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"ambiguous glob re-exports","code":{"code":"ambiguous_glob_reexports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-ffi/src/lib.rs","byte_start":257,"byte_end":278,"line_start":7,"line_end":7,"column_start":9,"column_end":30,"is_primary":true,"text":[{"text":"pub use openvx_core::c_api::*;","highlight_start":9,"highlight_end":30}],"label":"the name `VX_TYPE_KERNEL` in the value namespace is first re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-ffi/src/lib.rs","byte_start":324,"byte_end":353,"line_start":9,"line_end":9,"column_start":9,"column_end":38,"is_primary":false,"text":[{"text":"pub use openvx_core::unified_c_api::*;","highlight_start":9,"highlight_end":38}],"label":"but the name `VX_TYPE_KERNEL` in the value namespace is also re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: ambiguous glob re-exports\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-ffi/src/lib.rs:7:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m7\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mthe name `VX_TYPE_KERNEL` in the value namespace is first re-exported here\u001b[0m\n\u001b[1m\u001b[94m8\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api_data::*;\n\u001b[1m\u001b[94m9\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::unified_c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m-----------------------------\u001b[0m \u001b[1m\u001b[94mbut the name `VX_TYPE_KERNEL` in the value namespace is also re-exported here\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"ambiguous glob re-exports","code":{"code":"ambiguous_glob_reexports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-ffi/src/lib.rs","byte_start":257,"byte_end":278,"line_start":7,"line_end":7,"column_start":9,"column_end":30,"is_primary":true,"text":[{"text":"pub use openvx_core::c_api::*;","highlight_start":9,"highlight_end":30}],"label":"the name `VX_TYPE_PARAMETER` in the value namespace is first re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-ffi/src/lib.rs","byte_start":324,"byte_end":353,"line_start":9,"line_end":9,"column_start":9,"column_end":38,"is_primary":false,"text":[{"text":"pub use openvx_core::unified_c_api::*;","highlight_start":9,"highlight_end":38}],"label":"but the name `VX_TYPE_PARAMETER` in the value namespace is also re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: ambiguous glob re-exports\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-ffi/src/lib.rs:7:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m7\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mthe name `VX_TYPE_PARAMETER` in the value namespace is first re-exported here\u001b[0m\n\u001b[1m\u001b[94m8\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api_data::*;\n\u001b[1m\u001b[94m9\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::unified_c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m-----------------------------\u001b[0m \u001b[1m\u001b[94mbut the name `VX_TYPE_PARAMETER` in the value namespace is also re-exported here\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"ambiguous glob re-exports","code":{"code":"ambiguous_glob_reexports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-ffi/src/lib.rs","byte_start":257,"byte_end":278,"line_start":7,"line_end":7,"column_start":9,"column_end":30,"is_primary":true,"text":[{"text":"pub use openvx_core::c_api::*;","highlight_start":9,"highlight_end":30}],"label":"the name `VX_TYPE_SCALAR` in the value namespace is first re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-ffi/src/lib.rs","byte_start":324,"byte_end":353,"line_start":9,"line_end":9,"column_start":9,"column_end":38,"is_primary":false,"text":[{"text":"pub use openvx_core::unified_c_api::*;","highlight_start":9,"highlight_end":38}],"label":"but the name `VX_TYPE_SCALAR` in the value namespace is also re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: ambiguous glob re-exports\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-ffi/src/lib.rs:7:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m7\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mthe name `VX_TYPE_SCALAR` in the value namespace is first re-exported here\u001b[0m\n\u001b[1m\u001b[94m8\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api_data::*;\n\u001b[1m\u001b[94m9\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::unified_c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m-----------------------------\u001b[0m \u001b[1m\u001b[94mbut the name `VX_TYPE_SCALAR` in the value namespace is also re-exported here\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"ambiguous glob re-exports","code":{"code":"ambiguous_glob_reexports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-ffi/src/lib.rs","byte_start":257,"byte_end":278,"line_start":7,"line_end":7,"column_start":9,"column_end":30,"is_primary":true,"text":[{"text":"pub use openvx_core::c_api::*;","highlight_start":9,"highlight_end":30}],"label":"the name `VX_TYPE_IMAGE` in the value namespace is first re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-ffi/src/lib.rs","byte_start":324,"byte_end":353,"line_start":9,"line_end":9,"column_start":9,"column_end":38,"is_primary":false,"text":[{"text":"pub use openvx_core::unified_c_api::*;","highlight_start":9,"highlight_end":38}],"label":"but the name `VX_TYPE_IMAGE` in the value namespace is also re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: ambiguous glob re-exports\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-ffi/src/lib.rs:7:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m7\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mthe name `VX_TYPE_IMAGE` in the value namespace is first re-exported here\u001b[0m\n\u001b[1m\u001b[94m8\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api_data::*;\n\u001b[1m\u001b[94m9\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::unified_c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m-----------------------------\u001b[0m \u001b[1m\u001b[94mbut the name `VX_TYPE_IMAGE` in the value namespace is also re-exported here\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"ambiguous glob re-exports","code":{"code":"ambiguous_glob_reexports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-ffi/src/lib.rs","byte_start":257,"byte_end":278,"line_start":7,"line_end":7,"column_start":9,"column_end":30,"is_primary":true,"text":[{"text":"pub use openvx_core::c_api::*;","highlight_start":9,"highlight_end":30}],"label":"the name `VX_TYPE_ARRAY` in the value namespace is first re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-ffi/src/lib.rs","byte_start":324,"byte_end":353,"line_start":9,"line_end":9,"column_start":9,"column_end":38,"is_primary":false,"text":[{"text":"pub use openvx_core::unified_c_api::*;","highlight_start":9,"highlight_end":38}],"label":"but the name `VX_TYPE_ARRAY` in the value namespace is also re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: ambiguous glob re-exports\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-ffi/src/lib.rs:7:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m7\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mthe name `VX_TYPE_ARRAY` in the value namespace is first re-exported here\u001b[0m\n\u001b[1m\u001b[94m8\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api_data::*;\n\u001b[1m\u001b[94m9\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::unified_c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m-----------------------------\u001b[0m \u001b[1m\u001b[94mbut the name `VX_TYPE_ARRAY` in the value namespace is also re-exported here\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"ambiguous glob re-exports","code":{"code":"ambiguous_glob_reexports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-ffi/src/lib.rs","byte_start":257,"byte_end":278,"line_start":7,"line_end":7,"column_start":9,"column_end":30,"is_primary":true,"text":[{"text":"pub use openvx_core::c_api::*;","highlight_start":9,"highlight_end":30}],"label":"the name `VX_TYPE_MATRIX` in the value namespace is first re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-ffi/src/lib.rs","byte_start":324,"byte_end":353,"line_start":9,"line_end":9,"column_start":9,"column_end":38,"is_primary":false,"text":[{"text":"pub use openvx_core::unified_c_api::*;","highlight_start":9,"highlight_end":38}],"label":"but the name `VX_TYPE_MATRIX` in the value namespace is also re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: ambiguous glob re-exports\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-ffi/src/lib.rs:7:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m7\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mthe name `VX_TYPE_MATRIX` in the value namespace is first re-exported here\u001b[0m\n\u001b[1m\u001b[94m8\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api_data::*;\n\u001b[1m\u001b[94m9\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::unified_c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m-----------------------------\u001b[0m \u001b[1m\u001b[94mbut the name `VX_TYPE_MATRIX` in the value namespace is also re-exported here\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"ambiguous glob re-exports","code":{"code":"ambiguous_glob_reexports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-ffi/src/lib.rs","byte_start":257,"byte_end":278,"line_start":7,"line_end":7,"column_start":9,"column_end":30,"is_primary":true,"text":[{"text":"pub use openvx_core::c_api::*;","highlight_start":9,"highlight_end":30}],"label":"the name `VX_TYPE_CONVOLUTION` in the value namespace is first re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-ffi/src/lib.rs","byte_start":324,"byte_end":353,"line_start":9,"line_end":9,"column_start":9,"column_end":38,"is_primary":false,"text":[{"text":"pub use openvx_core::unified_c_api::*;","highlight_start":9,"highlight_end":38}],"label":"but the name `VX_TYPE_CONVOLUTION` in the value namespace is also re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: ambiguous glob re-exports\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-ffi/src/lib.rs:7:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m7\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mthe name `VX_TYPE_CONVOLUTION` in the value namespace is first re-exported here\u001b[0m\n\u001b[1m\u001b[94m8\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api_data::*;\n\u001b[1m\u001b[94m9\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::unified_c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m-----------------------------\u001b[0m \u001b[1m\u001b[94mbut the name `VX_TYPE_CONVOLUTION` in the value namespace is also re-exported here\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"ambiguous glob re-exports","code":{"code":"ambiguous_glob_reexports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-ffi/src/lib.rs","byte_start":257,"byte_end":278,"line_start":7,"line_end":7,"column_start":9,"column_end":30,"is_primary":true,"text":[{"text":"pub use openvx_core::c_api::*;","highlight_start":9,"highlight_end":30}],"label":"the name `VX_TYPE_THRESHOLD` in the value namespace is first re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-ffi/src/lib.rs","byte_start":324,"byte_end":353,"line_start":9,"line_end":9,"column_start":9,"column_end":38,"is_primary":false,"text":[{"text":"pub use openvx_core::unified_c_api::*;","highlight_start":9,"highlight_end":38}],"label":"but the name `VX_TYPE_THRESHOLD` in the value namespace is also re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: ambiguous glob re-exports\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-ffi/src/lib.rs:7:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m7\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mthe name `VX_TYPE_THRESHOLD` in the value namespace is first re-exported here\u001b[0m\n\u001b[1m\u001b[94m8\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api_data::*;\n\u001b[1m\u001b[94m9\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::unified_c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m-----------------------------\u001b[0m \u001b[1m\u001b[94mbut the name `VX_TYPE_THRESHOLD` in the value namespace is also re-exported here\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"ambiguous glob re-exports","code":{"code":"ambiguous_glob_reexports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-ffi/src/lib.rs","byte_start":257,"byte_end":278,"line_start":7,"line_end":7,"column_start":9,"column_end":30,"is_primary":true,"text":[{"text":"pub use openvx_core::c_api::*;","highlight_start":9,"highlight_end":30}],"label":"the name `VX_TYPE_PYRAMID` in the value namespace is first re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-ffi/src/lib.rs","byte_start":324,"byte_end":353,"line_start":9,"line_end":9,"column_start":9,"column_end":38,"is_primary":false,"text":[{"text":"pub use openvx_core::unified_c_api::*;","highlight_start":9,"highlight_end":38}],"label":"but the name `VX_TYPE_PYRAMID` in the value namespace is also re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: ambiguous glob re-exports\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-ffi/src/lib.rs:7:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m7\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mthe name `VX_TYPE_PYRAMID` in the value namespace is first re-exported here\u001b[0m\n\u001b[1m\u001b[94m8\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api_data::*;\n\u001b[1m\u001b[94m9\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::unified_c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m-----------------------------\u001b[0m \u001b[1m\u001b[94mbut the name `VX_TYPE_PYRAMID` in the value namespace is also re-exported here\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"ambiguous glob re-exports","code":{"code":"ambiguous_glob_reexports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-ffi/src/lib.rs","byte_start":257,"byte_end":278,"line_start":7,"line_end":7,"column_start":9,"column_end":30,"is_primary":true,"text":[{"text":"pub use openvx_core::c_api::*;","highlight_start":9,"highlight_end":30}],"label":"the name `VX_TYPE_LUT` in the value namespace is first re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-ffi/src/lib.rs","byte_start":324,"byte_end":353,"line_start":9,"line_end":9,"column_start":9,"column_end":38,"is_primary":false,"text":[{"text":"pub use openvx_core::unified_c_api::*;","highlight_start":9,"highlight_end":38}],"label":"but the name `VX_TYPE_LUT` in the value namespace is also re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: ambiguous glob re-exports\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-ffi/src/lib.rs:7:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m7\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mthe name `VX_TYPE_LUT` in the value namespace is first re-exported here\u001b[0m\n\u001b[1m\u001b[94m8\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api_data::*;\n\u001b[1m\u001b[94m9\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::unified_c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m-----------------------------\u001b[0m \u001b[1m\u001b[94mbut the name `VX_TYPE_LUT` in the value namespace is also re-exported here\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"ambiguous glob re-exports","code":{"code":"ambiguous_glob_reexports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-ffi/src/lib.rs","byte_start":257,"byte_end":278,"line_start":7,"line_end":7,"column_start":9,"column_end":30,"is_primary":true,"text":[{"text":"pub use openvx_core::c_api::*;","highlight_start":9,"highlight_end":30}],"label":"the name `VX_PARAMETER_INDEX` in the value namespace is first re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-ffi/src/lib.rs","byte_start":324,"byte_end":353,"line_start":9,"line_end":9,"column_start":9,"column_end":38,"is_primary":false,"text":[{"text":"pub use openvx_core::unified_c_api::*;","highlight_start":9,"highlight_end":38}],"label":"but the name `VX_PARAMETER_INDEX` in the value namespace is also re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: ambiguous glob re-exports\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-ffi/src/lib.rs:7:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m7\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mthe name `VX_PARAMETER_INDEX` in the value namespace is first re-exported here\u001b[0m\n\u001b[1m\u001b[94m8\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api_data::*;\n\u001b[1m\u001b[94m9\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::unified_c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m-----------------------------\u001b[0m \u001b[1m\u001b[94mbut the name `VX_PARAMETER_INDEX` in the value namespace is also re-exported here\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"ambiguous glob re-exports","code":{"code":"ambiguous_glob_reexports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-ffi/src/lib.rs","byte_start":257,"byte_end":278,"line_start":7,"line_end":7,"column_start":9,"column_end":30,"is_primary":true,"text":[{"text":"pub use openvx_core::c_api::*;","highlight_start":9,"highlight_end":30}],"label":"the name `VX_PARAMETER_DIRECTION` in the value namespace is first re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-ffi/src/lib.rs","byte_start":324,"byte_end":353,"line_start":9,"line_end":9,"column_start":9,"column_end":38,"is_primary":false,"text":[{"text":"pub use openvx_core::unified_c_api::*;","highlight_start":9,"highlight_end":38}],"label":"but the name `VX_PARAMETER_DIRECTION` in the value namespace is also re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: ambiguous glob re-exports\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-ffi/src/lib.rs:7:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m7\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mthe name `VX_PARAMETER_DIRECTION` in the value namespace is first re-exported here\u001b[0m\n\u001b[1m\u001b[94m8\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api_data::*;\n\u001b[1m\u001b[94m9\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::unified_c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m-----------------------------\u001b[0m \u001b[1m\u001b[94mbut the name `VX_PARAMETER_DIRECTION` in the value namespace is also re-exported here\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"ambiguous glob re-exports","code":{"code":"ambiguous_glob_reexports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-ffi/src/lib.rs","byte_start":257,"byte_end":278,"line_start":7,"line_end":7,"column_start":9,"column_end":30,"is_primary":true,"text":[{"text":"pub use openvx_core::c_api::*;","highlight_start":9,"highlight_end":30}],"label":"the name `VX_PARAMETER_TYPE` in the value namespace is first re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-ffi/src/lib.rs","byte_start":324,"byte_end":353,"line_start":9,"line_end":9,"column_start":9,"column_end":38,"is_primary":false,"text":[{"text":"pub use openvx_core::unified_c_api::*;","highlight_start":9,"highlight_end":38}],"label":"but the name `VX_PARAMETER_TYPE` in the value namespace is also re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: ambiguous glob re-exports\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-ffi/src/lib.rs:7:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m7\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mthe name `VX_PARAMETER_TYPE` in the value namespace is first re-exported here\u001b[0m\n\u001b[1m\u001b[94m8\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api_data::*;\n\u001b[1m\u001b[94m9\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::unified_c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m-----------------------------\u001b[0m \u001b[1m\u001b[94mbut the name `VX_PARAMETER_TYPE` in the value namespace is also re-exported here\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"ambiguous glob re-exports","code":{"code":"ambiguous_glob_reexports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-ffi/src/lib.rs","byte_start":257,"byte_end":278,"line_start":7,"line_end":7,"column_start":9,"column_end":30,"is_primary":true,"text":[{"text":"pub use openvx_core::c_api::*;","highlight_start":9,"highlight_end":30}],"label":"the name `VX_PARAMETER_REF` in the value namespace is first re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-ffi/src/lib.rs","byte_start":324,"byte_end":353,"line_start":9,"line_end":9,"column_start":9,"column_end":38,"is_primary":false,"text":[{"text":"pub use openvx_core::unified_c_api::*;","highlight_start":9,"highlight_end":38}],"label":"but the name `VX_PARAMETER_REF` in the value namespace is also re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: ambiguous glob re-exports\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-ffi/src/lib.rs:7:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m7\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mthe name `VX_PARAMETER_REF` in the value namespace is first re-exported here\u001b[0m\n\u001b[1m\u001b[94m8\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api_data::*;\n\u001b[1m\u001b[94m9\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::unified_c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m-----------------------------\u001b[0m \u001b[1m\u001b[94mbut the name `VX_PARAMETER_REF` in the value namespace is also re-exported here\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"ambiguous glob re-exports","code":{"code":"ambiguous_glob_reexports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-ffi/src/lib.rs","byte_start":257,"byte_end":278,"line_start":7,"line_end":7,"column_start":9,"column_end":30,"is_primary":true,"text":[{"text":"pub use openvx_core::c_api::*;","highlight_start":9,"highlight_end":30}],"label":"the name `VX_DF_IMAGE_U8` in the value namespace is first re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-ffi/src/lib.rs","byte_start":324,"byte_end":353,"line_start":9,"line_end":9,"column_start":9,"column_end":38,"is_primary":false,"text":[{"text":"pub use openvx_core::unified_c_api::*;","highlight_start":9,"highlight_end":38}],"label":"but the name `VX_DF_IMAGE_U8` in the value namespace is also re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: ambiguous glob re-exports\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-ffi/src/lib.rs:7:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m7\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mthe name `VX_DF_IMAGE_U8` in the value namespace is first re-exported here\u001b[0m\n\u001b[1m\u001b[94m8\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api_data::*;\n\u001b[1m\u001b[94m9\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::unified_c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m-----------------------------\u001b[0m \u001b[1m\u001b[94mbut the name `VX_DF_IMAGE_U8` in the value namespace is also re-exported here\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"ambiguous glob re-exports","code":{"code":"ambiguous_glob_reexports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-ffi/src/lib.rs","byte_start":257,"byte_end":278,"line_start":7,"line_end":7,"column_start":9,"column_end":30,"is_primary":true,"text":[{"text":"pub use openvx_core::c_api::*;","highlight_start":9,"highlight_end":30}],"label":"the name `VX_DF_IMAGE_U16` in the value namespace is first re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-ffi/src/lib.rs","byte_start":324,"byte_end":353,"line_start":9,"line_end":9,"column_start":9,"column_end":38,"is_primary":false,"text":[{"text":"pub use openvx_core::unified_c_api::*;","highlight_start":9,"highlight_end":38}],"label":"but the name `VX_DF_IMAGE_U16` in the value namespace is also re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: ambiguous glob re-exports\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-ffi/src/lib.rs:7:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m7\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mthe name `VX_DF_IMAGE_U16` in the value namespace is first re-exported here\u001b[0m\n\u001b[1m\u001b[94m8\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api_data::*;\n\u001b[1m\u001b[94m9\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::unified_c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m-----------------------------\u001b[0m \u001b[1m\u001b[94mbut the name `VX_DF_IMAGE_U16` in the value namespace is also re-exported here\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"ambiguous glob re-exports","code":{"code":"ambiguous_glob_reexports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-ffi/src/lib.rs","byte_start":257,"byte_end":278,"line_start":7,"line_end":7,"column_start":9,"column_end":30,"is_primary":true,"text":[{"text":"pub use openvx_core::c_api::*;","highlight_start":9,"highlight_end":30}],"label":"the name `VX_DF_IMAGE_S16` in the value namespace is first re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-ffi/src/lib.rs","byte_start":324,"byte_end":353,"line_start":9,"line_end":9,"column_start":9,"column_end":38,"is_primary":false,"text":[{"text":"pub use openvx_core::unified_c_api::*;","highlight_start":9,"highlight_end":38}],"label":"but the name `VX_DF_IMAGE_S16` in the value namespace is also re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: ambiguous glob re-exports\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-ffi/src/lib.rs:7:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m7\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mthe name `VX_DF_IMAGE_S16` in the value namespace is first re-exported here\u001b[0m\n\u001b[1m\u001b[94m8\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api_data::*;\n\u001b[1m\u001b[94m9\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::unified_c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m-----------------------------\u001b[0m \u001b[1m\u001b[94mbut the name `VX_DF_IMAGE_S16` in the value namespace is also re-exported here\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"ambiguous glob re-exports","code":{"code":"ambiguous_glob_reexports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-ffi/src/lib.rs","byte_start":257,"byte_end":278,"line_start":7,"line_end":7,"column_start":9,"column_end":30,"is_primary":true,"text":[{"text":"pub use openvx_core::c_api::*;","highlight_start":9,"highlight_end":30}],"label":"the name `VX_DF_IMAGE_U32` in the value namespace is first re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-ffi/src/lib.rs","byte_start":324,"byte_end":353,"line_start":9,"line_end":9,"column_start":9,"column_end":38,"is_primary":false,"text":[{"text":"pub use openvx_core::unified_c_api::*;","highlight_start":9,"highlight_end":38}],"label":"but the name `VX_DF_IMAGE_U32` in the value namespace is also re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: ambiguous glob re-exports\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-ffi/src/lib.rs:7:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m7\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mthe name `VX_DF_IMAGE_U32` in the value namespace is first re-exported here\u001b[0m\n\u001b[1m\u001b[94m8\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api_data::*;\n\u001b[1m\u001b[94m9\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::unified_c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m-----------------------------\u001b[0m \u001b[1m\u001b[94mbut the name `VX_DF_IMAGE_U32` in the value namespace is also re-exported here\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"ambiguous glob re-exports","code":{"code":"ambiguous_glob_reexports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-ffi/src/lib.rs","byte_start":257,"byte_end":278,"line_start":7,"line_end":7,"column_start":9,"column_end":30,"is_primary":true,"text":[{"text":"pub use openvx_core::c_api::*;","highlight_start":9,"highlight_end":30}],"label":"the name `VX_DF_IMAGE_S32` in the value namespace is first re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-ffi/src/lib.rs","byte_start":324,"byte_end":353,"line_start":9,"line_end":9,"column_start":9,"column_end":38,"is_primary":false,"text":[{"text":"pub use openvx_core::unified_c_api::*;","highlight_start":9,"highlight_end":38}],"label":"but the name `VX_DF_IMAGE_S32` in the value namespace is also re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: ambiguous glob re-exports\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-ffi/src/lib.rs:7:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m7\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mthe name `VX_DF_IMAGE_S32` in the value namespace is first re-exported here\u001b[0m\n\u001b[1m\u001b[94m8\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api_data::*;\n\u001b[1m\u001b[94m9\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::unified_c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m-----------------------------\u001b[0m \u001b[1m\u001b[94mbut the name `VX_DF_IMAGE_S32` in the value namespace is also re-exported here\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"ambiguous glob re-exports","code":{"code":"ambiguous_glob_reexports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-ffi/src/lib.rs","byte_start":257,"byte_end":278,"line_start":7,"line_end":7,"column_start":9,"column_end":30,"is_primary":true,"text":[{"text":"pub use openvx_core::c_api::*;","highlight_start":9,"highlight_end":30}],"label":"the name `VX_DF_IMAGE_RGB` in the value namespace is first re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-ffi/src/lib.rs","byte_start":324,"byte_end":353,"line_start":9,"line_end":9,"column_start":9,"column_end":38,"is_primary":false,"text":[{"text":"pub use openvx_core::unified_c_api::*;","highlight_start":9,"highlight_end":38}],"label":"but the name `VX_DF_IMAGE_RGB` in the value namespace is also re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: ambiguous glob re-exports\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-ffi/src/lib.rs:7:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m7\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mthe name `VX_DF_IMAGE_RGB` in the value namespace is first re-exported here\u001b[0m\n\u001b[1m\u001b[94m8\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api_data::*;\n\u001b[1m\u001b[94m9\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::unified_c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m-----------------------------\u001b[0m \u001b[1m\u001b[94mbut the name `VX_DF_IMAGE_RGB` in the value namespace is also re-exported here\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"ambiguous glob re-exports","code":{"code":"ambiguous_glob_reexports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-ffi/src/lib.rs","byte_start":257,"byte_end":278,"line_start":7,"line_end":7,"column_start":9,"column_end":30,"is_primary":true,"text":[{"text":"pub use openvx_core::c_api::*;","highlight_start":9,"highlight_end":30}],"label":"the name `VX_DF_IMAGE_RGBX` in the value namespace is first re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-ffi/src/lib.rs","byte_start":324,"byte_end":353,"line_start":9,"line_end":9,"column_start":9,"column_end":38,"is_primary":false,"text":[{"text":"pub use openvx_core::unified_c_api::*;","highlight_start":9,"highlight_end":38}],"label":"but the name `VX_DF_IMAGE_RGBX` in the value namespace is also re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: ambiguous glob re-exports\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-ffi/src/lib.rs:7:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m7\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mthe name `VX_DF_IMAGE_RGBX` in the value namespace is first re-exported here\u001b[0m\n\u001b[1m\u001b[94m8\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api_data::*;\n\u001b[1m\u001b[94m9\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::unified_c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m-----------------------------\u001b[0m \u001b[1m\u001b[94mbut the name `VX_DF_IMAGE_RGBX` in the value namespace is also re-exported here\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"ambiguous glob re-exports","code":{"code":"ambiguous_glob_reexports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-ffi/src/lib.rs","byte_start":257,"byte_end":278,"line_start":7,"line_end":7,"column_start":9,"column_end":30,"is_primary":true,"text":[{"text":"pub use openvx_core::c_api::*;","highlight_start":9,"highlight_end":30}],"label":"the name `VX_DF_IMAGE_RGBA` in the value namespace is first re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-ffi/src/lib.rs","byte_start":324,"byte_end":353,"line_start":9,"line_end":9,"column_start":9,"column_end":38,"is_primary":false,"text":[{"text":"pub use openvx_core::unified_c_api::*;","highlight_start":9,"highlight_end":38}],"label":"but the name `VX_DF_IMAGE_RGBA` in the value namespace is also re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: ambiguous glob re-exports\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-ffi/src/lib.rs:7:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m7\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mthe name `VX_DF_IMAGE_RGBA` in the value namespace is first re-exported here\u001b[0m\n\u001b[1m\u001b[94m8\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api_data::*;\n\u001b[1m\u001b[94m9\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::unified_c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m-----------------------------\u001b[0m \u001b[1m\u001b[94mbut the name `VX_DF_IMAGE_RGBA` in the value namespace is also re-exported here\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"ambiguous glob re-exports","code":{"code":"ambiguous_glob_reexports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-ffi/src/lib.rs","byte_start":257,"byte_end":278,"line_start":7,"line_end":7,"column_start":9,"column_end":30,"is_primary":true,"text":[{"text":"pub use openvx_core::c_api::*;","highlight_start":9,"highlight_end":30}],"label":"the name `VX_DF_IMAGE_NV12` in the value namespace is first re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-ffi/src/lib.rs","byte_start":324,"byte_end":353,"line_start":9,"line_end":9,"column_start":9,"column_end":38,"is_primary":false,"text":[{"text":"pub use openvx_core::unified_c_api::*;","highlight_start":9,"highlight_end":38}],"label":"but the name `VX_DF_IMAGE_NV12` in the value namespace is also re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: ambiguous glob re-exports\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-ffi/src/lib.rs:7:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m7\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mthe name `VX_DF_IMAGE_NV12` in the value namespace is first re-exported here\u001b[0m\n\u001b[1m\u001b[94m8\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api_data::*;\n\u001b[1m\u001b[94m9\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::unified_c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m-----------------------------\u001b[0m \u001b[1m\u001b[94mbut the name `VX_DF_IMAGE_NV12` in the value namespace is also re-exported here\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"ambiguous glob re-exports","code":{"code":"ambiguous_glob_reexports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-ffi/src/lib.rs","byte_start":257,"byte_end":278,"line_start":7,"line_end":7,"column_start":9,"column_end":30,"is_primary":true,"text":[{"text":"pub use openvx_core::c_api::*;","highlight_start":9,"highlight_end":30}],"label":"the name `VX_DF_IMAGE_NV21` in the value namespace is first re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-ffi/src/lib.rs","byte_start":324,"byte_end":353,"line_start":9,"line_end":9,"column_start":9,"column_end":38,"is_primary":false,"text":[{"text":"pub use openvx_core::unified_c_api::*;","highlight_start":9,"highlight_end":38}],"label":"but the name `VX_DF_IMAGE_NV21` in the value namespace is also re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: ambiguous glob re-exports\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-ffi/src/lib.rs:7:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m7\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mthe name `VX_DF_IMAGE_NV21` in the value namespace is first re-exported here\u001b[0m\n\u001b[1m\u001b[94m8\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api_data::*;\n\u001b[1m\u001b[94m9\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::unified_c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m-----------------------------\u001b[0m \u001b[1m\u001b[94mbut the name `VX_DF_IMAGE_NV21` in the value namespace is also re-exported here\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"ambiguous glob re-exports","code":{"code":"ambiguous_glob_reexports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-ffi/src/lib.rs","byte_start":257,"byte_end":278,"line_start":7,"line_end":7,"column_start":9,"column_end":30,"is_primary":true,"text":[{"text":"pub use openvx_core::c_api::*;","highlight_start":9,"highlight_end":30}],"label":"the name `VX_DF_IMAGE_UYVY` in the value namespace is first re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-ffi/src/lib.rs","byte_start":324,"byte_end":353,"line_start":9,"line_end":9,"column_start":9,"column_end":38,"is_primary":false,"text":[{"text":"pub use openvx_core::unified_c_api::*;","highlight_start":9,"highlight_end":38}],"label":"but the name `VX_DF_IMAGE_UYVY` in the value namespace is also re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: ambiguous glob re-exports\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-ffi/src/lib.rs:7:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m7\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mthe name `VX_DF_IMAGE_UYVY` in the value namespace is first re-exported here\u001b[0m\n\u001b[1m\u001b[94m8\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api_data::*;\n\u001b[1m\u001b[94m9\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::unified_c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m-----------------------------\u001b[0m \u001b[1m\u001b[94mbut the name `VX_DF_IMAGE_UYVY` in the value namespace is also re-exported here\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"ambiguous glob re-exports","code":{"code":"ambiguous_glob_reexports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-ffi/src/lib.rs","byte_start":257,"byte_end":278,"line_start":7,"line_end":7,"column_start":9,"column_end":30,"is_primary":true,"text":[{"text":"pub use openvx_core::c_api::*;","highlight_start":9,"highlight_end":30}],"label":"the name `VX_DF_IMAGE_YUYV` in the value namespace is first re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-ffi/src/lib.rs","byte_start":324,"byte_end":353,"line_start":9,"line_end":9,"column_start":9,"column_end":38,"is_primary":false,"text":[{"text":"pub use openvx_core::unified_c_api::*;","highlight_start":9,"highlight_end":38}],"label":"but the name `VX_DF_IMAGE_YUYV` in the value namespace is also re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: ambiguous glob re-exports\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-ffi/src/lib.rs:7:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m7\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mthe name `VX_DF_IMAGE_YUYV` in the value namespace is first re-exported here\u001b[0m\n\u001b[1m\u001b[94m8\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api_data::*;\n\u001b[1m\u001b[94m9\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::unified_c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m-----------------------------\u001b[0m \u001b[1m\u001b[94mbut the name `VX_DF_IMAGE_YUYV` in the value namespace is also re-exported here\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"ambiguous glob re-exports","code":{"code":"ambiguous_glob_reexports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-ffi/src/lib.rs","byte_start":257,"byte_end":278,"line_start":7,"line_end":7,"column_start":9,"column_end":30,"is_primary":true,"text":[{"text":"pub use openvx_core::c_api::*;","highlight_start":9,"highlight_end":30}],"label":"the name `VX_DF_IMAGE_IYUV` in the value namespace is first re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-ffi/src/lib.rs","byte_start":324,"byte_end":353,"line_start":9,"line_end":9,"column_start":9,"column_end":38,"is_primary":false,"text":[{"text":"pub use openvx_core::unified_c_api::*;","highlight_start":9,"highlight_end":38}],"label":"but the name `VX_DF_IMAGE_IYUV` in the value namespace is also re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: ambiguous glob re-exports\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-ffi/src/lib.rs:7:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m7\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mthe name `VX_DF_IMAGE_IYUV` in the value namespace is first re-exported here\u001b[0m\n\u001b[1m\u001b[94m8\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api_data::*;\n\u001b[1m\u001b[94m9\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::unified_c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m-----------------------------\u001b[0m \u001b[1m\u001b[94mbut the name `VX_DF_IMAGE_IYUV` in the value namespace is also re-exported here\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"ambiguous glob re-exports","code":{"code":"ambiguous_glob_reexports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-ffi/src/lib.rs","byte_start":257,"byte_end":278,"line_start":7,"line_end":7,"column_start":9,"column_end":30,"is_primary":true,"text":[{"text":"pub use openvx_core::c_api::*;","highlight_start":9,"highlight_end":30}],"label":"the name `VX_DF_IMAGE_YUV4` in the value namespace is first re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-ffi/src/lib.rs","byte_start":324,"byte_end":353,"line_start":9,"line_end":9,"column_start":9,"column_end":38,"is_primary":false,"text":[{"text":"pub use openvx_core::unified_c_api::*;","highlight_start":9,"highlight_end":38}],"label":"but the name `VX_DF_IMAGE_YUV4` in the value namespace is also re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: ambiguous glob re-exports\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-ffi/src/lib.rs:7:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m7\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mthe name `VX_DF_IMAGE_YUV4` in the value namespace is first re-exported here\u001b[0m\n\u001b[1m\u001b[94m8\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api_data::*;\n\u001b[1m\u001b[94m9\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::unified_c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m-----------------------------\u001b[0m \u001b[1m\u001b[94mbut the name `VX_DF_IMAGE_YUV4` in the value namespace is also re-exported here\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"ambiguous glob re-exports","code":{"code":"ambiguous_glob_reexports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-ffi/src/lib.rs","byte_start":288,"byte_end":314,"line_start":8,"line_end":8,"column_start":9,"column_end":35,"is_primary":true,"text":[{"text":"pub use openvx_core::c_api_data::*;","highlight_start":9,"highlight_end":35}],"label":"the name `VX_THRESHOLD_TYPE` in the value namespace is first re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-ffi/src/lib.rs","byte_start":324,"byte_end":353,"line_start":9,"line_end":9,"column_start":9,"column_end":38,"is_primary":false,"text":[{"text":"pub use openvx_core::unified_c_api::*;","highlight_start":9,"highlight_end":38}],"label":"but the name `VX_THRESHOLD_TYPE` in the value namespace is also re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: ambiguous glob re-exports\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-ffi/src/lib.rs:8:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m8\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api_data::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mthe name `VX_THRESHOLD_TYPE` in the value namespace is first re-exported here\u001b[0m\n\u001b[1m\u001b[94m9\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::unified_c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m-----------------------------\u001b[0m \u001b[1m\u001b[94mbut the name `VX_THRESHOLD_TYPE` in the value namespace is also re-exported here\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"ambiguous glob re-exports","code":{"code":"ambiguous_glob_reexports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-ffi/src/lib.rs","byte_start":288,"byte_end":314,"line_start":8,"line_end":8,"column_start":9,"column_end":35,"is_primary":true,"text":[{"text":"pub use openvx_core::c_api_data::*;","highlight_start":9,"highlight_end":35}],"label":"the name `VX_THRESHOLD_DATA_TYPE` in the value namespace is first re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-ffi/src/lib.rs","byte_start":324,"byte_end":353,"line_start":9,"line_end":9,"column_start":9,"column_end":38,"is_primary":false,"text":[{"text":"pub use openvx_core::unified_c_api::*;","highlight_start":9,"highlight_end":38}],"label":"but the name `VX_THRESHOLD_DATA_TYPE` in the value namespace is also re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: ambiguous glob re-exports\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-ffi/src/lib.rs:8:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m8\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api_data::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mthe name `VX_THRESHOLD_DATA_TYPE` in the value namespace is first re-exported here\u001b[0m\n\u001b[1m\u001b[94m9\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::unified_c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m-----------------------------\u001b[0m \u001b[1m\u001b[94mbut the name `VX_THRESHOLD_DATA_TYPE` in the value namespace is also re-exported here\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"ambiguous glob re-exports","code":{"code":"ambiguous_glob_reexports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-ffi/src/lib.rs","byte_start":288,"byte_end":314,"line_start":8,"line_end":8,"column_start":9,"column_end":35,"is_primary":true,"text":[{"text":"pub use openvx_core::c_api_data::*;","highlight_start":9,"highlight_end":35}],"label":"the name `VX_THRESHOLD_TYPE_BINARY` in the value namespace is first re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-ffi/src/lib.rs","byte_start":324,"byte_end":353,"line_start":9,"line_end":9,"column_start":9,"column_end":38,"is_primary":false,"text":[{"text":"pub use openvx_core::unified_c_api::*;","highlight_start":9,"highlight_end":38}],"label":"but the name `VX_THRESHOLD_TYPE_BINARY` in the value namespace is also re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: ambiguous glob re-exports\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-ffi/src/lib.rs:8:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m8\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api_data::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mthe name `VX_THRESHOLD_TYPE_BINARY` in the value namespace is first re-exported here\u001b[0m\n\u001b[1m\u001b[94m9\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::unified_c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m-----------------------------\u001b[0m \u001b[1m\u001b[94mbut the name `VX_THRESHOLD_TYPE_BINARY` in the value namespace is also re-exported here\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"ambiguous glob re-exports","code":{"code":"ambiguous_glob_reexports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-ffi/src/lib.rs","byte_start":288,"byte_end":314,"line_start":8,"line_end":8,"column_start":9,"column_end":35,"is_primary":true,"text":[{"text":"pub use openvx_core::c_api_data::*;","highlight_start":9,"highlight_end":35}],"label":"the name `VX_THRESHOLD_TYPE_RANGE` in the value namespace is first re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-ffi/src/lib.rs","byte_start":324,"byte_end":353,"line_start":9,"line_end":9,"column_start":9,"column_end":38,"is_primary":false,"text":[{"text":"pub use openvx_core::unified_c_api::*;","highlight_start":9,"highlight_end":38}],"label":"but the name `VX_THRESHOLD_TYPE_RANGE` in the value namespace is also re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: ambiguous glob re-exports\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-ffi/src/lib.rs:8:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m8\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::c_api_data::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mthe name `VX_THRESHOLD_TYPE_RANGE` in the value namespace is first re-exported here\u001b[0m\n\u001b[1m\u001b[94m9\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::unified_c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m-----------------------------\u001b[0m \u001b[1m\u001b[94mbut the name `VX_THRESHOLD_TYPE_RANGE` in the value namespace is also re-exported here\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"ambiguous glob re-exports","code":{"code":"ambiguous_glob_reexports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-ffi/src/lib.rs","byte_start":324,"byte_end":353,"line_start":9,"line_end":9,"column_start":9,"column_end":38,"is_primary":true,"text":[{"text":"pub use openvx_core::unified_c_api::*;","highlight_start":9,"highlight_end":38}],"label":"the name `VxCArray` in the type namespace is first re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-ffi/src/lib.rs","byte_start":437,"byte_end":460,"line_start":12,"line_end":12,"column_start":9,"column_end":32,"is_primary":false,"text":[{"text":"pub use openvx_buffer::c_api::*;","highlight_start":9,"highlight_end":32}],"label":"but the name `VxCArray` in the type namespace is also re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: ambiguous glob re-exports\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-ffi/src/lib.rs:9:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m 9\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::unified_c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mthe name `VxCArray` in the type namespace is first re-exported here\u001b[0m\n\u001b[1m\u001b[94m...\u001b[0m\n\u001b[1m\u001b[94m12\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_buffer::c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m-----------------------\u001b[0m \u001b[1m\u001b[94mbut the name `VxCArray` in the type namespace is also re-exported here\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"ambiguous glob re-exports","code":{"code":"ambiguous_glob_reexports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-ffi/src/lib.rs","byte_start":324,"byte_end":353,"line_start":9,"line_end":9,"column_start":9,"column_end":38,"is_primary":true,"text":[{"text":"pub use openvx_core::unified_c_api::*;","highlight_start":9,"highlight_end":38}],"label":"the name `vxCreateUniformImage` in the value namespace is first re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-ffi/src/lib.rs","byte_start":470,"byte_end":492,"line_start":13,"line_end":13,"column_start":9,"column_end":31,"is_primary":false,"text":[{"text":"pub use openvx_image::c_api::*;","highlight_start":9,"highlight_end":31}],"label":"but the name `vxCreateUniformImage` in the value namespace is also re-exported here","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: ambiguous glob re-exports\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-ffi/src/lib.rs:9:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m 9\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_core::unified_c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mthe name `vxCreateUniformImage` in the value namespace is first re-exported here\u001b[0m\n\u001b[1m\u001b[94m...\u001b[0m\n\u001b[1m\u001b[94m13\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub use openvx_image::c_api::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m----------------------\u001b[0m \u001b[1m\u001b[94mbut the name `vxCreateUniformImage` in the value namespace is also re-exported here\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"56 warnings emitted","code":null,"level":"warning","spans":[],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: 56 warnings emitted\u001b[0m\n\n"} diff --git a/target/release/.fingerprint/openvx-ffi-c287c272f8bbdadc/test-lib-openvx_ffi b/target/release/.fingerprint/openvx-ffi-c287c272f8bbdadc/test-lib-openvx_ffi new file mode 100644 index 0000000..482ea21 --- /dev/null +++ b/target/release/.fingerprint/openvx-ffi-c287c272f8bbdadc/test-lib-openvx_ffi @@ -0,0 +1 @@ +b25d34d49d7f55bc \ No newline at end of file diff --git a/target/release/.fingerprint/openvx-ffi-c287c272f8bbdadc/test-lib-openvx_ffi.json b/target/release/.fingerprint/openvx-ffi-c287c272f8bbdadc/test-lib-openvx_ffi.json new file mode 100644 index 0000000..dee844e --- /dev/null +++ b/target/release/.fingerprint/openvx-ffi-c287c272f8bbdadc/test-lib-openvx_ffi.json @@ -0,0 +1 @@ +{"rustc":18276270781310494267,"features":"[]","declared_features":"[]","target":101408782484674635,"profile":10220379689200424945,"path":16127627404725493292,"deps":[[4809150008149002099,"openvx_core",false,12695232944250483106],[10311188578765087558,"openvx_vision",false,17472757978421105366],[11101848710733117461,"openvx_buffer",false,12173304525356094307],[13782069936663139603,"openvx_image",false,5415066650095401666]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/openvx-ffi-c287c272f8bbdadc/dep-test-lib-openvx_ffi","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/openvx-ffi-dbe8182ad06dbfb5/lib-openvx_ffi b/target/release/.fingerprint/openvx-ffi-dbe8182ad06dbfb5/lib-openvx_ffi index 4db58b4..7fac85d 100644 --- a/target/release/.fingerprint/openvx-ffi-dbe8182ad06dbfb5/lib-openvx_ffi +++ b/target/release/.fingerprint/openvx-ffi-dbe8182ad06dbfb5/lib-openvx_ffi @@ -1 +1,5 @@ -f8e88df2b9a6fbbf \ No newline at end of file +<<<<<<< HEAD +ae6ab2ee762158ea +======= +f8e88df2b9a6fbbf +>>>>>>> origin/master diff --git a/target/release/.fingerprint/openvx-ffi-dbe8182ad06dbfb5/lib-openvx_ffi.json b/target/release/.fingerprint/openvx-ffi-dbe8182ad06dbfb5/lib-openvx_ffi.json index 76a5485..bebecd2 100644 --- a/target/release/.fingerprint/openvx-ffi-dbe8182ad06dbfb5/lib-openvx_ffi.json +++ b/target/release/.fingerprint/openvx-ffi-dbe8182ad06dbfb5/lib-openvx_ffi.json @@ -1 +1,5 @@ -{"rustc":18276270781310494267,"features":"[]","declared_features":"[]","target":101408782484674635,"profile":2040997289075261528,"path":16127627404725493292,"deps":[[4809150008149002099,"openvx_core",false,7689489909211448678],[10311188578765087558,"openvx_vision",false,8656057287690330579],[11101848710733117461,"openvx_buffer",false,932052772041154188],[13782069936663139603,"openvx_image",false,11391747002150124650]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/openvx-ffi-dbe8182ad06dbfb5/dep-lib-openvx_ffi","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file +<<<<<<< HEAD +{"rustc":18276270781310494267,"features":"[]","declared_features":"[]","target":101408782484674635,"profile":2040997289075261528,"path":16127627404725493292,"deps":[[4809150008149002099,"openvx_core",false,9470229054341921098],[10311188578765087558,"openvx_vision",false,1709737270653318489],[11101848710733117461,"openvx_buffer",false,13846984283981460280],[13782069936663139603,"openvx_image",false,6618711638238676580]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/openvx-ffi-dbe8182ad06dbfb5/dep-lib-openvx_ffi","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} +======= +{"rustc":18276270781310494267,"features":"[]","declared_features":"[]","target":101408782484674635,"profile":2040997289075261528,"path":16127627404725493292,"deps":[[4809150008149002099,"openvx_core",false,7689489909211448678],[10311188578765087558,"openvx_vision",false,8656057287690330579],[11101848710733117461,"openvx_buffer",false,932052772041154188],[13782069936663139603,"openvx_image",false,11391747002150124650]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/openvx-ffi-dbe8182ad06dbfb5/dep-lib-openvx_ffi","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} +>>>>>>> origin/master diff --git a/target/release/.fingerprint/openvx-image-61e05bead289815e/dep-test-lib-openvx_image b/target/release/.fingerprint/openvx-image-61e05bead289815e/dep-test-lib-openvx_image new file mode 100644 index 0000000..c528576 Binary files /dev/null and b/target/release/.fingerprint/openvx-image-61e05bead289815e/dep-test-lib-openvx_image differ diff --git a/target/release/.fingerprint/openvx-image-61e05bead289815e/invoked.timestamp b/target/release/.fingerprint/openvx-image-61e05bead289815e/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/openvx-image-61e05bead289815e/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/openvx-image-61e05bead289815e/output-test-lib-openvx_image b/target/release/.fingerprint/openvx-image-61e05bead289815e/output-test-lib-openvx_image new file mode 100644 index 0000000..2500634 --- /dev/null +++ b/target/release/.fingerprint/openvx-image-61e05bead289815e/output-test-lib-openvx_image @@ -0,0 +1,24 @@ +{"$message_type":"diagnostic","message":"unused imports: `VX_ERROR_INVALID_PARAMETERS`, `VX_ERROR_INVALID_REFERENCE`, `VX_READ_AND_WRITE`, `vx_size`, `vx_status`, and `vx_uint64`","code":{"code":"unused_imports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-image/src/ct_image.rs","byte_start":470,"byte_end":479,"line_start":12,"line_end":12,"column_start":49,"column_end":58,"is_primary":true,"text":[{"text":" vx_context, vx_image, vx_df_image, vx_enum, vx_status,","highlight_start":49,"highlight_end":58}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-image/src/ct_image.rs","byte_start":555,"byte_end":564,"line_start":14,"line_end":14,"column_start":16,"column_end":25,"is_primary":true,"text":[{"text":" vx_uint32, vx_uint64, vx_size,","highlight_start":16,"highlight_end":25}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-image/src/ct_image.rs","byte_start":566,"byte_end":573,"line_start":14,"line_end":14,"column_start":27,"column_end":34,"is_primary":true,"text":[{"text":" vx_uint32, vx_uint64, vx_size,","highlight_start":27,"highlight_end":34}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-image/src/ct_image.rs","byte_start":591,"byte_end":618,"line_start":15,"line_end":15,"column_start":17,"column_end":44,"is_primary":true,"text":[{"text":" VX_SUCCESS, VX_ERROR_INVALID_PARAMETERS, VX_ERROR_INVALID_REFERENCE,","highlight_start":17,"highlight_end":44}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-image/src/ct_image.rs","byte_start":620,"byte_end":646,"line_start":15,"line_end":15,"column_start":46,"column_end":72,"is_primary":true,"text":[{"text":" VX_SUCCESS, VX_ERROR_INVALID_PARAMETERS, VX_ERROR_INVALID_REFERENCE,","highlight_start":46,"highlight_end":72}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-image/src/ct_image.rs","byte_start":681,"byte_end":698,"line_start":16,"line_end":16,"column_start":34,"column_end":51,"is_primary":true,"text":[{"text":" VX_READ_ONLY, VX_WRITE_ONLY, VX_READ_AND_WRITE, VX_MEMORY_TYPE_HOST,","highlight_start":34,"highlight_end":51}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(unused_imports)]` (part of `#[warn(unused)]`) on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"remove the unused imports","code":null,"level":"help","spans":[{"file_name":"openvx-image/src/ct_image.rs","byte_start":468,"byte_end":479,"line_start":12,"line_end":12,"column_start":47,"column_end":58,"is_primary":true,"text":[{"text":" vx_context, vx_image, vx_df_image, vx_enum, vx_status,","highlight_start":47,"highlight_end":58}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null},{"file_name":"openvx-image/src/ct_image.rs","byte_start":553,"byte_end":573,"line_start":14,"line_end":14,"column_start":14,"column_end":34,"is_primary":true,"text":[{"text":" vx_uint32, vx_uint64, vx_size,","highlight_start":14,"highlight_end":34}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null},{"file_name":"openvx-image/src/ct_image.rs","byte_start":589,"byte_end":646,"line_start":15,"line_end":15,"column_start":15,"column_end":72,"is_primary":true,"text":[{"text":" VX_SUCCESS, VX_ERROR_INVALID_PARAMETERS, VX_ERROR_INVALID_REFERENCE,","highlight_start":15,"highlight_end":72}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null},{"file_name":"openvx-image/src/ct_image.rs","byte_start":679,"byte_end":698,"line_start":16,"line_end":16,"column_start":32,"column_end":51,"is_primary":true,"text":[{"text":" VX_READ_ONLY, VX_WRITE_ONLY, VX_READ_AND_WRITE, VX_MEMORY_TYPE_HOST,","highlight_start":32,"highlight_end":51}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused imports: `VX_ERROR_INVALID_PARAMETERS`, `VX_ERROR_INVALID_REFERENCE`, `VX_READ_AND_WRITE`, `vx_size`, `vx_status`, and `vx_uint64`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-image/src/ct_image.rs:12:49\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m12\u001b[0m \u001b[1m\u001b[94m|\u001b[0m vx_context, vx_image, vx_df_image, vx_enum, vx_status,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m\n\u001b[1m\u001b[94m13\u001b[0m \u001b[1m\u001b[94m|\u001b[0m vx_rectangle_t, vx_imagepatch_addressing_t, vx_map_id,\n\u001b[1m\u001b[94m14\u001b[0m \u001b[1m\u001b[94m|\u001b[0m vx_uint32, vx_uint64, vx_size,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m \u001b[1m\u001b[33m^^^^^^^\u001b[0m\n\u001b[1m\u001b[94m15\u001b[0m \u001b[1m\u001b[94m|\u001b[0m VX_SUCCESS, VX_ERROR_INVALID_PARAMETERS, VX_ERROR_INVALID_REFERENCE,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^^^^^^\u001b[0m\n\u001b[1m\u001b[94m16\u001b[0m \u001b[1m\u001b[94m|\u001b[0m VX_READ_ONLY, VX_WRITE_ONLY, VX_READ_AND_WRITE, VX_MEMORY_TYPE_HOST,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m= \u001b[0m\u001b[1mnote\u001b[0m: `#[warn(unused_imports)]` (part of `#[warn(unused)]`) on by default\n\n"} +{"$message_type":"diagnostic","message":"type `CT_Image` should have an upper camel case name","code":{"code":"non_camel_case_types","explanation":null},"level":"warning","spans":[{"file_name":"openvx-image/src/ct_image.rs","byte_start":3328,"byte_end":3336,"line_start":136,"line_end":136,"column_start":10,"column_end":18,"is_primary":true,"text":[{"text":"pub type CT_Image = *mut CT_ImageHdr;","highlight_start":10,"highlight_end":18}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(non_camel_case_types)]` (part of `#[warn(nonstandard_style)]`) on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"convert the identifier to upper camel case","code":null,"level":"help","spans":[{"file_name":"openvx-image/src/ct_image.rs","byte_start":3328,"byte_end":3336,"line_start":136,"line_end":136,"column_start":10,"column_end":18,"is_primary":true,"text":[{"text":"pub type CT_Image = *mut CT_ImageHdr;","highlight_start":10,"highlight_end":18}],"label":null,"suggested_replacement":"CtImage","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: type `CT_Image` should have an upper camel case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-image/src/ct_image.rs:136:10\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m136\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub type CT_Image = *mut CT_ImageHdr;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper camel case: `CtImage`\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m= \u001b[0m\u001b[1mnote\u001b[0m: `#[warn(non_camel_case_types)]` (part of `#[warn(nonstandard_style)]`) on by default\n\n"} +{"$message_type":"diagnostic","message":"unnecessary `unsafe` block","code":{"code":"unused_unsafe","explanation":null},"level":"warning","spans":[{"file_name":"openvx-image/src/c_api.rs","byte_start":2787,"byte_end":2793,"line_start":81,"line_end":81,"column_start":5,"column_end":11,"is_primary":true,"text":[{"text":" unsafe {","highlight_start":5,"highlight_end":11}],"label":"unnecessary `unsafe` block","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(unused_unsafe)]` (part of `#[warn(unused)]`) on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unnecessary `unsafe` block\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-image/src/c_api.rs:81:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m81\u001b[0m \u001b[1m\u001b[94m|\u001b[0m unsafe {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m \u001b[1m\u001b[33munnecessary `unsafe` block\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m= \u001b[0m\u001b[1mnote\u001b[0m: `#[warn(unused_unsafe)]` (part of `#[warn(unused)]`) on by default\n\n"} +{"$message_type":"diagnostic","message":"unnecessary `unsafe` block","code":{"code":"unused_unsafe","explanation":null},"level":"warning","spans":[{"file_name":"openvx-image/src/c_api.rs","byte_start":3016,"byte_end":3022,"line_start":88,"line_end":88,"column_start":5,"column_end":11,"is_primary":true,"text":[{"text":" unsafe {","highlight_start":5,"highlight_end":11}],"label":"unnecessary `unsafe` block","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unnecessary `unsafe` block\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-image/src/c_api.rs:88:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m88\u001b[0m \u001b[1m\u001b[94m|\u001b[0m unsafe {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m \u001b[1m\u001b[33munnecessary `unsafe` block\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `uv_height`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-image/src/c_api.rs","byte_start":12663,"byte_end":12672,"line_start":297,"line_end":297,"column_start":25,"column_end":34,"is_primary":true,"text":[{"text":" let uv_height = ((height + 1) / 2) as usize;","highlight_start":25,"highlight_end":34}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(unused_variables)]` (part of `#[warn(unused)]`) on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-image/src/c_api.rs","byte_start":12663,"byte_end":12672,"line_start":297,"line_end":297,"column_start":25,"column_end":34,"is_primary":true,"text":[{"text":" let uv_height = ((height + 1) / 2) as usize;","highlight_start":25,"highlight_end":34}],"label":null,"suggested_replacement":"_uv_height","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `uv_height`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-image/src/c_api.rs:297:25\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m297\u001b[0m \u001b[1m\u001b[94m|\u001b[0m let uv_height = ((height + 1) / 2) as usize;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_uv_height`\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m= \u001b[0m\u001b[1mnote\u001b[0m: `#[warn(unused_variables)]` (part of `#[warn(unused)]`) on by default\n\n"} +{"$message_type":"diagnostic","message":"unreachable pattern","code":{"code":"unreachable_patterns","explanation":null},"level":"warning","spans":[{"file_name":"openvx-image/src/c_api.rs","byte_start":21780,"byte_end":21796,"line_start":537,"line_end":537,"column_start":13,"column_end":29,"is_primary":true,"text":[{"text":" VX_DF_IMAGE_RGBX => {","highlight_start":13,"highlight_end":29}],"label":"no value can reach this","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-image/src/c_api.rs","byte_start":21482,"byte_end":21498,"line_start":529,"line_end":529,"column_start":13,"column_end":29,"is_primary":false,"text":[{"text":" VX_DF_IMAGE_RGBA => {","highlight_start":13,"highlight_end":29}],"label":"matches all the relevant values","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(unreachable_patterns)]` (part of `#[warn(unused)]`) on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unreachable pattern\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-image/src/c_api.rs:537:13\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m529\u001b[0m \u001b[1m\u001b[94m|\u001b[0m VX_DF_IMAGE_RGBA => {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m----------------\u001b[0m \u001b[1m\u001b[94mmatches all the relevant values\u001b[0m\n\u001b[1m\u001b[94m...\u001b[0m\n\u001b[1m\u001b[94m537\u001b[0m \u001b[1m\u001b[94m|\u001b[0m VX_DF_IMAGE_RGBX => {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mno value can reach this\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m= \u001b[0m\u001b[1mnote\u001b[0m: `#[warn(unreachable_patterns)]` (part of `#[warn(unused)]`) on by default\n\n"} +{"$message_type":"diagnostic","message":"unnecessary `unsafe` block","code":{"code":"unused_unsafe","explanation":null},"level":"warning","spans":[{"file_name":"openvx-image/src/c_api.rs","byte_start":27342,"byte_end":27348,"line_start":684,"line_end":684,"column_start":9,"column_end":15,"is_primary":true,"text":[{"text":" unsafe {","highlight_start":9,"highlight_end":15}],"label":"unnecessary `unsafe` block","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-image/src/c_api.rs","byte_start":23879,"byte_end":23885,"line_start":604,"line_end":604,"column_start":5,"column_end":11,"is_primary":false,"text":[{"text":" unsafe {","highlight_start":5,"highlight_end":11}],"label":"because it's nested under this `unsafe` block","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unnecessary `unsafe` block\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-image/src/c_api.rs:684:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m604\u001b[0m \u001b[1m\u001b[94m|\u001b[0m unsafe {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m------\u001b[0m \u001b[1m\u001b[94mbecause it's nested under this `unsafe` block\u001b[0m\n\u001b[1m\u001b[94m...\u001b[0m\n\u001b[1m\u001b[94m684\u001b[0m \u001b[1m\u001b[94m|\u001b[0m unsafe {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m \u001b[1m\u001b[33munnecessary `unsafe` block\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `plane_height`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-image/src/c_api.rs","byte_start":34444,"byte_end":34456,"line_start":918,"line_end":918,"column_start":27,"column_end":39,"is_primary":true,"text":[{"text":" let (plane_width, plane_height) = if is_planar {","highlight_start":27,"highlight_end":39}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-image/src/c_api.rs","byte_start":34444,"byte_end":34456,"line_start":918,"line_end":918,"column_start":27,"column_end":39,"is_primary":true,"text":[{"text":" let (plane_width, plane_height) = if is_planar {","highlight_start":27,"highlight_end":39}],"label":null,"suggested_replacement":"_plane_height","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `plane_height`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-image/src/c_api.rs:918:27\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m918\u001b[0m \u001b[1m\u001b[94m|\u001b[0m let (plane_width, plane_height) = if is_planar {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_plane_height`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `plane_index`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-image/src/c_api.rs","byte_start":37918,"byte_end":37929,"line_start":1011,"line_end":1011,"column_start":58,"column_end":69,"is_primary":true,"text":[{"text":" let (_, patch_data, usage, offset, stride_y, plane_index) = patches.remove(pos);","highlight_start":58,"highlight_end":69}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-image/src/c_api.rs","byte_start":37918,"byte_end":37929,"line_start":1011,"line_end":1011,"column_start":58,"column_end":69,"is_primary":true,"text":[{"text":" let (_, patch_data, usage, offset, stride_y, plane_index) = patches.remove(pos);","highlight_start":58,"highlight_end":69}],"label":null,"suggested_replacement":"_plane_index","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `plane_index`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-image/src/c_api.rs:1011:58\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m1011\u001b[0m \u001b[1m\u001b[94m|\u001b[0m let (_, patch_data, usage, offset, stride_y, plane_index) = patches.remove(pos);\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_plane_index`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `plane_height`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-image/src/c_api.rs","byte_start":41130,"byte_end":41142,"line_start":1103,"line_end":1103,"column_start":27,"column_end":39,"is_primary":true,"text":[{"text":" let (plane_width, plane_height) = if is_planar {","highlight_start":27,"highlight_end":39}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-image/src/c_api.rs","byte_start":41130,"byte_end":41142,"line_start":1103,"line_end":1103,"column_start":27,"column_end":39,"is_primary":true,"text":[{"text":" let (plane_width, plane_height) = if is_planar {","highlight_start":27,"highlight_end":39}],"label":null,"suggested_replacement":"_plane_height","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `plane_height`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-image/src/c_api.rs:1103:27\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m1103\u001b[0m \u001b[1m\u001b[94m|\u001b[0m let (plane_width, plane_height) = if is_planar {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_plane_height`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `is_planar`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-image/src/c_api.rs","byte_start":46723,"byte_end":46732,"line_start":1287,"line_end":1287,"column_start":17,"column_end":26,"is_primary":true,"text":[{"text":" let is_planar = VxCImage::is_planar_format(img.format);","highlight_start":17,"highlight_end":26}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-image/src/c_api.rs","byte_start":46723,"byte_end":46732,"line_start":1287,"line_end":1287,"column_start":17,"column_end":26,"is_primary":true,"text":[{"text":" let is_planar = VxCImage::is_planar_format(img.format);","highlight_start":17,"highlight_end":26}],"label":null,"suggested_replacement":"_is_planar","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `is_planar`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-image/src/c_api.rs:1287:17\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m1287\u001b[0m \u001b[1m\u001b[94m|\u001b[0m let is_planar = VxCImage::is_planar_format(img.format);\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_is_planar`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unnecessary `unsafe` block","code":{"code":"unused_unsafe","explanation":null},"level":"warning","spans":[{"file_name":"openvx-image/src/c_api.rs","byte_start":50604,"byte_end":50610,"line_start":1400,"line_end":1400,"column_start":9,"column_end":15,"is_primary":true,"text":[{"text":" unsafe {","highlight_start":9,"highlight_end":15}],"label":"unnecessary `unsafe` block","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-image/src/c_api.rs","byte_start":48584,"byte_end":48590,"line_start":1351,"line_end":1351,"column_start":5,"column_end":11,"is_primary":false,"text":[{"text":" unsafe {","highlight_start":5,"highlight_end":11}],"label":"because it's nested under this `unsafe` block","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unnecessary `unsafe` block\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-image/src/c_api.rs:1400:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m1351\u001b[0m \u001b[1m\u001b[94m|\u001b[0m unsafe {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m------\u001b[0m \u001b[1m\u001b[94mbecause it's nested under this `unsafe` block\u001b[0m\n\u001b[1m\u001b[94m...\u001b[0m\n\u001b[1m\u001b[94m1400\u001b[0m \u001b[1m\u001b[94m|\u001b[0m unsafe {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m \u001b[1m\u001b[33munnecessary `unsafe` block\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"variable `total_copied` is assigned to, but never used","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-image/src/ct_image.rs","byte_start":25349,"byte_end":25365,"line_start":803,"line_end":803,"column_start":17,"column_end":33,"is_primary":true,"text":[{"text":" let mut total_copied = 0usize;","highlight_start":17,"highlight_end":33}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"consider using `_total_copied` instead","code":null,"level":"note","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: variable `total_copied` is assigned to, but never used\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-image/src/ct_image.rs:803:17\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m803\u001b[0m \u001b[1m\u001b[94m|\u001b[0m let mut total_copied = 0usize;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m= \u001b[0m\u001b[1mnote\u001b[0m: consider using `_total_copied` instead\n\n"} +{"$message_type":"diagnostic","message":"value assigned to `total_copied` is never read","code":{"code":"unused_assignments","explanation":null},"level":"warning","spans":[{"file_name":"openvx-image/src/ct_image.rs","byte_start":27353,"byte_end":27379,"line_start":838,"line_end":838,"column_start":21,"column_end":47,"is_primary":true,"text":[{"text":" total_copied += plane_size;","highlight_start":21,"highlight_end":47}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"maybe it is overwritten before being read?","code":null,"level":"help","spans":[],"children":[],"rendered":null},{"message":"`#[warn(unused_assignments)]` (part of `#[warn(unused)]`) on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: value assigned to `total_copied` is never read\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-image/src/ct_image.rs:838:21\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m838\u001b[0m \u001b[1m\u001b[94m|\u001b[0m total_copied += plane_size;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^^^^^^\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m= \u001b[0m\u001b[1mhelp\u001b[0m: maybe it is overwritten before being read?\n \u001b[1m\u001b[94m= \u001b[0m\u001b[1mnote\u001b[0m: `#[warn(unused_assignments)]` (part of `#[warn(unused)]`) on by default\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `file_name`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-image/src/ct_image.rs","byte_start":35542,"byte_end":35551,"line_start":1111,"line_end":1111,"column_start":33,"column_end":42,"is_primary":true,"text":[{"text":"pub extern \"C\" fn ct_read_image(file_name: *const i8, dcn: i32) -> CT_Image {","highlight_start":33,"highlight_end":42}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-image/src/ct_image.rs","byte_start":35542,"byte_end":35551,"line_start":1111,"line_end":1111,"column_start":33,"column_end":42,"is_primary":true,"text":[{"text":"pub extern \"C\" fn ct_read_image(file_name: *const i8, dcn: i32) -> CT_Image {","highlight_start":33,"highlight_end":42}],"label":null,"suggested_replacement":"_file_name","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `file_name`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-image/src/ct_image.rs:1111:33\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m1111\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub extern \"C\" fn ct_read_image(file_name: *const i8, dcn: i32) -> CT_Image {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_file_name`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `dcn`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-image/src/ct_image.rs","byte_start":35564,"byte_end":35567,"line_start":1111,"line_end":1111,"column_start":55,"column_end":58,"is_primary":true,"text":[{"text":"pub extern \"C\" fn ct_read_image(file_name: *const i8, dcn: i32) -> CT_Image {","highlight_start":55,"highlight_end":58}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-image/src/ct_image.rs","byte_start":35564,"byte_end":35567,"line_start":1111,"line_end":1111,"column_start":55,"column_end":58,"is_primary":true,"text":[{"text":"pub extern \"C\" fn ct_read_image(file_name: *const i8, dcn: i32) -> CT_Image {","highlight_start":55,"highlight_end":58}],"label":null,"suggested_replacement":"_dcn","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `dcn`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-image/src/ct_image.rs:1111:55\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m1111\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub extern \"C\" fn ct_read_image(file_name: *const i8, dcn: i32) -> CT_Image {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_dcn`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `file_name`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-image/src/ct_image.rs","byte_start":35754,"byte_end":35763,"line_start":1118,"line_end":1118,"column_start":34,"column_end":43,"is_primary":true,"text":[{"text":"pub extern \"C\" fn ct_write_image(file_name: *const i8, image: CT_Image) {","highlight_start":34,"highlight_end":43}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-image/src/ct_image.rs","byte_start":35754,"byte_end":35763,"line_start":1118,"line_end":1118,"column_start":34,"column_end":43,"is_primary":true,"text":[{"text":"pub extern \"C\" fn ct_write_image(file_name: *const i8, image: CT_Image) {","highlight_start":34,"highlight_end":43}],"label":null,"suggested_replacement":"_file_name","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `file_name`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-image/src/ct_image.rs:1118:34\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m1118\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub extern \"C\" fn ct_write_image(file_name: *const i8, image: CT_Image) {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_file_name`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `image`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-image/src/ct_image.rs","byte_start":35776,"byte_end":35781,"line_start":1118,"line_end":1118,"column_start":56,"column_end":61,"is_primary":true,"text":[{"text":"pub extern \"C\" fn ct_write_image(file_name: *const i8, image: CT_Image) {","highlight_start":56,"highlight_end":61}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-image/src/ct_image.rs","byte_start":35776,"byte_end":35781,"line_start":1118,"line_end":1118,"column_start":56,"column_end":61,"is_primary":true,"text":[{"text":"pub extern \"C\" fn ct_write_image(file_name: *const i8, image: CT_Image) {","highlight_start":56,"highlight_end":61}],"label":null,"suggested_replacement":"_image","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `image`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-image/src/ct_image.rs:1118:56\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m1118\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub extern \"C\" fn ct_write_image(file_name: *const i8, image: CT_Image) {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_image`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"static `IMAGE_ID_COUNTER` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-image/src/c_api.rs","byte_start":1400,"byte_end":1416,"line_start":32,"line_end":32,"column_start":8,"column_end":24,"is_primary":true,"text":[{"text":"static IMAGE_ID_COUNTER: std::sync::atomic::AtomicUsize = std::sync::atomic::AtomicUsize::new(1);","highlight_start":8,"highlight_end":24}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(dead_code)]` (part of `#[warn(unused)]`) on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: static `IMAGE_ID_COUNTER` is never used\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-image/src/c_api.rs:32:8\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m32\u001b[0m \u001b[1m\u001b[94m|\u001b[0m static IMAGE_ID_COUNTER: std::sync::atomic::AtomicUsize = std::sync::atomic::AtomicUsize::new(1);\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m= \u001b[0m\u001b[1mnote\u001b[0m: `#[warn(dead_code)]` (part of `#[warn(unused)]`) on by default\n\n"} +{"$message_type":"diagnostic","message":"constant `VX_DF_IMAGE_U16` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-image/src/ct_image.rs","byte_start":929,"byte_end":944,"line_start":25,"line_end":25,"column_start":7,"column_end":22,"is_primary":true,"text":[{"text":"const VX_DF_IMAGE_U16: u32 = 0x20100100;","highlight_start":7,"highlight_end":22}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: constant `VX_DF_IMAGE_U16` is never used\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-image/src/ct_image.rs:25:7\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m25\u001b[0m \u001b[1m\u001b[94m|\u001b[0m const VX_DF_IMAGE_U16: u32 = 0x20100100;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"constant `VX_DF_IMAGE_S16` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-image/src/ct_image.rs","byte_start":970,"byte_end":985,"line_start":26,"line_end":26,"column_start":7,"column_end":22,"is_primary":true,"text":[{"text":"const VX_DF_IMAGE_S16: u32 = 0x20100200;","highlight_start":7,"highlight_end":22}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: constant `VX_DF_IMAGE_S16` is never used\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-image/src/ct_image.rs:26:7\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m26\u001b[0m \u001b[1m\u001b[94m|\u001b[0m const VX_DF_IMAGE_S16: u32 = 0x20100200;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"constant `VX_DF_IMAGE_U32` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-image/src/ct_image.rs","byte_start":1011,"byte_end":1026,"line_start":27,"line_end":27,"column_start":7,"column_end":22,"is_primary":true,"text":[{"text":"const VX_DF_IMAGE_U32: u32 = 0x20200100;","highlight_start":7,"highlight_end":22}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: constant `VX_DF_IMAGE_U32` is never used\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-image/src/ct_image.rs:27:7\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m27\u001b[0m \u001b[1m\u001b[94m|\u001b[0m const VX_DF_IMAGE_U32: u32 = 0x20200100;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"constant `VX_DF_IMAGE_S32` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-image/src/ct_image.rs","byte_start":1052,"byte_end":1067,"line_start":28,"line_end":28,"column_start":7,"column_end":22,"is_primary":true,"text":[{"text":"const VX_DF_IMAGE_S32: u32 = 0x20200200;","highlight_start":7,"highlight_end":22}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: constant `VX_DF_IMAGE_S32` is never used\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-image/src/ct_image.rs:28:7\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m28\u001b[0m \u001b[1m\u001b[94m|\u001b[0m const VX_DF_IMAGE_S32: u32 = 0x20200200;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"23 warnings emitted","code":null,"level":"warning","spans":[],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: 23 warnings emitted\u001b[0m\n\n"} diff --git a/target/release/.fingerprint/openvx-image-61e05bead289815e/test-lib-openvx_image b/target/release/.fingerprint/openvx-image-61e05bead289815e/test-lib-openvx_image new file mode 100644 index 0000000..0366870 --- /dev/null +++ b/target/release/.fingerprint/openvx-image-61e05bead289815e/test-lib-openvx_image @@ -0,0 +1 @@ +2e80c5e89e0d8e30 \ No newline at end of file diff --git a/target/release/.fingerprint/openvx-image-61e05bead289815e/test-lib-openvx_image.json b/target/release/.fingerprint/openvx-image-61e05bead289815e/test-lib-openvx_image.json new file mode 100644 index 0000000..dcbe9f1 --- /dev/null +++ b/target/release/.fingerprint/openvx-image-61e05bead289815e/test-lib-openvx_image.json @@ -0,0 +1 @@ +{"rustc":18276270781310494267,"features":"[]","declared_features":"[]","target":12375130860134779072,"profile":10220379689200424945,"path":9530909071960056182,"deps":[[4809150008149002099,"openvx_core",false,12695232944250483106]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/openvx-image-61e05bead289815e/dep-test-lib-openvx_image","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/openvx-image-7a19fbb83bd6b514/dep-lib-openvx_image b/target/release/.fingerprint/openvx-image-7a19fbb83bd6b514/dep-lib-openvx_image new file mode 100644 index 0000000..8ce18dd Binary files /dev/null and b/target/release/.fingerprint/openvx-image-7a19fbb83bd6b514/dep-lib-openvx_image differ diff --git a/target/release/.fingerprint/openvx-image-7a19fbb83bd6b514/invoked.timestamp b/target/release/.fingerprint/openvx-image-7a19fbb83bd6b514/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/openvx-image-7a19fbb83bd6b514/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/openvx-image-7a19fbb83bd6b514/lib-openvx_image b/target/release/.fingerprint/openvx-image-7a19fbb83bd6b514/lib-openvx_image new file mode 100644 index 0000000..f84385c --- /dev/null +++ b/target/release/.fingerprint/openvx-image-7a19fbb83bd6b514/lib-openvx_image @@ -0,0 +1 @@ +64c6f5e32a63da5b \ No newline at end of file diff --git a/target/release/.fingerprint/openvx-image-7a19fbb83bd6b514/lib-openvx_image.json b/target/release/.fingerprint/openvx-image-7a19fbb83bd6b514/lib-openvx_image.json new file mode 100644 index 0000000..2d23859 --- /dev/null +++ b/target/release/.fingerprint/openvx-image-7a19fbb83bd6b514/lib-openvx_image.json @@ -0,0 +1 @@ +{"rustc":18276270781310494267,"features":"[]","declared_features":"[]","target":12375130860134779072,"profile":2040997289075261528,"path":9530909071960056182,"deps":[[4809150008149002099,"openvx_core",false,9470229054341921098]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/openvx-image-7a19fbb83bd6b514/dep-lib-openvx_image","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/openvx-image-7a19fbb83bd6b514/output-lib-openvx_image b/target/release/.fingerprint/openvx-image-7a19fbb83bd6b514/output-lib-openvx_image new file mode 100644 index 0000000..0171fed --- /dev/null +++ b/target/release/.fingerprint/openvx-image-7a19fbb83bd6b514/output-lib-openvx_image @@ -0,0 +1,24 @@ +{"$message_type":"diagnostic","message":"unused imports: `VX_ERROR_INVALID_PARAMETERS`, `VX_ERROR_INVALID_REFERENCE`, `VX_READ_AND_WRITE`, `vx_size`, `vx_status`, and `vx_uint64`","code":{"code":"unused_imports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-image/src/ct_image.rs","byte_start":470,"byte_end":479,"line_start":12,"line_end":12,"column_start":49,"column_end":58,"is_primary":true,"text":[{"text":" vx_context, vx_image, vx_df_image, vx_enum, vx_status,","highlight_start":49,"highlight_end":58}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-image/src/ct_image.rs","byte_start":555,"byte_end":564,"line_start":14,"line_end":14,"column_start":16,"column_end":25,"is_primary":true,"text":[{"text":" vx_uint32, vx_uint64, vx_size,","highlight_start":16,"highlight_end":25}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-image/src/ct_image.rs","byte_start":566,"byte_end":573,"line_start":14,"line_end":14,"column_start":27,"column_end":34,"is_primary":true,"text":[{"text":" vx_uint32, vx_uint64, vx_size,","highlight_start":27,"highlight_end":34}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-image/src/ct_image.rs","byte_start":591,"byte_end":618,"line_start":15,"line_end":15,"column_start":17,"column_end":44,"is_primary":true,"text":[{"text":" VX_SUCCESS, VX_ERROR_INVALID_PARAMETERS, VX_ERROR_INVALID_REFERENCE,","highlight_start":17,"highlight_end":44}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-image/src/ct_image.rs","byte_start":620,"byte_end":646,"line_start":15,"line_end":15,"column_start":46,"column_end":72,"is_primary":true,"text":[{"text":" VX_SUCCESS, VX_ERROR_INVALID_PARAMETERS, VX_ERROR_INVALID_REFERENCE,","highlight_start":46,"highlight_end":72}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-image/src/ct_image.rs","byte_start":681,"byte_end":698,"line_start":16,"line_end":16,"column_start":34,"column_end":51,"is_primary":true,"text":[{"text":" VX_READ_ONLY, VX_WRITE_ONLY, VX_READ_AND_WRITE, VX_MEMORY_TYPE_HOST,","highlight_start":34,"highlight_end":51}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(unused_imports)]` (part of `#[warn(unused)]`) on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"remove the unused imports","code":null,"level":"help","spans":[{"file_name":"openvx-image/src/ct_image.rs","byte_start":468,"byte_end":479,"line_start":12,"line_end":12,"column_start":47,"column_end":58,"is_primary":true,"text":[{"text":" vx_context, vx_image, vx_df_image, vx_enum, vx_status,","highlight_start":47,"highlight_end":58}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null},{"file_name":"openvx-image/src/ct_image.rs","byte_start":553,"byte_end":573,"line_start":14,"line_end":14,"column_start":14,"column_end":34,"is_primary":true,"text":[{"text":" vx_uint32, vx_uint64, vx_size,","highlight_start":14,"highlight_end":34}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null},{"file_name":"openvx-image/src/ct_image.rs","byte_start":589,"byte_end":646,"line_start":15,"line_end":15,"column_start":15,"column_end":72,"is_primary":true,"text":[{"text":" VX_SUCCESS, VX_ERROR_INVALID_PARAMETERS, VX_ERROR_INVALID_REFERENCE,","highlight_start":15,"highlight_end":72}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null},{"file_name":"openvx-image/src/ct_image.rs","byte_start":679,"byte_end":698,"line_start":16,"line_end":16,"column_start":32,"column_end":51,"is_primary":true,"text":[{"text":" VX_READ_ONLY, VX_WRITE_ONLY, VX_READ_AND_WRITE, VX_MEMORY_TYPE_HOST,","highlight_start":32,"highlight_end":51}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused imports: `VX_ERROR_INVALID_PARAMETERS`, `VX_ERROR_INVALID_REFERENCE`, `VX_READ_AND_WRITE`, `vx_size`, `vx_status`, and `vx_uint64`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-image/src/ct_image.rs:12:49\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m12\u001b[0m \u001b[1m\u001b[94m|\u001b[0m vx_context, vx_image, vx_df_image, vx_enum, vx_status,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m\n\u001b[1m\u001b[94m13\u001b[0m \u001b[1m\u001b[94m|\u001b[0m vx_rectangle_t, vx_imagepatch_addressing_t, vx_map_id,\n\u001b[1m\u001b[94m14\u001b[0m \u001b[1m\u001b[94m|\u001b[0m vx_uint32, vx_uint64, vx_size,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m \u001b[1m\u001b[33m^^^^^^^\u001b[0m\n\u001b[1m\u001b[94m15\u001b[0m \u001b[1m\u001b[94m|\u001b[0m VX_SUCCESS, VX_ERROR_INVALID_PARAMETERS, VX_ERROR_INVALID_REFERENCE,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^^^^^^\u001b[0m\n\u001b[1m\u001b[94m16\u001b[0m \u001b[1m\u001b[94m|\u001b[0m VX_READ_ONLY, VX_WRITE_ONLY, VX_READ_AND_WRITE, VX_MEMORY_TYPE_HOST,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m= \u001b[0m\u001b[1mnote\u001b[0m: `#[warn(unused_imports)]` (part of `#[warn(unused)]`) on by default\n\n"} +{"$message_type":"diagnostic","message":"type `CT_Image` should have an upper camel case name","code":{"code":"non_camel_case_types","explanation":null},"level":"warning","spans":[{"file_name":"openvx-image/src/ct_image.rs","byte_start":3328,"byte_end":3336,"line_start":136,"line_end":136,"column_start":10,"column_end":18,"is_primary":true,"text":[{"text":"pub type CT_Image = *mut CT_ImageHdr;","highlight_start":10,"highlight_end":18}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(non_camel_case_types)]` (part of `#[warn(nonstandard_style)]`) on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"convert the identifier to upper camel case","code":null,"level":"help","spans":[{"file_name":"openvx-image/src/ct_image.rs","byte_start":3328,"byte_end":3336,"line_start":136,"line_end":136,"column_start":10,"column_end":18,"is_primary":true,"text":[{"text":"pub type CT_Image = *mut CT_ImageHdr;","highlight_start":10,"highlight_end":18}],"label":null,"suggested_replacement":"CtImage","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: type `CT_Image` should have an upper camel case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-image/src/ct_image.rs:136:10\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m136\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub type CT_Image = *mut CT_ImageHdr;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper camel case: `CtImage`\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m= \u001b[0m\u001b[1mnote\u001b[0m: `#[warn(non_camel_case_types)]` (part of `#[warn(nonstandard_style)]`) on by default\n\n"} +{"$message_type":"diagnostic","message":"unnecessary `unsafe` block","code":{"code":"unused_unsafe","explanation":null},"level":"warning","spans":[{"file_name":"openvx-image/src/c_api.rs","byte_start":2787,"byte_end":2793,"line_start":81,"line_end":81,"column_start":5,"column_end":11,"is_primary":true,"text":[{"text":" unsafe {","highlight_start":5,"highlight_end":11}],"label":"unnecessary `unsafe` block","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(unused_unsafe)]` (part of `#[warn(unused)]`) on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unnecessary `unsafe` block\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-image/src/c_api.rs:81:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m81\u001b[0m \u001b[1m\u001b[94m|\u001b[0m unsafe {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m \u001b[1m\u001b[33munnecessary `unsafe` block\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m= \u001b[0m\u001b[1mnote\u001b[0m: `#[warn(unused_unsafe)]` (part of `#[warn(unused)]`) on by default\n\n"} +{"$message_type":"diagnostic","message":"unnecessary `unsafe` block","code":{"code":"unused_unsafe","explanation":null},"level":"warning","spans":[{"file_name":"openvx-image/src/c_api.rs","byte_start":3016,"byte_end":3022,"line_start":88,"line_end":88,"column_start":5,"column_end":11,"is_primary":true,"text":[{"text":" unsafe {","highlight_start":5,"highlight_end":11}],"label":"unnecessary `unsafe` block","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unnecessary `unsafe` block\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-image/src/c_api.rs:88:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m88\u001b[0m \u001b[1m\u001b[94m|\u001b[0m unsafe {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m \u001b[1m\u001b[33munnecessary `unsafe` block\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unnecessary `unsafe` block","code":{"code":"unused_unsafe","explanation":null},"level":"warning","spans":[{"file_name":"openvx-image/src/c_api.rs","byte_start":7291,"byte_end":7297,"line_start":229,"line_end":229,"column_start":9,"column_end":15,"is_primary":true,"text":[{"text":" unsafe {","highlight_start":9,"highlight_end":15}],"label":"unnecessary `unsafe` block","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-image/src/c_api.rs","byte_start":4757,"byte_end":4763,"line_start":153,"line_end":153,"column_start":5,"column_end":11,"is_primary":false,"text":[{"text":" unsafe {","highlight_start":5,"highlight_end":11}],"label":"because it's nested under this `unsafe` block","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unnecessary `unsafe` block\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-image/src/c_api.rs:229:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m153\u001b[0m \u001b[1m\u001b[94m|\u001b[0m unsafe {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m------\u001b[0m \u001b[1m\u001b[94mbecause it's nested under this `unsafe` block\u001b[0m\n\u001b[1m\u001b[94m...\u001b[0m\n\u001b[1m\u001b[94m229\u001b[0m \u001b[1m\u001b[94m|\u001b[0m unsafe {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m \u001b[1m\u001b[33munnecessary `unsafe` block\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unreachable pattern","code":{"code":"unreachable_patterns","explanation":null},"level":"warning","spans":[{"file_name":"openvx-image/src/c_api.rs","byte_start":10963,"byte_end":10979,"line_start":339,"line_end":339,"column_start":13,"column_end":29,"is_primary":true,"text":[{"text":" VX_DF_IMAGE_RGBX => {","highlight_start":13,"highlight_end":29}],"label":"no value can reach this","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-image/src/c_api.rs","byte_start":10665,"byte_end":10681,"line_start":331,"line_end":331,"column_start":13,"column_end":29,"is_primary":false,"text":[{"text":" VX_DF_IMAGE_RGBA => {","highlight_start":13,"highlight_end":29}],"label":"matches all the relevant values","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(unreachable_patterns)]` (part of `#[warn(unused)]`) on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unreachable pattern\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-image/src/c_api.rs:339:13\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m331\u001b[0m \u001b[1m\u001b[94m|\u001b[0m VX_DF_IMAGE_RGBA => {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m----------------\u001b[0m \u001b[1m\u001b[94mmatches all the relevant values\u001b[0m\n\u001b[1m\u001b[94m...\u001b[0m\n\u001b[1m\u001b[94m339\u001b[0m \u001b[1m\u001b[94m|\u001b[0m VX_DF_IMAGE_RGBX => {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mno value can reach this\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m= \u001b[0m\u001b[1mnote\u001b[0m: `#[warn(unreachable_patterns)]` (part of `#[warn(unused)]`) on by default\n\n"} +{"$message_type":"diagnostic","message":"unnecessary `unsafe` block","code":{"code":"unused_unsafe","explanation":null},"level":"warning","spans":[{"file_name":"openvx-image/src/c_api.rs","byte_start":16525,"byte_end":16531,"line_start":486,"line_end":486,"column_start":9,"column_end":15,"is_primary":true,"text":[{"text":" unsafe {","highlight_start":9,"highlight_end":15}],"label":"unnecessary `unsafe` block","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-image/src/c_api.rs","byte_start":13062,"byte_end":13068,"line_start":406,"line_end":406,"column_start":5,"column_end":11,"is_primary":false,"text":[{"text":" unsafe {","highlight_start":5,"highlight_end":11}],"label":"because it's nested under this `unsafe` block","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unnecessary `unsafe` block\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-image/src/c_api.rs:486:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m406\u001b[0m \u001b[1m\u001b[94m|\u001b[0m unsafe {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m------\u001b[0m \u001b[1m\u001b[94mbecause it's nested under this `unsafe` block\u001b[0m\n\u001b[1m\u001b[94m...\u001b[0m\n\u001b[1m\u001b[94m486\u001b[0m \u001b[1m\u001b[94m|\u001b[0m unsafe {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m \u001b[1m\u001b[33munnecessary `unsafe` block\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `plane_height`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-image/src/c_api.rs","byte_start":23627,"byte_end":23639,"line_start":720,"line_end":720,"column_start":27,"column_end":39,"is_primary":true,"text":[{"text":" let (plane_width, plane_height) = if is_planar {","highlight_start":27,"highlight_end":39}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(unused_variables)]` (part of `#[warn(unused)]`) on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-image/src/c_api.rs","byte_start":23627,"byte_end":23639,"line_start":720,"line_end":720,"column_start":27,"column_end":39,"is_primary":true,"text":[{"text":" let (plane_width, plane_height) = if is_planar {","highlight_start":27,"highlight_end":39}],"label":null,"suggested_replacement":"_plane_height","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `plane_height`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-image/src/c_api.rs:720:27\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m720\u001b[0m \u001b[1m\u001b[94m|\u001b[0m let (plane_width, plane_height) = if is_planar {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_plane_height`\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m= \u001b[0m\u001b[1mnote\u001b[0m: `#[warn(unused_variables)]` (part of `#[warn(unused)]`) on by default\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `plane_index`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-image/src/c_api.rs","byte_start":27101,"byte_end":27112,"line_start":813,"line_end":813,"column_start":58,"column_end":69,"is_primary":true,"text":[{"text":" let (_, patch_data, usage, offset, stride_y, plane_index) = patches.remove(pos);","highlight_start":58,"highlight_end":69}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-image/src/c_api.rs","byte_start":27101,"byte_end":27112,"line_start":813,"line_end":813,"column_start":58,"column_end":69,"is_primary":true,"text":[{"text":" let (_, patch_data, usage, offset, stride_y, plane_index) = patches.remove(pos);","highlight_start":58,"highlight_end":69}],"label":null,"suggested_replacement":"_plane_index","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `plane_index`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-image/src/c_api.rs:813:58\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m813\u001b[0m \u001b[1m\u001b[94m|\u001b[0m let (_, patch_data, usage, offset, stride_y, plane_index) = patches.remove(pos);\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_plane_index`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `plane_height`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-image/src/c_api.rs","byte_start":30313,"byte_end":30325,"line_start":905,"line_end":905,"column_start":27,"column_end":39,"is_primary":true,"text":[{"text":" let (plane_width, plane_height) = if is_planar {","highlight_start":27,"highlight_end":39}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-image/src/c_api.rs","byte_start":30313,"byte_end":30325,"line_start":905,"line_end":905,"column_start":27,"column_end":39,"is_primary":true,"text":[{"text":" let (plane_width, plane_height) = if is_planar {","highlight_start":27,"highlight_end":39}],"label":null,"suggested_replacement":"_plane_height","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `plane_height`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-image/src/c_api.rs:905:27\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m905\u001b[0m \u001b[1m\u001b[94m|\u001b[0m let (plane_width, plane_height) = if is_planar {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_plane_height`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `is_planar`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-image/src/c_api.rs","byte_start":35906,"byte_end":35915,"line_start":1089,"line_end":1089,"column_start":17,"column_end":26,"is_primary":true,"text":[{"text":" let is_planar = VxCImage::is_planar_format(img.format);","highlight_start":17,"highlight_end":26}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-image/src/c_api.rs","byte_start":35906,"byte_end":35915,"line_start":1089,"line_end":1089,"column_start":17,"column_end":26,"is_primary":true,"text":[{"text":" let is_planar = VxCImage::is_planar_format(img.format);","highlight_start":17,"highlight_end":26}],"label":null,"suggested_replacement":"_is_planar","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `is_planar`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-image/src/c_api.rs:1089:17\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m1089\u001b[0m \u001b[1m\u001b[94m|\u001b[0m let is_planar = VxCImage::is_planar_format(img.format);\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_is_planar`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unnecessary `unsafe` block","code":{"code":"unused_unsafe","explanation":null},"level":"warning","spans":[{"file_name":"openvx-image/src/c_api.rs","byte_start":39787,"byte_end":39793,"line_start":1202,"line_end":1202,"column_start":9,"column_end":15,"is_primary":true,"text":[{"text":" unsafe {","highlight_start":9,"highlight_end":15}],"label":"unnecessary `unsafe` block","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-image/src/c_api.rs","byte_start":37767,"byte_end":37773,"line_start":1153,"line_end":1153,"column_start":5,"column_end":11,"is_primary":false,"text":[{"text":" unsafe {","highlight_start":5,"highlight_end":11}],"label":"because it's nested under this `unsafe` block","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unnecessary `unsafe` block\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-image/src/c_api.rs:1202:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m1153\u001b[0m \u001b[1m\u001b[94m|\u001b[0m unsafe {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m------\u001b[0m \u001b[1m\u001b[94mbecause it's nested under this `unsafe` block\u001b[0m\n\u001b[1m\u001b[94m...\u001b[0m\n\u001b[1m\u001b[94m1202\u001b[0m \u001b[1m\u001b[94m|\u001b[0m unsafe {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m \u001b[1m\u001b[33munnecessary `unsafe` block\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"variable `total_copied` is assigned to, but never used","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-image/src/ct_image.rs","byte_start":25349,"byte_end":25365,"line_start":803,"line_end":803,"column_start":17,"column_end":33,"is_primary":true,"text":[{"text":" let mut total_copied = 0usize;","highlight_start":17,"highlight_end":33}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"consider using `_total_copied` instead","code":null,"level":"note","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: variable `total_copied` is assigned to, but never used\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-image/src/ct_image.rs:803:17\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m803\u001b[0m \u001b[1m\u001b[94m|\u001b[0m let mut total_copied = 0usize;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m= \u001b[0m\u001b[1mnote\u001b[0m: consider using `_total_copied` instead\n\n"} +{"$message_type":"diagnostic","message":"value assigned to `total_copied` is never read","code":{"code":"unused_assignments","explanation":null},"level":"warning","spans":[{"file_name":"openvx-image/src/ct_image.rs","byte_start":27353,"byte_end":27379,"line_start":838,"line_end":838,"column_start":21,"column_end":47,"is_primary":true,"text":[{"text":" total_copied += plane_size;","highlight_start":21,"highlight_end":47}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"maybe it is overwritten before being read?","code":null,"level":"help","spans":[],"children":[],"rendered":null},{"message":"`#[warn(unused_assignments)]` (part of `#[warn(unused)]`) on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: value assigned to `total_copied` is never read\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-image/src/ct_image.rs:838:21\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m838\u001b[0m \u001b[1m\u001b[94m|\u001b[0m total_copied += plane_size;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^^^^^^\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m= \u001b[0m\u001b[1mhelp\u001b[0m: maybe it is overwritten before being read?\n \u001b[1m\u001b[94m= \u001b[0m\u001b[1mnote\u001b[0m: `#[warn(unused_assignments)]` (part of `#[warn(unused)]`) on by default\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `file_name`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-image/src/ct_image.rs","byte_start":35542,"byte_end":35551,"line_start":1111,"line_end":1111,"column_start":33,"column_end":42,"is_primary":true,"text":[{"text":"pub extern \"C\" fn ct_read_image(file_name: *const i8, dcn: i32) -> CT_Image {","highlight_start":33,"highlight_end":42}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-image/src/ct_image.rs","byte_start":35542,"byte_end":35551,"line_start":1111,"line_end":1111,"column_start":33,"column_end":42,"is_primary":true,"text":[{"text":"pub extern \"C\" fn ct_read_image(file_name: *const i8, dcn: i32) -> CT_Image {","highlight_start":33,"highlight_end":42}],"label":null,"suggested_replacement":"_file_name","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `file_name`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-image/src/ct_image.rs:1111:33\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m1111\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub extern \"C\" fn ct_read_image(file_name: *const i8, dcn: i32) -> CT_Image {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_file_name`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `dcn`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-image/src/ct_image.rs","byte_start":35564,"byte_end":35567,"line_start":1111,"line_end":1111,"column_start":55,"column_end":58,"is_primary":true,"text":[{"text":"pub extern \"C\" fn ct_read_image(file_name: *const i8, dcn: i32) -> CT_Image {","highlight_start":55,"highlight_end":58}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-image/src/ct_image.rs","byte_start":35564,"byte_end":35567,"line_start":1111,"line_end":1111,"column_start":55,"column_end":58,"is_primary":true,"text":[{"text":"pub extern \"C\" fn ct_read_image(file_name: *const i8, dcn: i32) -> CT_Image {","highlight_start":55,"highlight_end":58}],"label":null,"suggested_replacement":"_dcn","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `dcn`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-image/src/ct_image.rs:1111:55\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m1111\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub extern \"C\" fn ct_read_image(file_name: *const i8, dcn: i32) -> CT_Image {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_dcn`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `file_name`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-image/src/ct_image.rs","byte_start":35754,"byte_end":35763,"line_start":1118,"line_end":1118,"column_start":34,"column_end":43,"is_primary":true,"text":[{"text":"pub extern \"C\" fn ct_write_image(file_name: *const i8, image: CT_Image) {","highlight_start":34,"highlight_end":43}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-image/src/ct_image.rs","byte_start":35754,"byte_end":35763,"line_start":1118,"line_end":1118,"column_start":34,"column_end":43,"is_primary":true,"text":[{"text":"pub extern \"C\" fn ct_write_image(file_name: *const i8, image: CT_Image) {","highlight_start":34,"highlight_end":43}],"label":null,"suggested_replacement":"_file_name","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `file_name`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-image/src/ct_image.rs:1118:34\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m1118\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub extern \"C\" fn ct_write_image(file_name: *const i8, image: CT_Image) {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_file_name`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `image`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-image/src/ct_image.rs","byte_start":35776,"byte_end":35781,"line_start":1118,"line_end":1118,"column_start":56,"column_end":61,"is_primary":true,"text":[{"text":"pub extern \"C\" fn ct_write_image(file_name: *const i8, image: CT_Image) {","highlight_start":56,"highlight_end":61}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-image/src/ct_image.rs","byte_start":35776,"byte_end":35781,"line_start":1118,"line_end":1118,"column_start":56,"column_end":61,"is_primary":true,"text":[{"text":"pub extern \"C\" fn ct_write_image(file_name: *const i8, image: CT_Image) {","highlight_start":56,"highlight_end":61}],"label":null,"suggested_replacement":"_image","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `image`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-image/src/ct_image.rs:1118:56\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m1118\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub extern \"C\" fn ct_write_image(file_name: *const i8, image: CT_Image) {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_image`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"static `IMAGE_ID_COUNTER` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-image/src/c_api.rs","byte_start":1400,"byte_end":1416,"line_start":32,"line_end":32,"column_start":8,"column_end":24,"is_primary":true,"text":[{"text":"static IMAGE_ID_COUNTER: std::sync::atomic::AtomicUsize = std::sync::atomic::AtomicUsize::new(1);","highlight_start":8,"highlight_end":24}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(dead_code)]` (part of `#[warn(unused)]`) on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: static `IMAGE_ID_COUNTER` is never used\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-image/src/c_api.rs:32:8\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m32\u001b[0m \u001b[1m\u001b[94m|\u001b[0m static IMAGE_ID_COUNTER: std::sync::atomic::AtomicUsize = std::sync::atomic::AtomicUsize::new(1);\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m= \u001b[0m\u001b[1mnote\u001b[0m: `#[warn(dead_code)]` (part of `#[warn(unused)]`) on by default\n\n"} +{"$message_type":"diagnostic","message":"constant `VX_DF_IMAGE_U16` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-image/src/ct_image.rs","byte_start":929,"byte_end":944,"line_start":25,"line_end":25,"column_start":7,"column_end":22,"is_primary":true,"text":[{"text":"const VX_DF_IMAGE_U16: u32 = 0x20100100;","highlight_start":7,"highlight_end":22}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: constant `VX_DF_IMAGE_U16` is never used\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-image/src/ct_image.rs:25:7\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m25\u001b[0m \u001b[1m\u001b[94m|\u001b[0m const VX_DF_IMAGE_U16: u32 = 0x20100100;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"constant `VX_DF_IMAGE_S16` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-image/src/ct_image.rs","byte_start":970,"byte_end":985,"line_start":26,"line_end":26,"column_start":7,"column_end":22,"is_primary":true,"text":[{"text":"const VX_DF_IMAGE_S16: u32 = 0x20100200;","highlight_start":7,"highlight_end":22}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: constant `VX_DF_IMAGE_S16` is never used\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-image/src/ct_image.rs:26:7\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m26\u001b[0m \u001b[1m\u001b[94m|\u001b[0m const VX_DF_IMAGE_S16: u32 = 0x20100200;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"constant `VX_DF_IMAGE_U32` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-image/src/ct_image.rs","byte_start":1011,"byte_end":1026,"line_start":27,"line_end":27,"column_start":7,"column_end":22,"is_primary":true,"text":[{"text":"const VX_DF_IMAGE_U32: u32 = 0x20200100;","highlight_start":7,"highlight_end":22}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: constant `VX_DF_IMAGE_U32` is never used\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-image/src/ct_image.rs:27:7\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m27\u001b[0m \u001b[1m\u001b[94m|\u001b[0m const VX_DF_IMAGE_U32: u32 = 0x20200100;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"constant `VX_DF_IMAGE_S32` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-image/src/ct_image.rs","byte_start":1052,"byte_end":1067,"line_start":28,"line_end":28,"column_start":7,"column_end":22,"is_primary":true,"text":[{"text":"const VX_DF_IMAGE_S32: u32 = 0x20200200;","highlight_start":7,"highlight_end":22}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: constant `VX_DF_IMAGE_S32` is never used\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-image/src/ct_image.rs:28:7\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m28\u001b[0m \u001b[1m\u001b[94m|\u001b[0m const VX_DF_IMAGE_S32: u32 = 0x20200200;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"23 warnings emitted","code":null,"level":"warning","spans":[],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: 23 warnings emitted\u001b[0m\n\n"} diff --git a/target/release/.fingerprint/openvx-image-c0fbbf3d55e5f3be/dep-example-test_nv12 b/target/release/.fingerprint/openvx-image-c0fbbf3d55e5f3be/dep-example-test_nv12 new file mode 100644 index 0000000..6f3e93b Binary files /dev/null and b/target/release/.fingerprint/openvx-image-c0fbbf3d55e5f3be/dep-example-test_nv12 differ diff --git a/target/release/.fingerprint/openvx-image-c0fbbf3d55e5f3be/example-test_nv12 b/target/release/.fingerprint/openvx-image-c0fbbf3d55e5f3be/example-test_nv12 new file mode 100644 index 0000000..a0eb1d9 --- /dev/null +++ b/target/release/.fingerprint/openvx-image-c0fbbf3d55e5f3be/example-test_nv12 @@ -0,0 +1 @@ +26057abe1fdc8a7b \ No newline at end of file diff --git a/target/release/.fingerprint/openvx-image-c0fbbf3d55e5f3be/example-test_nv12.json b/target/release/.fingerprint/openvx-image-c0fbbf3d55e5f3be/example-test_nv12.json new file mode 100644 index 0000000..200268f --- /dev/null +++ b/target/release/.fingerprint/openvx-image-c0fbbf3d55e5f3be/example-test_nv12.json @@ -0,0 +1 @@ +{"rustc":18276270781310494267,"features":"[]","declared_features":"[]","target":12127369545786302113,"profile":2040997289075261528,"path":5098612026974236986,"deps":[[4809150008149002099,"openvx_core",false,12695232944250483106],[13782069936663139603,"openvx_image",false,5415066650095401666]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/openvx-image-c0fbbf3d55e5f3be/dep-example-test_nv12","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/openvx-image-c0fbbf3d55e5f3be/invoked.timestamp b/target/release/.fingerprint/openvx-image-c0fbbf3d55e5f3be/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/openvx-image-c0fbbf3d55e5f3be/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/openvx-image-f36425eb72d49a8f/dep-lib-openvx_image b/target/release/.fingerprint/openvx-image-f36425eb72d49a8f/dep-lib-openvx_image new file mode 100644 index 0000000..49280f2 Binary files /dev/null and b/target/release/.fingerprint/openvx-image-f36425eb72d49a8f/dep-lib-openvx_image differ diff --git a/target/release/.fingerprint/openvx-image-f36425eb72d49a8f/invoked.timestamp b/target/release/.fingerprint/openvx-image-f36425eb72d49a8f/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/openvx-image-f36425eb72d49a8f/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/openvx-image-f36425eb72d49a8f/lib-openvx_image b/target/release/.fingerprint/openvx-image-f36425eb72d49a8f/lib-openvx_image new file mode 100644 index 0000000..513a111 --- /dev/null +++ b/target/release/.fingerprint/openvx-image-f36425eb72d49a8f/lib-openvx_image @@ -0,0 +1 @@ +c23a00926d2e264b \ No newline at end of file diff --git a/target/release/.fingerprint/openvx-image-f36425eb72d49a8f/lib-openvx_image.json b/target/release/.fingerprint/openvx-image-f36425eb72d49a8f/lib-openvx_image.json new file mode 100644 index 0000000..47c59e1 --- /dev/null +++ b/target/release/.fingerprint/openvx-image-f36425eb72d49a8f/lib-openvx_image.json @@ -0,0 +1 @@ +{"rustc":18276270781310494267,"features":"[]","declared_features":"[]","target":12375130860134779072,"profile":2040997289075261528,"path":9530909071960056182,"deps":[[4809150008149002099,"openvx_core",false,12695232944250483106]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/openvx-image-f36425eb72d49a8f/dep-lib-openvx_image","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/openvx-image-f36425eb72d49a8f/output-lib-openvx_image b/target/release/.fingerprint/openvx-image-f36425eb72d49a8f/output-lib-openvx_image new file mode 100644 index 0000000..2500634 --- /dev/null +++ b/target/release/.fingerprint/openvx-image-f36425eb72d49a8f/output-lib-openvx_image @@ -0,0 +1,24 @@ +{"$message_type":"diagnostic","message":"unused imports: `VX_ERROR_INVALID_PARAMETERS`, `VX_ERROR_INVALID_REFERENCE`, `VX_READ_AND_WRITE`, `vx_size`, `vx_status`, and `vx_uint64`","code":{"code":"unused_imports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-image/src/ct_image.rs","byte_start":470,"byte_end":479,"line_start":12,"line_end":12,"column_start":49,"column_end":58,"is_primary":true,"text":[{"text":" vx_context, vx_image, vx_df_image, vx_enum, vx_status,","highlight_start":49,"highlight_end":58}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-image/src/ct_image.rs","byte_start":555,"byte_end":564,"line_start":14,"line_end":14,"column_start":16,"column_end":25,"is_primary":true,"text":[{"text":" vx_uint32, vx_uint64, vx_size,","highlight_start":16,"highlight_end":25}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-image/src/ct_image.rs","byte_start":566,"byte_end":573,"line_start":14,"line_end":14,"column_start":27,"column_end":34,"is_primary":true,"text":[{"text":" vx_uint32, vx_uint64, vx_size,","highlight_start":27,"highlight_end":34}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-image/src/ct_image.rs","byte_start":591,"byte_end":618,"line_start":15,"line_end":15,"column_start":17,"column_end":44,"is_primary":true,"text":[{"text":" VX_SUCCESS, VX_ERROR_INVALID_PARAMETERS, VX_ERROR_INVALID_REFERENCE,","highlight_start":17,"highlight_end":44}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-image/src/ct_image.rs","byte_start":620,"byte_end":646,"line_start":15,"line_end":15,"column_start":46,"column_end":72,"is_primary":true,"text":[{"text":" VX_SUCCESS, VX_ERROR_INVALID_PARAMETERS, VX_ERROR_INVALID_REFERENCE,","highlight_start":46,"highlight_end":72}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-image/src/ct_image.rs","byte_start":681,"byte_end":698,"line_start":16,"line_end":16,"column_start":34,"column_end":51,"is_primary":true,"text":[{"text":" VX_READ_ONLY, VX_WRITE_ONLY, VX_READ_AND_WRITE, VX_MEMORY_TYPE_HOST,","highlight_start":34,"highlight_end":51}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(unused_imports)]` (part of `#[warn(unused)]`) on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"remove the unused imports","code":null,"level":"help","spans":[{"file_name":"openvx-image/src/ct_image.rs","byte_start":468,"byte_end":479,"line_start":12,"line_end":12,"column_start":47,"column_end":58,"is_primary":true,"text":[{"text":" vx_context, vx_image, vx_df_image, vx_enum, vx_status,","highlight_start":47,"highlight_end":58}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null},{"file_name":"openvx-image/src/ct_image.rs","byte_start":553,"byte_end":573,"line_start":14,"line_end":14,"column_start":14,"column_end":34,"is_primary":true,"text":[{"text":" vx_uint32, vx_uint64, vx_size,","highlight_start":14,"highlight_end":34}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null},{"file_name":"openvx-image/src/ct_image.rs","byte_start":589,"byte_end":646,"line_start":15,"line_end":15,"column_start":15,"column_end":72,"is_primary":true,"text":[{"text":" VX_SUCCESS, VX_ERROR_INVALID_PARAMETERS, VX_ERROR_INVALID_REFERENCE,","highlight_start":15,"highlight_end":72}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null},{"file_name":"openvx-image/src/ct_image.rs","byte_start":679,"byte_end":698,"line_start":16,"line_end":16,"column_start":32,"column_end":51,"is_primary":true,"text":[{"text":" VX_READ_ONLY, VX_WRITE_ONLY, VX_READ_AND_WRITE, VX_MEMORY_TYPE_HOST,","highlight_start":32,"highlight_end":51}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused imports: `VX_ERROR_INVALID_PARAMETERS`, `VX_ERROR_INVALID_REFERENCE`, `VX_READ_AND_WRITE`, `vx_size`, `vx_status`, and `vx_uint64`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-image/src/ct_image.rs:12:49\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m12\u001b[0m \u001b[1m\u001b[94m|\u001b[0m vx_context, vx_image, vx_df_image, vx_enum, vx_status,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m\n\u001b[1m\u001b[94m13\u001b[0m \u001b[1m\u001b[94m|\u001b[0m vx_rectangle_t, vx_imagepatch_addressing_t, vx_map_id,\n\u001b[1m\u001b[94m14\u001b[0m \u001b[1m\u001b[94m|\u001b[0m vx_uint32, vx_uint64, vx_size,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m \u001b[1m\u001b[33m^^^^^^^\u001b[0m\n\u001b[1m\u001b[94m15\u001b[0m \u001b[1m\u001b[94m|\u001b[0m VX_SUCCESS, VX_ERROR_INVALID_PARAMETERS, VX_ERROR_INVALID_REFERENCE,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^^^^^^\u001b[0m\n\u001b[1m\u001b[94m16\u001b[0m \u001b[1m\u001b[94m|\u001b[0m VX_READ_ONLY, VX_WRITE_ONLY, VX_READ_AND_WRITE, VX_MEMORY_TYPE_HOST,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m= \u001b[0m\u001b[1mnote\u001b[0m: `#[warn(unused_imports)]` (part of `#[warn(unused)]`) on by default\n\n"} +{"$message_type":"diagnostic","message":"type `CT_Image` should have an upper camel case name","code":{"code":"non_camel_case_types","explanation":null},"level":"warning","spans":[{"file_name":"openvx-image/src/ct_image.rs","byte_start":3328,"byte_end":3336,"line_start":136,"line_end":136,"column_start":10,"column_end":18,"is_primary":true,"text":[{"text":"pub type CT_Image = *mut CT_ImageHdr;","highlight_start":10,"highlight_end":18}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(non_camel_case_types)]` (part of `#[warn(nonstandard_style)]`) on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"convert the identifier to upper camel case","code":null,"level":"help","spans":[{"file_name":"openvx-image/src/ct_image.rs","byte_start":3328,"byte_end":3336,"line_start":136,"line_end":136,"column_start":10,"column_end":18,"is_primary":true,"text":[{"text":"pub type CT_Image = *mut CT_ImageHdr;","highlight_start":10,"highlight_end":18}],"label":null,"suggested_replacement":"CtImage","suggestion_applicability":"MaybeIncorrect","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: type `CT_Image` should have an upper camel case name\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-image/src/ct_image.rs:136:10\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m136\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub type CT_Image = *mut CT_ImageHdr;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: convert the identifier to upper camel case: `CtImage`\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m= \u001b[0m\u001b[1mnote\u001b[0m: `#[warn(non_camel_case_types)]` (part of `#[warn(nonstandard_style)]`) on by default\n\n"} +{"$message_type":"diagnostic","message":"unnecessary `unsafe` block","code":{"code":"unused_unsafe","explanation":null},"level":"warning","spans":[{"file_name":"openvx-image/src/c_api.rs","byte_start":2787,"byte_end":2793,"line_start":81,"line_end":81,"column_start":5,"column_end":11,"is_primary":true,"text":[{"text":" unsafe {","highlight_start":5,"highlight_end":11}],"label":"unnecessary `unsafe` block","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(unused_unsafe)]` (part of `#[warn(unused)]`) on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unnecessary `unsafe` block\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-image/src/c_api.rs:81:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m81\u001b[0m \u001b[1m\u001b[94m|\u001b[0m unsafe {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m \u001b[1m\u001b[33munnecessary `unsafe` block\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m= \u001b[0m\u001b[1mnote\u001b[0m: `#[warn(unused_unsafe)]` (part of `#[warn(unused)]`) on by default\n\n"} +{"$message_type":"diagnostic","message":"unnecessary `unsafe` block","code":{"code":"unused_unsafe","explanation":null},"level":"warning","spans":[{"file_name":"openvx-image/src/c_api.rs","byte_start":3016,"byte_end":3022,"line_start":88,"line_end":88,"column_start":5,"column_end":11,"is_primary":true,"text":[{"text":" unsafe {","highlight_start":5,"highlight_end":11}],"label":"unnecessary `unsafe` block","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unnecessary `unsafe` block\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-image/src/c_api.rs:88:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m88\u001b[0m \u001b[1m\u001b[94m|\u001b[0m unsafe {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m \u001b[1m\u001b[33munnecessary `unsafe` block\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `uv_height`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-image/src/c_api.rs","byte_start":12663,"byte_end":12672,"line_start":297,"line_end":297,"column_start":25,"column_end":34,"is_primary":true,"text":[{"text":" let uv_height = ((height + 1) / 2) as usize;","highlight_start":25,"highlight_end":34}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(unused_variables)]` (part of `#[warn(unused)]`) on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-image/src/c_api.rs","byte_start":12663,"byte_end":12672,"line_start":297,"line_end":297,"column_start":25,"column_end":34,"is_primary":true,"text":[{"text":" let uv_height = ((height + 1) / 2) as usize;","highlight_start":25,"highlight_end":34}],"label":null,"suggested_replacement":"_uv_height","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `uv_height`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-image/src/c_api.rs:297:25\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m297\u001b[0m \u001b[1m\u001b[94m|\u001b[0m let uv_height = ((height + 1) / 2) as usize;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_uv_height`\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m= \u001b[0m\u001b[1mnote\u001b[0m: `#[warn(unused_variables)]` (part of `#[warn(unused)]`) on by default\n\n"} +{"$message_type":"diagnostic","message":"unreachable pattern","code":{"code":"unreachable_patterns","explanation":null},"level":"warning","spans":[{"file_name":"openvx-image/src/c_api.rs","byte_start":21780,"byte_end":21796,"line_start":537,"line_end":537,"column_start":13,"column_end":29,"is_primary":true,"text":[{"text":" VX_DF_IMAGE_RGBX => {","highlight_start":13,"highlight_end":29}],"label":"no value can reach this","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-image/src/c_api.rs","byte_start":21482,"byte_end":21498,"line_start":529,"line_end":529,"column_start":13,"column_end":29,"is_primary":false,"text":[{"text":" VX_DF_IMAGE_RGBA => {","highlight_start":13,"highlight_end":29}],"label":"matches all the relevant values","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(unreachable_patterns)]` (part of `#[warn(unused)]`) on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unreachable pattern\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-image/src/c_api.rs:537:13\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m529\u001b[0m \u001b[1m\u001b[94m|\u001b[0m VX_DF_IMAGE_RGBA => {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m----------------\u001b[0m \u001b[1m\u001b[94mmatches all the relevant values\u001b[0m\n\u001b[1m\u001b[94m...\u001b[0m\n\u001b[1m\u001b[94m537\u001b[0m \u001b[1m\u001b[94m|\u001b[0m VX_DF_IMAGE_RGBX => {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mno value can reach this\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m= \u001b[0m\u001b[1mnote\u001b[0m: `#[warn(unreachable_patterns)]` (part of `#[warn(unused)]`) on by default\n\n"} +{"$message_type":"diagnostic","message":"unnecessary `unsafe` block","code":{"code":"unused_unsafe","explanation":null},"level":"warning","spans":[{"file_name":"openvx-image/src/c_api.rs","byte_start":27342,"byte_end":27348,"line_start":684,"line_end":684,"column_start":9,"column_end":15,"is_primary":true,"text":[{"text":" unsafe {","highlight_start":9,"highlight_end":15}],"label":"unnecessary `unsafe` block","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-image/src/c_api.rs","byte_start":23879,"byte_end":23885,"line_start":604,"line_end":604,"column_start":5,"column_end":11,"is_primary":false,"text":[{"text":" unsafe {","highlight_start":5,"highlight_end":11}],"label":"because it's nested under this `unsafe` block","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unnecessary `unsafe` block\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-image/src/c_api.rs:684:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m604\u001b[0m \u001b[1m\u001b[94m|\u001b[0m unsafe {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m------\u001b[0m \u001b[1m\u001b[94mbecause it's nested under this `unsafe` block\u001b[0m\n\u001b[1m\u001b[94m...\u001b[0m\n\u001b[1m\u001b[94m684\u001b[0m \u001b[1m\u001b[94m|\u001b[0m unsafe {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m \u001b[1m\u001b[33munnecessary `unsafe` block\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `plane_height`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-image/src/c_api.rs","byte_start":34444,"byte_end":34456,"line_start":918,"line_end":918,"column_start":27,"column_end":39,"is_primary":true,"text":[{"text":" let (plane_width, plane_height) = if is_planar {","highlight_start":27,"highlight_end":39}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-image/src/c_api.rs","byte_start":34444,"byte_end":34456,"line_start":918,"line_end":918,"column_start":27,"column_end":39,"is_primary":true,"text":[{"text":" let (plane_width, plane_height) = if is_planar {","highlight_start":27,"highlight_end":39}],"label":null,"suggested_replacement":"_plane_height","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `plane_height`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-image/src/c_api.rs:918:27\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m918\u001b[0m \u001b[1m\u001b[94m|\u001b[0m let (plane_width, plane_height) = if is_planar {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_plane_height`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `plane_index`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-image/src/c_api.rs","byte_start":37918,"byte_end":37929,"line_start":1011,"line_end":1011,"column_start":58,"column_end":69,"is_primary":true,"text":[{"text":" let (_, patch_data, usage, offset, stride_y, plane_index) = patches.remove(pos);","highlight_start":58,"highlight_end":69}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-image/src/c_api.rs","byte_start":37918,"byte_end":37929,"line_start":1011,"line_end":1011,"column_start":58,"column_end":69,"is_primary":true,"text":[{"text":" let (_, patch_data, usage, offset, stride_y, plane_index) = patches.remove(pos);","highlight_start":58,"highlight_end":69}],"label":null,"suggested_replacement":"_plane_index","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `plane_index`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-image/src/c_api.rs:1011:58\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m1011\u001b[0m \u001b[1m\u001b[94m|\u001b[0m let (_, patch_data, usage, offset, stride_y, plane_index) = patches.remove(pos);\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_plane_index`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `plane_height`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-image/src/c_api.rs","byte_start":41130,"byte_end":41142,"line_start":1103,"line_end":1103,"column_start":27,"column_end":39,"is_primary":true,"text":[{"text":" let (plane_width, plane_height) = if is_planar {","highlight_start":27,"highlight_end":39}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-image/src/c_api.rs","byte_start":41130,"byte_end":41142,"line_start":1103,"line_end":1103,"column_start":27,"column_end":39,"is_primary":true,"text":[{"text":" let (plane_width, plane_height) = if is_planar {","highlight_start":27,"highlight_end":39}],"label":null,"suggested_replacement":"_plane_height","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `plane_height`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-image/src/c_api.rs:1103:27\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m1103\u001b[0m \u001b[1m\u001b[94m|\u001b[0m let (plane_width, plane_height) = if is_planar {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_plane_height`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `is_planar`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-image/src/c_api.rs","byte_start":46723,"byte_end":46732,"line_start":1287,"line_end":1287,"column_start":17,"column_end":26,"is_primary":true,"text":[{"text":" let is_planar = VxCImage::is_planar_format(img.format);","highlight_start":17,"highlight_end":26}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-image/src/c_api.rs","byte_start":46723,"byte_end":46732,"line_start":1287,"line_end":1287,"column_start":17,"column_end":26,"is_primary":true,"text":[{"text":" let is_planar = VxCImage::is_planar_format(img.format);","highlight_start":17,"highlight_end":26}],"label":null,"suggested_replacement":"_is_planar","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `is_planar`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-image/src/c_api.rs:1287:17\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m1287\u001b[0m \u001b[1m\u001b[94m|\u001b[0m let is_planar = VxCImage::is_planar_format(img.format);\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_is_planar`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unnecessary `unsafe` block","code":{"code":"unused_unsafe","explanation":null},"level":"warning","spans":[{"file_name":"openvx-image/src/c_api.rs","byte_start":50604,"byte_end":50610,"line_start":1400,"line_end":1400,"column_start":9,"column_end":15,"is_primary":true,"text":[{"text":" unsafe {","highlight_start":9,"highlight_end":15}],"label":"unnecessary `unsafe` block","suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-image/src/c_api.rs","byte_start":48584,"byte_end":48590,"line_start":1351,"line_end":1351,"column_start":5,"column_end":11,"is_primary":false,"text":[{"text":" unsafe {","highlight_start":5,"highlight_end":11}],"label":"because it's nested under this `unsafe` block","suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unnecessary `unsafe` block\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-image/src/c_api.rs:1400:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m1351\u001b[0m \u001b[1m\u001b[94m|\u001b[0m unsafe {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m------\u001b[0m \u001b[1m\u001b[94mbecause it's nested under this `unsafe` block\u001b[0m\n\u001b[1m\u001b[94m...\u001b[0m\n\u001b[1m\u001b[94m1400\u001b[0m \u001b[1m\u001b[94m|\u001b[0m unsafe {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^\u001b[0m \u001b[1m\u001b[33munnecessary `unsafe` block\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"variable `total_copied` is assigned to, but never used","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-image/src/ct_image.rs","byte_start":25349,"byte_end":25365,"line_start":803,"line_end":803,"column_start":17,"column_end":33,"is_primary":true,"text":[{"text":" let mut total_copied = 0usize;","highlight_start":17,"highlight_end":33}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"consider using `_total_copied` instead","code":null,"level":"note","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: variable `total_copied` is assigned to, but never used\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-image/src/ct_image.rs:803:17\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m803\u001b[0m \u001b[1m\u001b[94m|\u001b[0m let mut total_copied = 0usize;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m= \u001b[0m\u001b[1mnote\u001b[0m: consider using `_total_copied` instead\n\n"} +{"$message_type":"diagnostic","message":"value assigned to `total_copied` is never read","code":{"code":"unused_assignments","explanation":null},"level":"warning","spans":[{"file_name":"openvx-image/src/ct_image.rs","byte_start":27353,"byte_end":27379,"line_start":838,"line_end":838,"column_start":21,"column_end":47,"is_primary":true,"text":[{"text":" total_copied += plane_size;","highlight_start":21,"highlight_end":47}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"maybe it is overwritten before being read?","code":null,"level":"help","spans":[],"children":[],"rendered":null},{"message":"`#[warn(unused_assignments)]` (part of `#[warn(unused)]`) on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: value assigned to `total_copied` is never read\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-image/src/ct_image.rs:838:21\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m838\u001b[0m \u001b[1m\u001b[94m|\u001b[0m total_copied += plane_size;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^^^^^^^\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m= \u001b[0m\u001b[1mhelp\u001b[0m: maybe it is overwritten before being read?\n \u001b[1m\u001b[94m= \u001b[0m\u001b[1mnote\u001b[0m: `#[warn(unused_assignments)]` (part of `#[warn(unused)]`) on by default\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `file_name`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-image/src/ct_image.rs","byte_start":35542,"byte_end":35551,"line_start":1111,"line_end":1111,"column_start":33,"column_end":42,"is_primary":true,"text":[{"text":"pub extern \"C\" fn ct_read_image(file_name: *const i8, dcn: i32) -> CT_Image {","highlight_start":33,"highlight_end":42}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-image/src/ct_image.rs","byte_start":35542,"byte_end":35551,"line_start":1111,"line_end":1111,"column_start":33,"column_end":42,"is_primary":true,"text":[{"text":"pub extern \"C\" fn ct_read_image(file_name: *const i8, dcn: i32) -> CT_Image {","highlight_start":33,"highlight_end":42}],"label":null,"suggested_replacement":"_file_name","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `file_name`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-image/src/ct_image.rs:1111:33\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m1111\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub extern \"C\" fn ct_read_image(file_name: *const i8, dcn: i32) -> CT_Image {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_file_name`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `dcn`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-image/src/ct_image.rs","byte_start":35564,"byte_end":35567,"line_start":1111,"line_end":1111,"column_start":55,"column_end":58,"is_primary":true,"text":[{"text":"pub extern \"C\" fn ct_read_image(file_name: *const i8, dcn: i32) -> CT_Image {","highlight_start":55,"highlight_end":58}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-image/src/ct_image.rs","byte_start":35564,"byte_end":35567,"line_start":1111,"line_end":1111,"column_start":55,"column_end":58,"is_primary":true,"text":[{"text":"pub extern \"C\" fn ct_read_image(file_name: *const i8, dcn: i32) -> CT_Image {","highlight_start":55,"highlight_end":58}],"label":null,"suggested_replacement":"_dcn","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `dcn`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-image/src/ct_image.rs:1111:55\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m1111\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub extern \"C\" fn ct_read_image(file_name: *const i8, dcn: i32) -> CT_Image {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_dcn`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `file_name`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-image/src/ct_image.rs","byte_start":35754,"byte_end":35763,"line_start":1118,"line_end":1118,"column_start":34,"column_end":43,"is_primary":true,"text":[{"text":"pub extern \"C\" fn ct_write_image(file_name: *const i8, image: CT_Image) {","highlight_start":34,"highlight_end":43}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-image/src/ct_image.rs","byte_start":35754,"byte_end":35763,"line_start":1118,"line_end":1118,"column_start":34,"column_end":43,"is_primary":true,"text":[{"text":"pub extern \"C\" fn ct_write_image(file_name: *const i8, image: CT_Image) {","highlight_start":34,"highlight_end":43}],"label":null,"suggested_replacement":"_file_name","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `file_name`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-image/src/ct_image.rs:1118:34\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m1118\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub extern \"C\" fn ct_write_image(file_name: *const i8, image: CT_Image) {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_file_name`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `image`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-image/src/ct_image.rs","byte_start":35776,"byte_end":35781,"line_start":1118,"line_end":1118,"column_start":56,"column_end":61,"is_primary":true,"text":[{"text":"pub extern \"C\" fn ct_write_image(file_name: *const i8, image: CT_Image) {","highlight_start":56,"highlight_end":61}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-image/src/ct_image.rs","byte_start":35776,"byte_end":35781,"line_start":1118,"line_end":1118,"column_start":56,"column_end":61,"is_primary":true,"text":[{"text":"pub extern \"C\" fn ct_write_image(file_name: *const i8, image: CT_Image) {","highlight_start":56,"highlight_end":61}],"label":null,"suggested_replacement":"_image","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `image`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-image/src/ct_image.rs:1118:56\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m1118\u001b[0m \u001b[1m\u001b[94m|\u001b[0m pub extern \"C\" fn ct_write_image(file_name: *const i8, image: CT_Image) {\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_image`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"static `IMAGE_ID_COUNTER` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-image/src/c_api.rs","byte_start":1400,"byte_end":1416,"line_start":32,"line_end":32,"column_start":8,"column_end":24,"is_primary":true,"text":[{"text":"static IMAGE_ID_COUNTER: std::sync::atomic::AtomicUsize = std::sync::atomic::AtomicUsize::new(1);","highlight_start":8,"highlight_end":24}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(dead_code)]` (part of `#[warn(unused)]`) on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: static `IMAGE_ID_COUNTER` is never used\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-image/src/c_api.rs:32:8\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m32\u001b[0m \u001b[1m\u001b[94m|\u001b[0m static IMAGE_ID_COUNTER: std::sync::atomic::AtomicUsize = std::sync::atomic::AtomicUsize::new(1);\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m= \u001b[0m\u001b[1mnote\u001b[0m: `#[warn(dead_code)]` (part of `#[warn(unused)]`) on by default\n\n"} +{"$message_type":"diagnostic","message":"constant `VX_DF_IMAGE_U16` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-image/src/ct_image.rs","byte_start":929,"byte_end":944,"line_start":25,"line_end":25,"column_start":7,"column_end":22,"is_primary":true,"text":[{"text":"const VX_DF_IMAGE_U16: u32 = 0x20100100;","highlight_start":7,"highlight_end":22}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: constant `VX_DF_IMAGE_U16` is never used\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-image/src/ct_image.rs:25:7\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m25\u001b[0m \u001b[1m\u001b[94m|\u001b[0m const VX_DF_IMAGE_U16: u32 = 0x20100100;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"constant `VX_DF_IMAGE_S16` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-image/src/ct_image.rs","byte_start":970,"byte_end":985,"line_start":26,"line_end":26,"column_start":7,"column_end":22,"is_primary":true,"text":[{"text":"const VX_DF_IMAGE_S16: u32 = 0x20100200;","highlight_start":7,"highlight_end":22}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: constant `VX_DF_IMAGE_S16` is never used\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-image/src/ct_image.rs:26:7\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m26\u001b[0m \u001b[1m\u001b[94m|\u001b[0m const VX_DF_IMAGE_S16: u32 = 0x20100200;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"constant `VX_DF_IMAGE_U32` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-image/src/ct_image.rs","byte_start":1011,"byte_end":1026,"line_start":27,"line_end":27,"column_start":7,"column_end":22,"is_primary":true,"text":[{"text":"const VX_DF_IMAGE_U32: u32 = 0x20200100;","highlight_start":7,"highlight_end":22}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: constant `VX_DF_IMAGE_U32` is never used\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-image/src/ct_image.rs:27:7\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m27\u001b[0m \u001b[1m\u001b[94m|\u001b[0m const VX_DF_IMAGE_U32: u32 = 0x20200100;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"constant `VX_DF_IMAGE_S32` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-image/src/ct_image.rs","byte_start":1052,"byte_end":1067,"line_start":28,"line_end":28,"column_start":7,"column_end":22,"is_primary":true,"text":[{"text":"const VX_DF_IMAGE_S32: u32 = 0x20200200;","highlight_start":7,"highlight_end":22}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: constant `VX_DF_IMAGE_S32` is never used\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-image/src/ct_image.rs:28:7\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m28\u001b[0m \u001b[1m\u001b[94m|\u001b[0m const VX_DF_IMAGE_S32: u32 = 0x20200200;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"23 warnings emitted","code":null,"level":"warning","spans":[],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: 23 warnings emitted\u001b[0m\n\n"} diff --git a/target/release/.fingerprint/openvx-vision-1de156f7df597497/dep-lib-openvx_vision b/target/release/.fingerprint/openvx-vision-1de156f7df597497/dep-lib-openvx_vision new file mode 100644 index 0000000..7cad92f Binary files /dev/null and b/target/release/.fingerprint/openvx-vision-1de156f7df597497/dep-lib-openvx_vision differ diff --git a/target/release/.fingerprint/openvx-vision-1de156f7df597497/invoked.timestamp b/target/release/.fingerprint/openvx-vision-1de156f7df597497/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/openvx-vision-1de156f7df597497/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/openvx-vision-1de156f7df597497/lib-openvx_vision b/target/release/.fingerprint/openvx-vision-1de156f7df597497/lib-openvx_vision new file mode 100644 index 0000000..f3a6d3a --- /dev/null +++ b/target/release/.fingerprint/openvx-vision-1de156f7df597497/lib-openvx_vision @@ -0,0 +1 @@ +d6922986ceb47bf2 \ No newline at end of file diff --git a/target/release/.fingerprint/openvx-vision-1de156f7df597497/lib-openvx_vision.json b/target/release/.fingerprint/openvx-vision-1de156f7df597497/lib-openvx_vision.json new file mode 100644 index 0000000..ea3618d --- /dev/null +++ b/target/release/.fingerprint/openvx-vision-1de156f7df597497/lib-openvx_vision.json @@ -0,0 +1 @@ +{"rustc":18276270781310494267,"features":"[\"default\"]","declared_features":"[\"avx2\", \"default\", \"neon\", \"parallel\", \"rayon\", \"simd\", \"sse2\"]","target":148198738751462385,"profile":2040997289075261528,"path":12215504641280893655,"deps":[[4809150008149002099,"openvx_core",false,12695232944250483106],[11101848710733117461,"openvx_buffer",false,12173304525356094307],[13782069936663139603,"openvx_image",false,5415066650095401666]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/openvx-vision-1de156f7df597497/dep-lib-openvx_vision","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/openvx-vision-1de156f7df597497/output-lib-openvx_vision b/target/release/.fingerprint/openvx-vision-1de156f7df597497/output-lib-openvx_vision new file mode 100644 index 0000000..b0c3b66 --- /dev/null +++ b/target/release/.fingerprint/openvx-vision-1de156f7df597497/output-lib-openvx_vision @@ -0,0 +1,15 @@ +{"$message_type":"diagnostic","message":"unused import: `KernelTrait`","code":{"code":"unused_imports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-vision/src/lib.rs","byte_start":415,"byte_end":426,"line_start":13,"line_end":13,"column_start":5,"column_end":16,"is_primary":true,"text":[{"text":" KernelTrait,","highlight_start":5,"highlight_end":16}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(unused_imports)]` (part of `#[warn(unused)]`) on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"remove the unused import","code":null,"level":"help","spans":[{"file_name":"openvx-vision/src/lib.rs","byte_start":409,"byte_end":426,"line_start":12,"line_end":13,"column_start":13,"column_end":16,"is_primary":true,"text":[{"text":" VxKernel,","highlight_start":13,"highlight_end":14},{"text":" KernelTrait,","highlight_start":1,"highlight_end":16}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused import: `KernelTrait`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-vision/src/lib.rs:13:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m13\u001b[0m \u001b[1m\u001b[94m|\u001b[0m KernelTrait,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m= \u001b[0m\u001b[1mnote\u001b[0m: `#[warn(unused_imports)]` (part of `#[warn(unused)]`) on by default\n\n"} +{"$message_type":"diagnostic","message":"unused imports: `BorderMode` and `get_pixel_bordered`","code":{"code":"unused_imports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-vision/src/object_detection.rs","byte_start":153,"byte_end":171,"line_start":5,"line_end":5,"column_start":20,"column_end":38,"is_primary":true,"text":[{"text":"use crate::utils::{get_pixel_bordered, BorderMode};","highlight_start":20,"highlight_end":38}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-vision/src/object_detection.rs","byte_start":173,"byte_end":183,"line_start":5,"line_end":5,"column_start":40,"column_end":50,"is_primary":true,"text":[{"text":"use crate::utils::{get_pixel_bordered, BorderMode};","highlight_start":40,"highlight_end":50}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"remove the whole `use` item","code":null,"level":"help","spans":[{"file_name":"openvx-vision/src/object_detection.rs","byte_start":134,"byte_end":186,"line_start":5,"line_end":6,"column_start":1,"column_end":1,"is_primary":true,"text":[{"text":"use crate::utils::{get_pixel_bordered, BorderMode};","highlight_start":1,"highlight_end":52},{"text":"","highlight_start":1,"highlight_end":1}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused imports: `BorderMode` and `get_pixel_bordered`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-vision/src/object_detection.rs:5:20\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m5\u001b[0m \u001b[1m\u001b[94m|\u001b[0m use crate::utils::{get_pixel_bordered, BorderMode};\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused import: `super::*`","code":{"code":"unused_imports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-vision/src/simd_utils.rs","byte_start":2049,"byte_end":2057,"line_start":70,"line_end":70,"column_start":9,"column_end":17,"is_primary":true,"text":[{"text":" use super::*;","highlight_start":9,"highlight_end":17}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"remove the whole `use` item","code":null,"level":"help","spans":[{"file_name":"openvx-vision/src/simd_utils.rs","byte_start":2045,"byte_end":2058,"line_start":70,"line_end":70,"column_start":5,"column_end":18,"is_primary":true,"text":[{"text":" use super::*;","highlight_start":5,"highlight_end":18}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused import: `super::*`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-vision/src/simd_utils.rs:70:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m70\u001b[0m \u001b[1m\u001b[94m|\u001b[0m use super::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"value assigned to `row_sum` is never read","code":{"code":"unused_assignments","explanation":null},"level":"warning","spans":[{"file_name":"openvx-vision/src/statistics.rs","byte_start":8740,"byte_end":8741,"line_start":295,"line_end":295,"column_start":28,"column_end":29,"is_primary":true,"text":[{"text":" let mut row_sum: u32 = 0;","highlight_start":28,"highlight_end":29}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"maybe it is overwritten before being read?","code":null,"level":"help","spans":[],"children":[],"rendered":null},{"message":"`#[warn(unused_assignments)]` (part of `#[warn(unused)]`) on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: value assigned to `row_sum` is never read\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-vision/src/statistics.rs:295:28\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m295\u001b[0m \u001b[1m\u001b[94m|\u001b[0m let mut row_sum: u32 = 0;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m= \u001b[0m\u001b[1mhelp\u001b[0m: maybe it is overwritten before being read?\n \u001b[1m\u001b[94m= \u001b[0m\u001b[1mnote\u001b[0m: `#[warn(unused_assignments)]` (part of `#[warn(unused)]`) on by default\n\n"} +{"$message_type":"diagnostic","message":"variable does not need to be mutable","code":{"code":"unused_mut","explanation":null},"level":"warning","spans":[{"file_name":"openvx-vision/src/utils.rs","byte_start":1650,"byte_end":1665,"line_start":64,"line_end":64,"column_start":13,"column_end":28,"is_primary":true,"text":[{"text":" let mut pivot_index = partition(arr, left, right);","highlight_start":13,"highlight_end":28}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(unused_mut)]` (part of `#[warn(unused)]`) on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"remove this `mut`","code":null,"level":"help","spans":[{"file_name":"openvx-vision/src/utils.rs","byte_start":1650,"byte_end":1654,"line_start":64,"line_end":64,"column_start":13,"column_end":17,"is_primary":true,"text":[{"text":" let mut pivot_index = partition(arr, left, right);","highlight_start":13,"highlight_end":17}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: variable does not need to be mutable\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-vision/src/utils.rs:64:13\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m64\u001b[0m \u001b[1m\u001b[94m|\u001b[0m let mut pivot_index = partition(arr, left, right);\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m----\u001b[0m\u001b[1m\u001b[33m^^^^^^^^^^^\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94mhelp: remove this `mut`\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m= \u001b[0m\u001b[1mnote\u001b[0m: `#[warn(unused_mut)]` (part of `#[warn(unused)]`) on by default\n\n"} +{"$message_type":"diagnostic","message":"constant `Y_COEFF_R` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-vision/src/color.rs","byte_start":228,"byte_end":237,"line_start":7,"line_end":7,"column_start":7,"column_end":16,"is_primary":true,"text":[{"text":"const Y_COEFF_R: i32 = 54; // 0.2126 * 256 (BT.709)","highlight_start":7,"highlight_end":16}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(dead_code)]` (part of `#[warn(unused)]`) on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: constant `Y_COEFF_R` is never used\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-vision/src/color.rs:7:7\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m7\u001b[0m \u001b[1m\u001b[94m|\u001b[0m const Y_COEFF_R: i32 = 54; // 0.2126 * 256 (BT.709)\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m= \u001b[0m\u001b[1mnote\u001b[0m: `#[warn(dead_code)]` (part of `#[warn(unused)]`) on by default\n\n"} +{"$message_type":"diagnostic","message":"constant `Y_COEFF_G` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-vision/src/color.rs","byte_start":282,"byte_end":291,"line_start":8,"line_end":8,"column_start":7,"column_end":16,"is_primary":true,"text":[{"text":"const Y_COEFF_G: i32 = 183; // 0.7152 * 256 (BT.709)","highlight_start":7,"highlight_end":16}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: constant `Y_COEFF_G` is never used\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-vision/src/color.rs:8:7\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m8\u001b[0m \u001b[1m\u001b[94m|\u001b[0m const Y_COEFF_G: i32 = 183; // 0.7152 * 256 (BT.709)\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"constant `Y_COEFF_B` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-vision/src/color.rs","byte_start":336,"byte_end":345,"line_start":9,"line_end":9,"column_start":7,"column_end":16,"is_primary":true,"text":[{"text":"const Y_COEFF_B: i32 = 18; // 0.0722 * 256 (BT.709)","highlight_start":7,"highlight_end":16}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: constant `Y_COEFF_B` is never used\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-vision/src/color.rs:9:7\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m9\u001b[0m \u001b[1m\u001b[94m|\u001b[0m const Y_COEFF_B: i32 = 18; // 0.0722 * 256 (BT.709)\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"constant `U_COEFF_R` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-vision/src/color.rs","byte_start":391,"byte_end":400,"line_start":11,"line_end":11,"column_start":7,"column_end":16,"is_primary":true,"text":[{"text":"const U_COEFF_R: i32 = -29; // -0.1146 * 256 (BT.709)","highlight_start":7,"highlight_end":16}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: constant `U_COEFF_R` is never used\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-vision/src/color.rs:11:7\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m11\u001b[0m \u001b[1m\u001b[94m|\u001b[0m const U_COEFF_R: i32 = -29; // -0.1146 * 256 (BT.709)\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"constant `U_COEFF_G` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-vision/src/color.rs","byte_start":446,"byte_end":455,"line_start":12,"line_end":12,"column_start":7,"column_end":16,"is_primary":true,"text":[{"text":"const U_COEFF_G: i32 = -99; // -0.3854 * 256 (BT.709)","highlight_start":7,"highlight_end":16}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: constant `U_COEFF_G` is never used\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-vision/src/color.rs:12:7\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m12\u001b[0m \u001b[1m\u001b[94m|\u001b[0m const U_COEFF_G: i32 = -99; // -0.3854 * 256 (BT.709)\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"constant `U_COEFF_B` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-vision/src/color.rs","byte_start":501,"byte_end":510,"line_start":13,"line_end":13,"column_start":7,"column_end":16,"is_primary":true,"text":[{"text":"const U_COEFF_B: i32 = 128; // 0.5 * 256","highlight_start":7,"highlight_end":16}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: constant `U_COEFF_B` is never used\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-vision/src/color.rs:13:7\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m13\u001b[0m \u001b[1m\u001b[94m|\u001b[0m const U_COEFF_B: i32 = 128; // 0.5 * 256\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"constant `V_COEFF_R` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-vision/src/color.rs","byte_start":544,"byte_end":553,"line_start":15,"line_end":15,"column_start":7,"column_end":16,"is_primary":true,"text":[{"text":"const V_COEFF_R: i32 = 128; // 0.5 * 256","highlight_start":7,"highlight_end":16}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: constant `V_COEFF_R` is never used\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-vision/src/color.rs:15:7\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m15\u001b[0m \u001b[1m\u001b[94m|\u001b[0m const V_COEFF_R: i32 = 128; // 0.5 * 256\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"constant `V_COEFF_G` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-vision/src/color.rs","byte_start":586,"byte_end":595,"line_start":16,"line_end":16,"column_start":7,"column_end":16,"is_primary":true,"text":[{"text":"const V_COEFF_G: i32 = -116; // -0.4542 * 256 (BT.709)","highlight_start":7,"highlight_end":16}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: constant `V_COEFF_G` is never used\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-vision/src/color.rs:16:7\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m16\u001b[0m \u001b[1m\u001b[94m|\u001b[0m const V_COEFF_G: i32 = -116; // -0.4542 * 256 (BT.709)\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"constant `V_COEFF_B` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-vision/src/color.rs","byte_start":641,"byte_end":650,"line_start":17,"line_end":17,"column_start":7,"column_end":16,"is_primary":true,"text":[{"text":"const V_COEFF_B: i32 = -12; // -0.0458 * 256 (BT.709)","highlight_start":7,"highlight_end":16}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: constant `V_COEFF_B` is never used\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-vision/src/color.rs:17:7\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m17\u001b[0m \u001b[1m\u001b[94m|\u001b[0m const V_COEFF_B: i32 = -12; // -0.0458 * 256 (BT.709)\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"14 warnings emitted","code":null,"level":"warning","spans":[],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: 14 warnings emitted\u001b[0m\n\n"} diff --git a/target/release/.fingerprint/openvx-vision-36d558360ff47327/dep-test-lib-openvx_vision b/target/release/.fingerprint/openvx-vision-36d558360ff47327/dep-test-lib-openvx_vision new file mode 100644 index 0000000..6be0e60 Binary files /dev/null and b/target/release/.fingerprint/openvx-vision-36d558360ff47327/dep-test-lib-openvx_vision differ diff --git a/target/release/.fingerprint/openvx-vision-36d558360ff47327/invoked.timestamp b/target/release/.fingerprint/openvx-vision-36d558360ff47327/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/openvx-vision-36d558360ff47327/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/openvx-vision-36d558360ff47327/output-test-lib-openvx_vision b/target/release/.fingerprint/openvx-vision-36d558360ff47327/output-test-lib-openvx_vision new file mode 100644 index 0000000..b0c3b66 --- /dev/null +++ b/target/release/.fingerprint/openvx-vision-36d558360ff47327/output-test-lib-openvx_vision @@ -0,0 +1,15 @@ +{"$message_type":"diagnostic","message":"unused import: `KernelTrait`","code":{"code":"unused_imports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-vision/src/lib.rs","byte_start":415,"byte_end":426,"line_start":13,"line_end":13,"column_start":5,"column_end":16,"is_primary":true,"text":[{"text":" KernelTrait,","highlight_start":5,"highlight_end":16}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(unused_imports)]` (part of `#[warn(unused)]`) on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"remove the unused import","code":null,"level":"help","spans":[{"file_name":"openvx-vision/src/lib.rs","byte_start":409,"byte_end":426,"line_start":12,"line_end":13,"column_start":13,"column_end":16,"is_primary":true,"text":[{"text":" VxKernel,","highlight_start":13,"highlight_end":14},{"text":" KernelTrait,","highlight_start":1,"highlight_end":16}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused import: `KernelTrait`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-vision/src/lib.rs:13:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m13\u001b[0m \u001b[1m\u001b[94m|\u001b[0m KernelTrait,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m= \u001b[0m\u001b[1mnote\u001b[0m: `#[warn(unused_imports)]` (part of `#[warn(unused)]`) on by default\n\n"} +{"$message_type":"diagnostic","message":"unused imports: `BorderMode` and `get_pixel_bordered`","code":{"code":"unused_imports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-vision/src/object_detection.rs","byte_start":153,"byte_end":171,"line_start":5,"line_end":5,"column_start":20,"column_end":38,"is_primary":true,"text":[{"text":"use crate::utils::{get_pixel_bordered, BorderMode};","highlight_start":20,"highlight_end":38}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-vision/src/object_detection.rs","byte_start":173,"byte_end":183,"line_start":5,"line_end":5,"column_start":40,"column_end":50,"is_primary":true,"text":[{"text":"use crate::utils::{get_pixel_bordered, BorderMode};","highlight_start":40,"highlight_end":50}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"remove the whole `use` item","code":null,"level":"help","spans":[{"file_name":"openvx-vision/src/object_detection.rs","byte_start":134,"byte_end":186,"line_start":5,"line_end":6,"column_start":1,"column_end":1,"is_primary":true,"text":[{"text":"use crate::utils::{get_pixel_bordered, BorderMode};","highlight_start":1,"highlight_end":52},{"text":"","highlight_start":1,"highlight_end":1}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused imports: `BorderMode` and `get_pixel_bordered`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-vision/src/object_detection.rs:5:20\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m5\u001b[0m \u001b[1m\u001b[94m|\u001b[0m use crate::utils::{get_pixel_bordered, BorderMode};\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused import: `super::*`","code":{"code":"unused_imports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-vision/src/simd_utils.rs","byte_start":2049,"byte_end":2057,"line_start":70,"line_end":70,"column_start":9,"column_end":17,"is_primary":true,"text":[{"text":" use super::*;","highlight_start":9,"highlight_end":17}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"remove the whole `use` item","code":null,"level":"help","spans":[{"file_name":"openvx-vision/src/simd_utils.rs","byte_start":2045,"byte_end":2058,"line_start":70,"line_end":70,"column_start":5,"column_end":18,"is_primary":true,"text":[{"text":" use super::*;","highlight_start":5,"highlight_end":18}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused import: `super::*`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-vision/src/simd_utils.rs:70:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m70\u001b[0m \u001b[1m\u001b[94m|\u001b[0m use super::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"value assigned to `row_sum` is never read","code":{"code":"unused_assignments","explanation":null},"level":"warning","spans":[{"file_name":"openvx-vision/src/statistics.rs","byte_start":8740,"byte_end":8741,"line_start":295,"line_end":295,"column_start":28,"column_end":29,"is_primary":true,"text":[{"text":" let mut row_sum: u32 = 0;","highlight_start":28,"highlight_end":29}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"maybe it is overwritten before being read?","code":null,"level":"help","spans":[],"children":[],"rendered":null},{"message":"`#[warn(unused_assignments)]` (part of `#[warn(unused)]`) on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: value assigned to `row_sum` is never read\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-vision/src/statistics.rs:295:28\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m295\u001b[0m \u001b[1m\u001b[94m|\u001b[0m let mut row_sum: u32 = 0;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m= \u001b[0m\u001b[1mhelp\u001b[0m: maybe it is overwritten before being read?\n \u001b[1m\u001b[94m= \u001b[0m\u001b[1mnote\u001b[0m: `#[warn(unused_assignments)]` (part of `#[warn(unused)]`) on by default\n\n"} +{"$message_type":"diagnostic","message":"variable does not need to be mutable","code":{"code":"unused_mut","explanation":null},"level":"warning","spans":[{"file_name":"openvx-vision/src/utils.rs","byte_start":1650,"byte_end":1665,"line_start":64,"line_end":64,"column_start":13,"column_end":28,"is_primary":true,"text":[{"text":" let mut pivot_index = partition(arr, left, right);","highlight_start":13,"highlight_end":28}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(unused_mut)]` (part of `#[warn(unused)]`) on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"remove this `mut`","code":null,"level":"help","spans":[{"file_name":"openvx-vision/src/utils.rs","byte_start":1650,"byte_end":1654,"line_start":64,"line_end":64,"column_start":13,"column_end":17,"is_primary":true,"text":[{"text":" let mut pivot_index = partition(arr, left, right);","highlight_start":13,"highlight_end":17}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: variable does not need to be mutable\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-vision/src/utils.rs:64:13\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m64\u001b[0m \u001b[1m\u001b[94m|\u001b[0m let mut pivot_index = partition(arr, left, right);\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m----\u001b[0m\u001b[1m\u001b[33m^^^^^^^^^^^\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94mhelp: remove this `mut`\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m= \u001b[0m\u001b[1mnote\u001b[0m: `#[warn(unused_mut)]` (part of `#[warn(unused)]`) on by default\n\n"} +{"$message_type":"diagnostic","message":"constant `Y_COEFF_R` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-vision/src/color.rs","byte_start":228,"byte_end":237,"line_start":7,"line_end":7,"column_start":7,"column_end":16,"is_primary":true,"text":[{"text":"const Y_COEFF_R: i32 = 54; // 0.2126 * 256 (BT.709)","highlight_start":7,"highlight_end":16}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(dead_code)]` (part of `#[warn(unused)]`) on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: constant `Y_COEFF_R` is never used\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-vision/src/color.rs:7:7\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m7\u001b[0m \u001b[1m\u001b[94m|\u001b[0m const Y_COEFF_R: i32 = 54; // 0.2126 * 256 (BT.709)\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m= \u001b[0m\u001b[1mnote\u001b[0m: `#[warn(dead_code)]` (part of `#[warn(unused)]`) on by default\n\n"} +{"$message_type":"diagnostic","message":"constant `Y_COEFF_G` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-vision/src/color.rs","byte_start":282,"byte_end":291,"line_start":8,"line_end":8,"column_start":7,"column_end":16,"is_primary":true,"text":[{"text":"const Y_COEFF_G: i32 = 183; // 0.7152 * 256 (BT.709)","highlight_start":7,"highlight_end":16}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: constant `Y_COEFF_G` is never used\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-vision/src/color.rs:8:7\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m8\u001b[0m \u001b[1m\u001b[94m|\u001b[0m const Y_COEFF_G: i32 = 183; // 0.7152 * 256 (BT.709)\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"constant `Y_COEFF_B` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-vision/src/color.rs","byte_start":336,"byte_end":345,"line_start":9,"line_end":9,"column_start":7,"column_end":16,"is_primary":true,"text":[{"text":"const Y_COEFF_B: i32 = 18; // 0.0722 * 256 (BT.709)","highlight_start":7,"highlight_end":16}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: constant `Y_COEFF_B` is never used\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-vision/src/color.rs:9:7\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m9\u001b[0m \u001b[1m\u001b[94m|\u001b[0m const Y_COEFF_B: i32 = 18; // 0.0722 * 256 (BT.709)\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"constant `U_COEFF_R` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-vision/src/color.rs","byte_start":391,"byte_end":400,"line_start":11,"line_end":11,"column_start":7,"column_end":16,"is_primary":true,"text":[{"text":"const U_COEFF_R: i32 = -29; // -0.1146 * 256 (BT.709)","highlight_start":7,"highlight_end":16}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: constant `U_COEFF_R` is never used\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-vision/src/color.rs:11:7\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m11\u001b[0m \u001b[1m\u001b[94m|\u001b[0m const U_COEFF_R: i32 = -29; // -0.1146 * 256 (BT.709)\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"constant `U_COEFF_G` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-vision/src/color.rs","byte_start":446,"byte_end":455,"line_start":12,"line_end":12,"column_start":7,"column_end":16,"is_primary":true,"text":[{"text":"const U_COEFF_G: i32 = -99; // -0.3854 * 256 (BT.709)","highlight_start":7,"highlight_end":16}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: constant `U_COEFF_G` is never used\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-vision/src/color.rs:12:7\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m12\u001b[0m \u001b[1m\u001b[94m|\u001b[0m const U_COEFF_G: i32 = -99; // -0.3854 * 256 (BT.709)\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"constant `U_COEFF_B` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-vision/src/color.rs","byte_start":501,"byte_end":510,"line_start":13,"line_end":13,"column_start":7,"column_end":16,"is_primary":true,"text":[{"text":"const U_COEFF_B: i32 = 128; // 0.5 * 256","highlight_start":7,"highlight_end":16}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: constant `U_COEFF_B` is never used\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-vision/src/color.rs:13:7\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m13\u001b[0m \u001b[1m\u001b[94m|\u001b[0m const U_COEFF_B: i32 = 128; // 0.5 * 256\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"constant `V_COEFF_R` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-vision/src/color.rs","byte_start":544,"byte_end":553,"line_start":15,"line_end":15,"column_start":7,"column_end":16,"is_primary":true,"text":[{"text":"const V_COEFF_R: i32 = 128; // 0.5 * 256","highlight_start":7,"highlight_end":16}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: constant `V_COEFF_R` is never used\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-vision/src/color.rs:15:7\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m15\u001b[0m \u001b[1m\u001b[94m|\u001b[0m const V_COEFF_R: i32 = 128; // 0.5 * 256\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"constant `V_COEFF_G` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-vision/src/color.rs","byte_start":586,"byte_end":595,"line_start":16,"line_end":16,"column_start":7,"column_end":16,"is_primary":true,"text":[{"text":"const V_COEFF_G: i32 = -116; // -0.4542 * 256 (BT.709)","highlight_start":7,"highlight_end":16}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: constant `V_COEFF_G` is never used\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-vision/src/color.rs:16:7\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m16\u001b[0m \u001b[1m\u001b[94m|\u001b[0m const V_COEFF_G: i32 = -116; // -0.4542 * 256 (BT.709)\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"constant `V_COEFF_B` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-vision/src/color.rs","byte_start":641,"byte_end":650,"line_start":17,"line_end":17,"column_start":7,"column_end":16,"is_primary":true,"text":[{"text":"const V_COEFF_B: i32 = -12; // -0.0458 * 256 (BT.709)","highlight_start":7,"highlight_end":16}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: constant `V_COEFF_B` is never used\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-vision/src/color.rs:17:7\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m17\u001b[0m \u001b[1m\u001b[94m|\u001b[0m const V_COEFF_B: i32 = -12; // -0.0458 * 256 (BT.709)\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"14 warnings emitted","code":null,"level":"warning","spans":[],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: 14 warnings emitted\u001b[0m\n\n"} diff --git a/target/release/.fingerprint/openvx-vision-36d558360ff47327/test-lib-openvx_vision b/target/release/.fingerprint/openvx-vision-36d558360ff47327/test-lib-openvx_vision new file mode 100644 index 0000000..e8fc916 --- /dev/null +++ b/target/release/.fingerprint/openvx-vision-36d558360ff47327/test-lib-openvx_vision @@ -0,0 +1 @@ +74a1340e1055e82e \ No newline at end of file diff --git a/target/release/.fingerprint/openvx-vision-36d558360ff47327/test-lib-openvx_vision.json b/target/release/.fingerprint/openvx-vision-36d558360ff47327/test-lib-openvx_vision.json new file mode 100644 index 0000000..f71fb89 --- /dev/null +++ b/target/release/.fingerprint/openvx-vision-36d558360ff47327/test-lib-openvx_vision.json @@ -0,0 +1 @@ +{"rustc":18276270781310494267,"features":"[\"default\"]","declared_features":"[\"avx2\", \"default\", \"neon\", \"parallel\", \"rayon\", \"simd\", \"sse2\"]","target":148198738751462385,"profile":10220379689200424945,"path":12215504641280893655,"deps":[[720731745621185994,"criterion",false,9135737523091704129],[4809150008149002099,"openvx_core",false,12695232944250483106],[11101848710733117461,"openvx_buffer",false,12173304525356094307],[13124632613270968579,"assert_approx_eq",false,872673750213144729],[13782069936663139603,"openvx_image",false,5415066650095401666]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/openvx-vision-36d558360ff47327/dep-test-lib-openvx_vision","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/openvx-vision-372b97db8cb34911/dep-test-integration-test-color_tests b/target/release/.fingerprint/openvx-vision-372b97db8cb34911/dep-test-integration-test-color_tests new file mode 100644 index 0000000..f1d007c Binary files /dev/null and b/target/release/.fingerprint/openvx-vision-372b97db8cb34911/dep-test-integration-test-color_tests differ diff --git a/target/release/.fingerprint/openvx-vision-372b97db8cb34911/invoked.timestamp b/target/release/.fingerprint/openvx-vision-372b97db8cb34911/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/openvx-vision-372b97db8cb34911/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/openvx-vision-372b97db8cb34911/output-test-integration-test-color_tests b/target/release/.fingerprint/openvx-vision-372b97db8cb34911/output-test-integration-test-color_tests new file mode 100644 index 0000000..c10038d --- /dev/null +++ b/target/release/.fingerprint/openvx-vision-372b97db8cb34911/output-test-integration-test-color_tests @@ -0,0 +1,2 @@ +{"$message_type":"diagnostic","message":"unused import: `create_test_image`","code":{"code":"unused_imports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-vision/tests/color_tests.rs","byte_start":67,"byte_end":84,"line_start":3,"line_end":3,"column_start":40,"column_end":57,"is_primary":true,"text":[{"text":"use openvx_image::{Image, ImageFormat, create_test_image};","highlight_start":40,"highlight_end":57}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(unused_imports)]` (part of `#[warn(unused)]`) on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"remove the unused import","code":null,"level":"help","spans":[{"file_name":"openvx-vision/tests/color_tests.rs","byte_start":65,"byte_end":84,"line_start":3,"line_end":3,"column_start":38,"column_end":57,"is_primary":true,"text":[{"text":"use openvx_image::{Image, ImageFormat, create_test_image};","highlight_start":38,"highlight_end":57}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused import: `create_test_image`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-vision/tests/color_tests.rs:3:40\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m3\u001b[0m \u001b[1m\u001b[94m|\u001b[0m use openvx_image::{Image, ImageFormat, create_test_image};\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m= \u001b[0m\u001b[1mnote\u001b[0m: `#[warn(unused_imports)]` (part of `#[warn(unused)]`) on by default\n\n"} +{"$message_type":"diagnostic","message":"1 warning emitted","code":null,"level":"warning","spans":[],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: 1 warning emitted\u001b[0m\n\n"} diff --git a/target/release/.fingerprint/openvx-vision-372b97db8cb34911/test-integration-test-color_tests b/target/release/.fingerprint/openvx-vision-372b97db8cb34911/test-integration-test-color_tests new file mode 100644 index 0000000..501230d --- /dev/null +++ b/target/release/.fingerprint/openvx-vision-372b97db8cb34911/test-integration-test-color_tests @@ -0,0 +1 @@ +e472e66263220ad6 \ No newline at end of file diff --git a/target/release/.fingerprint/openvx-vision-372b97db8cb34911/test-integration-test-color_tests.json b/target/release/.fingerprint/openvx-vision-372b97db8cb34911/test-integration-test-color_tests.json new file mode 100644 index 0000000..71edcac --- /dev/null +++ b/target/release/.fingerprint/openvx-vision-372b97db8cb34911/test-integration-test-color_tests.json @@ -0,0 +1 @@ +{"rustc":18276270781310494267,"features":"[\"default\"]","declared_features":"[\"avx2\", \"default\", \"neon\", \"parallel\", \"rayon\", \"simd\", \"sse2\"]","target":18396863390167227684,"profile":10220379689200424945,"path":6370266419644172535,"deps":[[720731745621185994,"criterion",false,9135737523091704129],[4809150008149002099,"openvx_core",false,12695232944250483106],[10311188578765087558,"openvx_vision",false,17472757978421105366],[11101848710733117461,"openvx_buffer",false,12173304525356094307],[13124632613270968579,"assert_approx_eq",false,872673750213144729],[13782069936663139603,"openvx_image",false,5415066650095401666]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/openvx-vision-372b97db8cb34911/dep-test-integration-test-color_tests","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/openvx-vision-77e9934effe120be/dep-test-integration-test-geometric_tests b/target/release/.fingerprint/openvx-vision-77e9934effe120be/dep-test-integration-test-geometric_tests new file mode 100644 index 0000000..cf47eb7 Binary files /dev/null and b/target/release/.fingerprint/openvx-vision-77e9934effe120be/dep-test-integration-test-geometric_tests differ diff --git a/target/release/.fingerprint/openvx-vision-77e9934effe120be/invoked.timestamp b/target/release/.fingerprint/openvx-vision-77e9934effe120be/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/openvx-vision-77e9934effe120be/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/openvx-vision-77e9934effe120be/output-test-integration-test-geometric_tests b/target/release/.fingerprint/openvx-vision-77e9934effe120be/output-test-integration-test-geometric_tests new file mode 100644 index 0000000..24d64e0 --- /dev/null +++ b/target/release/.fingerprint/openvx-vision-77e9934effe120be/output-test-integration-test-geometric_tests @@ -0,0 +1,3 @@ +{"$message_type":"diagnostic","message":"comparison is useless due to type limits","code":{"code":"unused_comparisons","explanation":null},"level":"warning","spans":[{"file_name":"openvx-vision/tests/geometric_tests.rs","byte_start":1151,"byte_end":1159,"line_start":36,"line_end":36,"column_start":17,"column_end":25,"is_primary":true,"text":[{"text":" assert!(v <= 255, \"Upscale should produce valid values\");","highlight_start":17,"highlight_end":25}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(unused_comparisons)]` on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: comparison is useless due to type limits\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-vision/tests/geometric_tests.rs:36:17\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m36\u001b[0m \u001b[1m\u001b[94m|\u001b[0m assert!(v <= 255, \"Upscale should produce valid values\");\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m= \u001b[0m\u001b[1mnote\u001b[0m: `#[warn(unused_comparisons)]` on by default\n\n"} +{"$message_type":"diagnostic","message":"comparison is useless due to type limits","code":{"code":"unused_comparisons","explanation":null},"level":"warning","spans":[{"file_name":"openvx-vision/tests/geometric_tests.rs","byte_start":2347,"byte_end":2355,"line_start":74,"line_end":74,"column_start":17,"column_end":25,"is_primary":true,"text":[{"text":" assert!(v <= 255, \"Affine warp should produce valid values\");","highlight_start":17,"highlight_end":25}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: comparison is useless due to type limits\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-vision/tests/geometric_tests.rs:74:17\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m74\u001b[0m \u001b[1m\u001b[94m|\u001b[0m assert!(v <= 255, \"Affine warp should produce valid values\");\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"2 warnings emitted","code":null,"level":"warning","spans":[],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: 2 warnings emitted\u001b[0m\n\n"} diff --git a/target/release/.fingerprint/openvx-vision-77e9934effe120be/test-integration-test-geometric_tests b/target/release/.fingerprint/openvx-vision-77e9934effe120be/test-integration-test-geometric_tests new file mode 100644 index 0000000..57daec2 --- /dev/null +++ b/target/release/.fingerprint/openvx-vision-77e9934effe120be/test-integration-test-geometric_tests @@ -0,0 +1 @@ +b926c15659337905 \ No newline at end of file diff --git a/target/release/.fingerprint/openvx-vision-77e9934effe120be/test-integration-test-geometric_tests.json b/target/release/.fingerprint/openvx-vision-77e9934effe120be/test-integration-test-geometric_tests.json new file mode 100644 index 0000000..689db4b --- /dev/null +++ b/target/release/.fingerprint/openvx-vision-77e9934effe120be/test-integration-test-geometric_tests.json @@ -0,0 +1 @@ +{"rustc":18276270781310494267,"features":"[\"default\"]","declared_features":"[\"avx2\", \"default\", \"neon\", \"parallel\", \"rayon\", \"simd\", \"sse2\"]","target":9669256981338149895,"profile":10220379689200424945,"path":2587853826849836325,"deps":[[720731745621185994,"criterion",false,9135737523091704129],[4809150008149002099,"openvx_core",false,12695232944250483106],[10311188578765087558,"openvx_vision",false,17472757978421105366],[11101848710733117461,"openvx_buffer",false,12173304525356094307],[13124632613270968579,"assert_approx_eq",false,872673750213144729],[13782069936663139603,"openvx_image",false,5415066650095401666]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/openvx-vision-77e9934effe120be/dep-test-integration-test-geometric_tests","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/openvx-vision-9427675ee029507d/dep-test-integration-test-morphology_tests b/target/release/.fingerprint/openvx-vision-9427675ee029507d/dep-test-integration-test-morphology_tests new file mode 100644 index 0000000..e2ddd69 Binary files /dev/null and b/target/release/.fingerprint/openvx-vision-9427675ee029507d/dep-test-integration-test-morphology_tests differ diff --git a/target/release/.fingerprint/openvx-vision-9427675ee029507d/invoked.timestamp b/target/release/.fingerprint/openvx-vision-9427675ee029507d/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/openvx-vision-9427675ee029507d/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/openvx-vision-9427675ee029507d/output-test-integration-test-morphology_tests b/target/release/.fingerprint/openvx-vision-9427675ee029507d/output-test-integration-test-morphology_tests new file mode 100644 index 0000000..f86e3ec --- /dev/null +++ b/target/release/.fingerprint/openvx-vision-9427675ee029507d/output-test-integration-test-morphology_tests @@ -0,0 +1,6 @@ +{"$message_type":"diagnostic","message":"variable does not need to be mutable","code":{"code":"unused_mut","explanation":null},"level":"warning","spans":[{"file_name":"openvx-vision/tests/morphology_tests.rs","byte_start":197,"byte_end":206,"line_start":9,"line_end":9,"column_start":9,"column_end":18,"is_primary":true,"text":[{"text":" let mut input = Image::new(5, 5, ImageFormat::Gray);","highlight_start":9,"highlight_end":18}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(unused_mut)]` (part of `#[warn(unused)]`) on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"remove this `mut`","code":null,"level":"help","spans":[{"file_name":"openvx-vision/tests/morphology_tests.rs","byte_start":197,"byte_end":201,"line_start":9,"line_end":9,"column_start":9,"column_end":13,"is_primary":true,"text":[{"text":" let mut input = Image::new(5, 5, ImageFormat::Gray);","highlight_start":9,"highlight_end":13}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: variable does not need to be mutable\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-vision/tests/morphology_tests.rs:9:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m9\u001b[0m \u001b[1m\u001b[94m|\u001b[0m let mut input = Image::new(5, 5, ImageFormat::Gray);\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m----\u001b[0m\u001b[1m\u001b[33m^^^^^\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94mhelp: remove this `mut`\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m= \u001b[0m\u001b[1mnote\u001b[0m: `#[warn(unused_mut)]` (part of `#[warn(unused)]`) on by default\n\n"} +{"$message_type":"diagnostic","message":"variable does not need to be mutable","code":{"code":"unused_mut","explanation":null},"level":"warning","spans":[{"file_name":"openvx-vision/tests/morphology_tests.rs","byte_start":752,"byte_end":761,"line_start":30,"line_end":30,"column_start":9,"column_end":18,"is_primary":true,"text":[{"text":" let mut input = Image::new(5, 5, ImageFormat::Gray);","highlight_start":9,"highlight_end":18}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"remove this `mut`","code":null,"level":"help","spans":[{"file_name":"openvx-vision/tests/morphology_tests.rs","byte_start":752,"byte_end":756,"line_start":30,"line_end":30,"column_start":9,"column_end":13,"is_primary":true,"text":[{"text":" let mut input = Image::new(5, 5, ImageFormat::Gray);","highlight_start":9,"highlight_end":13}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: variable does not need to be mutable\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-vision/tests/morphology_tests.rs:30:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m30\u001b[0m \u001b[1m\u001b[94m|\u001b[0m let mut input = Image::new(5, 5, ImageFormat::Gray);\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m----\u001b[0m\u001b[1m\u001b[33m^^^^^\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94mhelp: remove this `mut`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"variable does not need to be mutable","code":{"code":"unused_mut","explanation":null},"level":"warning","spans":[{"file_name":"openvx-vision/tests/morphology_tests.rs","byte_start":2348,"byte_end":2357,"line_start":90,"line_end":90,"column_start":9,"column_end":18,"is_primary":true,"text":[{"text":" let mut input = Image::new(7, 7, ImageFormat::Gray);","highlight_start":9,"highlight_end":18}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"remove this `mut`","code":null,"level":"help","spans":[{"file_name":"openvx-vision/tests/morphology_tests.rs","byte_start":2348,"byte_end":2352,"line_start":90,"line_end":90,"column_start":9,"column_end":13,"is_primary":true,"text":[{"text":" let mut input = Image::new(7, 7, ImageFormat::Gray);","highlight_start":9,"highlight_end":13}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: variable does not need to be mutable\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-vision/tests/morphology_tests.rs:90:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m90\u001b[0m \u001b[1m\u001b[94m|\u001b[0m let mut input = Image::new(7, 7, ImageFormat::Gray);\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m----\u001b[0m\u001b[1m\u001b[33m^^^^^\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94mhelp: remove this `mut`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"variable does not need to be mutable","code":{"code":"unused_mut","explanation":null},"level":"warning","spans":[{"file_name":"openvx-vision/tests/morphology_tests.rs","byte_start":2838,"byte_end":2847,"line_start":107,"line_end":107,"column_start":9,"column_end":18,"is_primary":true,"text":[{"text":" let mut input = Image::new(7, 7, ImageFormat::Gray);","highlight_start":9,"highlight_end":18}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"remove this `mut`","code":null,"level":"help","spans":[{"file_name":"openvx-vision/tests/morphology_tests.rs","byte_start":2838,"byte_end":2842,"line_start":107,"line_end":107,"column_start":9,"column_end":13,"is_primary":true,"text":[{"text":" let mut input = Image::new(7, 7, ImageFormat::Gray);","highlight_start":9,"highlight_end":13}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: variable does not need to be mutable\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-vision/tests/morphology_tests.rs:107:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m107\u001b[0m \u001b[1m\u001b[94m|\u001b[0m let mut input = Image::new(7, 7, ImageFormat::Gray);\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m----\u001b[0m\u001b[1m\u001b[33m^^^^^\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94mhelp: remove this `mut`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"variable does not need to be mutable","code":{"code":"unused_mut","explanation":null},"level":"warning","spans":[{"file_name":"openvx-vision/tests/morphology_tests.rs","byte_start":3421,"byte_end":3430,"line_start":129,"line_end":129,"column_start":9,"column_end":18,"is_primary":true,"text":[{"text":" let mut input = Image::new(5, 5, ImageFormat::Gray);","highlight_start":9,"highlight_end":18}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"remove this `mut`","code":null,"level":"help","spans":[{"file_name":"openvx-vision/tests/morphology_tests.rs","byte_start":3421,"byte_end":3425,"line_start":129,"line_end":129,"column_start":9,"column_end":13,"is_primary":true,"text":[{"text":" let mut input = Image::new(5, 5, ImageFormat::Gray);","highlight_start":9,"highlight_end":13}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: variable does not need to be mutable\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-vision/tests/morphology_tests.rs:129:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m129\u001b[0m \u001b[1m\u001b[94m|\u001b[0m let mut input = Image::new(5, 5, ImageFormat::Gray);\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m----\u001b[0m\u001b[1m\u001b[33m^^^^^\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94mhelp: remove this `mut`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"5 warnings emitted","code":null,"level":"warning","spans":[],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: 5 warnings emitted\u001b[0m\n\n"} diff --git a/target/release/.fingerprint/openvx-vision-9427675ee029507d/test-integration-test-morphology_tests b/target/release/.fingerprint/openvx-vision-9427675ee029507d/test-integration-test-morphology_tests new file mode 100644 index 0000000..8e2c76c --- /dev/null +++ b/target/release/.fingerprint/openvx-vision-9427675ee029507d/test-integration-test-morphology_tests @@ -0,0 +1 @@ +4c5e4fdfbefaf1af \ No newline at end of file diff --git a/target/release/.fingerprint/openvx-vision-9427675ee029507d/test-integration-test-morphology_tests.json b/target/release/.fingerprint/openvx-vision-9427675ee029507d/test-integration-test-morphology_tests.json new file mode 100644 index 0000000..d3d56df --- /dev/null +++ b/target/release/.fingerprint/openvx-vision-9427675ee029507d/test-integration-test-morphology_tests.json @@ -0,0 +1 @@ +{"rustc":18276270781310494267,"features":"[\"default\"]","declared_features":"[\"avx2\", \"default\", \"neon\", \"parallel\", \"rayon\", \"simd\", \"sse2\"]","target":1442187757334105398,"profile":10220379689200424945,"path":9621490655776295358,"deps":[[720731745621185994,"criterion",false,9135737523091704129],[4809150008149002099,"openvx_core",false,12695232944250483106],[10311188578765087558,"openvx_vision",false,17472757978421105366],[11101848710733117461,"openvx_buffer",false,12173304525356094307],[13124632613270968579,"assert_approx_eq",false,872673750213144729],[13782069936663139603,"openvx_image",false,5415066650095401666]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/openvx-vision-9427675ee029507d/dep-test-integration-test-morphology_tests","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/openvx-vision-9bf4c98018d04238/dep-test-integration-test-object_detection_tests b/target/release/.fingerprint/openvx-vision-9bf4c98018d04238/dep-test-integration-test-object_detection_tests new file mode 100644 index 0000000..b6914e9 Binary files /dev/null and b/target/release/.fingerprint/openvx-vision-9bf4c98018d04238/dep-test-integration-test-object_detection_tests differ diff --git a/target/release/.fingerprint/openvx-vision-9bf4c98018d04238/invoked.timestamp b/target/release/.fingerprint/openvx-vision-9bf4c98018d04238/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/openvx-vision-9bf4c98018d04238/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/openvx-vision-9bf4c98018d04238/output-test-integration-test-object_detection_tests b/target/release/.fingerprint/openvx-vision-9bf4c98018d04238/output-test-integration-test-object_detection_tests new file mode 100644 index 0000000..f44fc18 --- /dev/null +++ b/target/release/.fingerprint/openvx-vision-9bf4c98018d04238/output-test-integration-test-object_detection_tests @@ -0,0 +1,6 @@ +{"$message_type":"diagnostic","message":"variable does not need to be mutable","code":{"code":"unused_mut","explanation":null},"level":"warning","spans":[{"file_name":"openvx-vision/tests/object_detection_tests.rs","byte_start":212,"byte_end":221,"line_start":8,"line_end":8,"column_start":9,"column_end":18,"is_primary":true,"text":[{"text":" let mut input = Image::new(5, 5, ImageFormat::Gray);","highlight_start":9,"highlight_end":18}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(unused_mut)]` (part of `#[warn(unused)]`) on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"remove this `mut`","code":null,"level":"help","spans":[{"file_name":"openvx-vision/tests/object_detection_tests.rs","byte_start":212,"byte_end":216,"line_start":8,"line_end":8,"column_start":9,"column_end":13,"is_primary":true,"text":[{"text":" let mut input = Image::new(5, 5, ImageFormat::Gray);","highlight_start":9,"highlight_end":13}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: variable does not need to be mutable\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-vision/tests/object_detection_tests.rs:8:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m8\u001b[0m \u001b[1m\u001b[94m|\u001b[0m let mut input = Image::new(5, 5, ImageFormat::Gray);\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m----\u001b[0m\u001b[1m\u001b[33m^^^^^\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94mhelp: remove this `mut`\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m= \u001b[0m\u001b[1mnote\u001b[0m: `#[warn(unused_mut)]` (part of `#[warn(unused)]`) on by default\n\n"} +{"$message_type":"diagnostic","message":"variable does not need to be mutable","code":{"code":"unused_mut","explanation":null},"level":"warning","spans":[{"file_name":"openvx-vision/tests/object_detection_tests.rs","byte_start":870,"byte_end":879,"line_start":31,"line_end":31,"column_start":9,"column_end":18,"is_primary":true,"text":[{"text":" let mut input = Image::new(3, 3, ImageFormat::Gray);","highlight_start":9,"highlight_end":18}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"remove this `mut`","code":null,"level":"help","spans":[{"file_name":"openvx-vision/tests/object_detection_tests.rs","byte_start":870,"byte_end":874,"line_start":31,"line_end":31,"column_start":9,"column_end":13,"is_primary":true,"text":[{"text":" let mut input = Image::new(3, 3, ImageFormat::Gray);","highlight_start":9,"highlight_end":13}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: variable does not need to be mutable\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-vision/tests/object_detection_tests.rs:31:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m31\u001b[0m \u001b[1m\u001b[94m|\u001b[0m let mut input = Image::new(3, 3, ImageFormat::Gray);\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m----\u001b[0m\u001b[1m\u001b[33m^^^^^\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94mhelp: remove this `mut`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"variable does not need to be mutable","code":{"code":"unused_mut","explanation":null},"level":"warning","spans":[{"file_name":"openvx-vision/tests/object_detection_tests.rs","byte_start":1316,"byte_end":1325,"line_start":50,"line_end":50,"column_start":9,"column_end":18,"is_primary":true,"text":[{"text":" let mut input = Image::new(3, 3, ImageFormat::Gray);","highlight_start":9,"highlight_end":18}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"remove this `mut`","code":null,"level":"help","spans":[{"file_name":"openvx-vision/tests/object_detection_tests.rs","byte_start":1316,"byte_end":1320,"line_start":50,"line_end":50,"column_start":9,"column_end":13,"is_primary":true,"text":[{"text":" let mut input = Image::new(3, 3, ImageFormat::Gray);","highlight_start":9,"highlight_end":13}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: variable does not need to be mutable\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-vision/tests/object_detection_tests.rs:50:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m50\u001b[0m \u001b[1m\u001b[94m|\u001b[0m let mut input = Image::new(3, 3, ImageFormat::Gray);\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m----\u001b[0m\u001b[1m\u001b[33m^^^^^\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94mhelp: remove this `mut`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"variable does not need to be mutable","code":{"code":"unused_mut","explanation":null},"level":"warning","spans":[{"file_name":"openvx-vision/tests/object_detection_tests.rs","byte_start":1765,"byte_end":1774,"line_start":69,"line_end":69,"column_start":9,"column_end":18,"is_primary":true,"text":[{"text":" let mut input = Image::new(10, 10, ImageFormat::Gray);","highlight_start":9,"highlight_end":18}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"remove this `mut`","code":null,"level":"help","spans":[{"file_name":"openvx-vision/tests/object_detection_tests.rs","byte_start":1765,"byte_end":1769,"line_start":69,"line_end":69,"column_start":9,"column_end":13,"is_primary":true,"text":[{"text":" let mut input = Image::new(10, 10, ImageFormat::Gray);","highlight_start":9,"highlight_end":13}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: variable does not need to be mutable\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-vision/tests/object_detection_tests.rs:69:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m69\u001b[0m \u001b[1m\u001b[94m|\u001b[0m let mut input = Image::new(10, 10, ImageFormat::Gray);\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m----\u001b[0m\u001b[1m\u001b[33m^^^^^\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94mhelp: remove this `mut`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"variable does not need to be mutable","code":{"code":"unused_mut","explanation":null},"level":"warning","spans":[{"file_name":"openvx-vision/tests/object_detection_tests.rs","byte_start":2509,"byte_end":2518,"line_start":91,"line_end":91,"column_start":9,"column_end":18,"is_primary":true,"text":[{"text":" let mut input = Image::new(10, 10, ImageFormat::Gray);","highlight_start":9,"highlight_end":18}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"remove this `mut`","code":null,"level":"help","spans":[{"file_name":"openvx-vision/tests/object_detection_tests.rs","byte_start":2509,"byte_end":2513,"line_start":91,"line_end":91,"column_start":9,"column_end":13,"is_primary":true,"text":[{"text":" let mut input = Image::new(10, 10, ImageFormat::Gray);","highlight_start":9,"highlight_end":13}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: variable does not need to be mutable\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-vision/tests/object_detection_tests.rs:91:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m91\u001b[0m \u001b[1m\u001b[94m|\u001b[0m let mut input = Image::new(10, 10, ImageFormat::Gray);\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m----\u001b[0m\u001b[1m\u001b[33m^^^^^\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94mhelp: remove this `mut`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"5 warnings emitted","code":null,"level":"warning","spans":[],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: 5 warnings emitted\u001b[0m\n\n"} diff --git a/target/release/.fingerprint/openvx-vision-9bf4c98018d04238/test-integration-test-object_detection_tests b/target/release/.fingerprint/openvx-vision-9bf4c98018d04238/test-integration-test-object_detection_tests new file mode 100644 index 0000000..b926edc --- /dev/null +++ b/target/release/.fingerprint/openvx-vision-9bf4c98018d04238/test-integration-test-object_detection_tests @@ -0,0 +1 @@ +32ab1e27b280082f \ No newline at end of file diff --git a/target/release/.fingerprint/openvx-vision-9bf4c98018d04238/test-integration-test-object_detection_tests.json b/target/release/.fingerprint/openvx-vision-9bf4c98018d04238/test-integration-test-object_detection_tests.json new file mode 100644 index 0000000..671edaa --- /dev/null +++ b/target/release/.fingerprint/openvx-vision-9bf4c98018d04238/test-integration-test-object_detection_tests.json @@ -0,0 +1 @@ +{"rustc":18276270781310494267,"features":"[\"default\"]","declared_features":"[\"avx2\", \"default\", \"neon\", \"parallel\", \"rayon\", \"simd\", \"sse2\"]","target":14298756133753813875,"profile":10220379689200424945,"path":14673470914796749786,"deps":[[720731745621185994,"criterion",false,9135737523091704129],[4809150008149002099,"openvx_core",false,12695232944250483106],[10311188578765087558,"openvx_vision",false,17472757978421105366],[11101848710733117461,"openvx_buffer",false,12173304525356094307],[13124632613270968579,"assert_approx_eq",false,872673750213144729],[13782069936663139603,"openvx_image",false,5415066650095401666]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/openvx-vision-9bf4c98018d04238/dep-test-integration-test-object_detection_tests","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/openvx-vision-ae9978565aaaade0/dep-test-integration-test-filter_tests b/target/release/.fingerprint/openvx-vision-ae9978565aaaade0/dep-test-integration-test-filter_tests new file mode 100644 index 0000000..13ce108 Binary files /dev/null and b/target/release/.fingerprint/openvx-vision-ae9978565aaaade0/dep-test-integration-test-filter_tests differ diff --git a/target/release/.fingerprint/openvx-vision-ae9978565aaaade0/invoked.timestamp b/target/release/.fingerprint/openvx-vision-ae9978565aaaade0/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/openvx-vision-ae9978565aaaade0/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/openvx-vision-ae9978565aaaade0/output-test-integration-test-filter_tests b/target/release/.fingerprint/openvx-vision-ae9978565aaaade0/output-test-integration-test-filter_tests new file mode 100644 index 0000000..f868f02 --- /dev/null +++ b/target/release/.fingerprint/openvx-vision-ae9978565aaaade0/output-test-integration-test-filter_tests @@ -0,0 +1,6 @@ +{"$message_type":"diagnostic","message":"variable does not need to be mutable","code":{"code":"unused_mut","explanation":null},"level":"warning","spans":[{"file_name":"openvx-vision/tests/filter_tests.rs","byte_start":867,"byte_end":876,"line_start":28,"line_end":28,"column_start":9,"column_end":18,"is_primary":true,"text":[{"text":" let mut input = Image::new(10, 10, ImageFormat::Gray);","highlight_start":9,"highlight_end":18}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(unused_mut)]` (part of `#[warn(unused)]`) on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"remove this `mut`","code":null,"level":"help","spans":[{"file_name":"openvx-vision/tests/filter_tests.rs","byte_start":867,"byte_end":871,"line_start":28,"line_end":28,"column_start":9,"column_end":13,"is_primary":true,"text":[{"text":" let mut input = Image::new(10, 10, ImageFormat::Gray);","highlight_start":9,"highlight_end":13}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: variable does not need to be mutable\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-vision/tests/filter_tests.rs:28:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m28\u001b[0m \u001b[1m\u001b[94m|\u001b[0m let mut input = Image::new(10, 10, ImageFormat::Gray);\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m----\u001b[0m\u001b[1m\u001b[33m^^^^^\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94mhelp: remove this `mut`\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m= \u001b[0m\u001b[1mnote\u001b[0m: `#[warn(unused_mut)]` (part of `#[warn(unused)]`) on by default\n\n"} +{"$message_type":"diagnostic","message":"variable does not need to be mutable","code":{"code":"unused_mut","explanation":null},"level":"warning","spans":[{"file_name":"openvx-vision/tests/filter_tests.rs","byte_start":1547,"byte_end":1556,"line_start":52,"line_end":52,"column_start":9,"column_end":18,"is_primary":true,"text":[{"text":" let mut input = Image::new(4, 4, ImageFormat::Gray);","highlight_start":9,"highlight_end":18}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"remove this `mut`","code":null,"level":"help","spans":[{"file_name":"openvx-vision/tests/filter_tests.rs","byte_start":1547,"byte_end":1551,"line_start":52,"line_end":52,"column_start":9,"column_end":13,"is_primary":true,"text":[{"text":" let mut input = Image::new(4, 4, ImageFormat::Gray);","highlight_start":9,"highlight_end":13}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: variable does not need to be mutable\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-vision/tests/filter_tests.rs:52:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m52\u001b[0m \u001b[1m\u001b[94m|\u001b[0m let mut input = Image::new(4, 4, ImageFormat::Gray);\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m----\u001b[0m\u001b[1m\u001b[33m^^^^^\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94mhelp: remove this `mut`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"variable does not need to be mutable","code":{"code":"unused_mut","explanation":null},"level":"warning","spans":[{"file_name":"openvx-vision/tests/filter_tests.rs","byte_start":2094,"byte_end":2103,"line_start":75,"line_end":75,"column_start":9,"column_end":18,"is_primary":true,"text":[{"text":" let mut input = Image::new(5, 5, ImageFormat::Gray);","highlight_start":9,"highlight_end":18}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"remove this `mut`","code":null,"level":"help","spans":[{"file_name":"openvx-vision/tests/filter_tests.rs","byte_start":2094,"byte_end":2098,"line_start":75,"line_end":75,"column_start":9,"column_end":13,"is_primary":true,"text":[{"text":" let mut input = Image::new(5, 5, ImageFormat::Gray);","highlight_start":9,"highlight_end":13}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: variable does not need to be mutable\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-vision/tests/filter_tests.rs:75:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m75\u001b[0m \u001b[1m\u001b[94m|\u001b[0m let mut input = Image::new(5, 5, ImageFormat::Gray);\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m----\u001b[0m\u001b[1m\u001b[33m^^^^^\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94mhelp: remove this `mut`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"variable does not need to be mutable","code":{"code":"unused_mut","explanation":null},"level":"warning","spans":[{"file_name":"openvx-vision/tests/filter_tests.rs","byte_start":3383,"byte_end":3392,"line_start":122,"line_end":122,"column_start":9,"column_end":18,"is_primary":true,"text":[{"text":" let mut input = Image::new(5, 5, ImageFormat::Gray);","highlight_start":9,"highlight_end":18}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"remove this `mut`","code":null,"level":"help","spans":[{"file_name":"openvx-vision/tests/filter_tests.rs","byte_start":3383,"byte_end":3387,"line_start":122,"line_end":122,"column_start":9,"column_end":13,"is_primary":true,"text":[{"text":" let mut input = Image::new(5, 5, ImageFormat::Gray);","highlight_start":9,"highlight_end":13}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: variable does not need to be mutable\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-vision/tests/filter_tests.rs:122:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m122\u001b[0m \u001b[1m\u001b[94m|\u001b[0m let mut input = Image::new(5, 5, ImageFormat::Gray);\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m----\u001b[0m\u001b[1m\u001b[33m^^^^^\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94mhelp: remove this `mut`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"comparison is useless due to type limits","code":{"code":"unused_comparisons","explanation":null},"level":"warning","spans":[{"file_name":"openvx-vision/tests/filter_tests.rs","byte_start":2020,"byte_end":2028,"line_start":69,"line_end":69,"column_start":17,"column_end":25,"is_primary":true,"text":[{"text":" assert!(v <= 255);","highlight_start":17,"highlight_end":25}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(unused_comparisons)]` on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: comparison is useless due to type limits\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-vision/tests/filter_tests.rs:69:17\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m69\u001b[0m \u001b[1m\u001b[94m|\u001b[0m assert!(v <= 255);\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m= \u001b[0m\u001b[1mnote\u001b[0m: `#[warn(unused_comparisons)]` on by default\n\n"} +{"$message_type":"diagnostic","message":"5 warnings emitted","code":null,"level":"warning","spans":[],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: 5 warnings emitted\u001b[0m\n\n"} diff --git a/target/release/.fingerprint/openvx-vision-ae9978565aaaade0/test-integration-test-filter_tests b/target/release/.fingerprint/openvx-vision-ae9978565aaaade0/test-integration-test-filter_tests new file mode 100644 index 0000000..4752ce8 --- /dev/null +++ b/target/release/.fingerprint/openvx-vision-ae9978565aaaade0/test-integration-test-filter_tests @@ -0,0 +1 @@ +f5870c9d5af20057 \ No newline at end of file diff --git a/target/release/.fingerprint/openvx-vision-ae9978565aaaade0/test-integration-test-filter_tests.json b/target/release/.fingerprint/openvx-vision-ae9978565aaaade0/test-integration-test-filter_tests.json new file mode 100644 index 0000000..8da98e5 --- /dev/null +++ b/target/release/.fingerprint/openvx-vision-ae9978565aaaade0/test-integration-test-filter_tests.json @@ -0,0 +1 @@ +{"rustc":18276270781310494267,"features":"[\"default\"]","declared_features":"[\"avx2\", \"default\", \"neon\", \"parallel\", \"rayon\", \"simd\", \"sse2\"]","target":3717128420857145588,"profile":10220379689200424945,"path":16979190403441120345,"deps":[[720731745621185994,"criterion",false,9135737523091704129],[4809150008149002099,"openvx_core",false,12695232944250483106],[10311188578765087558,"openvx_vision",false,17472757978421105366],[11101848710733117461,"openvx_buffer",false,12173304525356094307],[13124632613270968579,"assert_approx_eq",false,872673750213144729],[13782069936663139603,"openvx_image",false,5415066650095401666]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/openvx-vision-ae9978565aaaade0/dep-test-integration-test-filter_tests","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/openvx-vision-bf01e5aa2e4ef8e3/dep-test-integration-test-gradient_tests b/target/release/.fingerprint/openvx-vision-bf01e5aa2e4ef8e3/dep-test-integration-test-gradient_tests new file mode 100644 index 0000000..18730cb Binary files /dev/null and b/target/release/.fingerprint/openvx-vision-bf01e5aa2e4ef8e3/dep-test-integration-test-gradient_tests differ diff --git a/target/release/.fingerprint/openvx-vision-bf01e5aa2e4ef8e3/invoked.timestamp b/target/release/.fingerprint/openvx-vision-bf01e5aa2e4ef8e3/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/openvx-vision-bf01e5aa2e4ef8e3/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/openvx-vision-bf01e5aa2e4ef8e3/output-test-integration-test-gradient_tests b/target/release/.fingerprint/openvx-vision-bf01e5aa2e4ef8e3/output-test-integration-test-gradient_tests new file mode 100644 index 0000000..965dcc0 --- /dev/null +++ b/target/release/.fingerprint/openvx-vision-bf01e5aa2e4ef8e3/output-test-integration-test-gradient_tests @@ -0,0 +1,3 @@ +{"$message_type":"diagnostic","message":"variable does not need to be mutable","code":{"code":"unused_mut","explanation":null},"level":"warning","spans":[{"file_name":"openvx-vision/tests/gradient_tests.rs","byte_start":197,"byte_end":206,"line_start":9,"line_end":9,"column_start":9,"column_end":18,"is_primary":true,"text":[{"text":" let mut input = Image::new(5, 5, ImageFormat::Gray);","highlight_start":9,"highlight_end":18}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(unused_mut)]` (part of `#[warn(unused)]`) on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"remove this `mut`","code":null,"level":"help","spans":[{"file_name":"openvx-vision/tests/gradient_tests.rs","byte_start":197,"byte_end":201,"line_start":9,"line_end":9,"column_start":9,"column_end":13,"is_primary":true,"text":[{"text":" let mut input = Image::new(5, 5, ImageFormat::Gray);","highlight_start":9,"highlight_end":13}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: variable does not need to be mutable\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-vision/tests/gradient_tests.rs:9:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m9\u001b[0m \u001b[1m\u001b[94m|\u001b[0m let mut input = Image::new(5, 5, ImageFormat::Gray);\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m----\u001b[0m\u001b[1m\u001b[33m^^^^^\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94mhelp: remove this `mut`\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m= \u001b[0m\u001b[1mnote\u001b[0m: `#[warn(unused_mut)]` (part of `#[warn(unused)]`) on by default\n\n"} +{"$message_type":"diagnostic","message":"variable does not need to be mutable","code":{"code":"unused_mut","explanation":null},"level":"warning","spans":[{"file_name":"openvx-vision/tests/gradient_tests.rs","byte_start":914,"byte_end":923,"line_start":33,"line_end":33,"column_start":9,"column_end":18,"is_primary":true,"text":[{"text":" let mut input = Image::new(5, 5, ImageFormat::Gray);","highlight_start":9,"highlight_end":18}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"remove this `mut`","code":null,"level":"help","spans":[{"file_name":"openvx-vision/tests/gradient_tests.rs","byte_start":914,"byte_end":918,"line_start":33,"line_end":33,"column_start":9,"column_end":13,"is_primary":true,"text":[{"text":" let mut input = Image::new(5, 5, ImageFormat::Gray);","highlight_start":9,"highlight_end":13}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: variable does not need to be mutable\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-vision/tests/gradient_tests.rs:33:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m33\u001b[0m \u001b[1m\u001b[94m|\u001b[0m let mut input = Image::new(5, 5, ImageFormat::Gray);\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m----\u001b[0m\u001b[1m\u001b[33m^^^^^\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94mhelp: remove this `mut`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"2 warnings emitted","code":null,"level":"warning","spans":[],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: 2 warnings emitted\u001b[0m\n\n"} diff --git a/target/release/.fingerprint/openvx-vision-bf01e5aa2e4ef8e3/test-integration-test-gradient_tests b/target/release/.fingerprint/openvx-vision-bf01e5aa2e4ef8e3/test-integration-test-gradient_tests new file mode 100644 index 0000000..d37474b --- /dev/null +++ b/target/release/.fingerprint/openvx-vision-bf01e5aa2e4ef8e3/test-integration-test-gradient_tests @@ -0,0 +1 @@ +59f687bc0dde55ec \ No newline at end of file diff --git a/target/release/.fingerprint/openvx-vision-bf01e5aa2e4ef8e3/test-integration-test-gradient_tests.json b/target/release/.fingerprint/openvx-vision-bf01e5aa2e4ef8e3/test-integration-test-gradient_tests.json new file mode 100644 index 0000000..7bdc951 --- /dev/null +++ b/target/release/.fingerprint/openvx-vision-bf01e5aa2e4ef8e3/test-integration-test-gradient_tests.json @@ -0,0 +1 @@ +{"rustc":18276270781310494267,"features":"[\"default\"]","declared_features":"[\"avx2\", \"default\", \"neon\", \"parallel\", \"rayon\", \"simd\", \"sse2\"]","target":9619589553703087419,"profile":10220379689200424945,"path":7011651884556774555,"deps":[[720731745621185994,"criterion",false,9135737523091704129],[4809150008149002099,"openvx_core",false,12695232944250483106],[10311188578765087558,"openvx_vision",false,17472757978421105366],[11101848710733117461,"openvx_buffer",false,12173304525356094307],[13124632613270968579,"assert_approx_eq",false,872673750213144729],[13782069936663139603,"openvx_image",false,5415066650095401666]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/openvx-vision-bf01e5aa2e4ef8e3/dep-test-integration-test-gradient_tests","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/openvx-vision-e2c72222a53173f9/dep-test-integration-test-arithmetic_tests b/target/release/.fingerprint/openvx-vision-e2c72222a53173f9/dep-test-integration-test-arithmetic_tests new file mode 100644 index 0000000..6cfe80f Binary files /dev/null and b/target/release/.fingerprint/openvx-vision-e2c72222a53173f9/dep-test-integration-test-arithmetic_tests differ diff --git a/target/release/.fingerprint/openvx-vision-e2c72222a53173f9/invoked.timestamp b/target/release/.fingerprint/openvx-vision-e2c72222a53173f9/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/openvx-vision-e2c72222a53173f9/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/openvx-vision-e2c72222a53173f9/output-test-integration-test-arithmetic_tests b/target/release/.fingerprint/openvx-vision-e2c72222a53173f9/output-test-integration-test-arithmetic_tests new file mode 100644 index 0000000..f06ee6b --- /dev/null +++ b/target/release/.fingerprint/openvx-vision-e2c72222a53173f9/output-test-integration-test-arithmetic_tests @@ -0,0 +1,2 @@ +{"$message_type":"diagnostic","message":"unused import: `create_uniform_image`","code":{"code":"unused_imports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-vision/tests/arithmetic_tests.rs","byte_start":71,"byte_end":91,"line_start":3,"line_end":3,"column_start":40,"column_end":60,"is_primary":true,"text":[{"text":"use openvx_image::{Image, ImageFormat, create_uniform_image};","highlight_start":40,"highlight_end":60}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(unused_imports)]` (part of `#[warn(unused)]`) on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"remove the unused import","code":null,"level":"help","spans":[{"file_name":"openvx-vision/tests/arithmetic_tests.rs","byte_start":69,"byte_end":91,"line_start":3,"line_end":3,"column_start":38,"column_end":60,"is_primary":true,"text":[{"text":"use openvx_image::{Image, ImageFormat, create_uniform_image};","highlight_start":38,"highlight_end":60}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused import: `create_uniform_image`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-vision/tests/arithmetic_tests.rs:3:40\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m3\u001b[0m \u001b[1m\u001b[94m|\u001b[0m use openvx_image::{Image, ImageFormat, create_uniform_image};\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^^^\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m= \u001b[0m\u001b[1mnote\u001b[0m: `#[warn(unused_imports)]` (part of `#[warn(unused)]`) on by default\n\n"} +{"$message_type":"diagnostic","message":"1 warning emitted","code":null,"level":"warning","spans":[],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: 1 warning emitted\u001b[0m\n\n"} diff --git a/target/release/.fingerprint/openvx-vision-e2c72222a53173f9/test-integration-test-arithmetic_tests b/target/release/.fingerprint/openvx-vision-e2c72222a53173f9/test-integration-test-arithmetic_tests new file mode 100644 index 0000000..142d082 --- /dev/null +++ b/target/release/.fingerprint/openvx-vision-e2c72222a53173f9/test-integration-test-arithmetic_tests @@ -0,0 +1 @@ +1a222f85bc415f56 \ No newline at end of file diff --git a/target/release/.fingerprint/openvx-vision-e2c72222a53173f9/test-integration-test-arithmetic_tests.json b/target/release/.fingerprint/openvx-vision-e2c72222a53173f9/test-integration-test-arithmetic_tests.json new file mode 100644 index 0000000..0aa086b --- /dev/null +++ b/target/release/.fingerprint/openvx-vision-e2c72222a53173f9/test-integration-test-arithmetic_tests.json @@ -0,0 +1 @@ +{"rustc":18276270781310494267,"features":"[\"default\"]","declared_features":"[\"avx2\", \"default\", \"neon\", \"parallel\", \"rayon\", \"simd\", \"sse2\"]","target":12287320386980707086,"profile":10220379689200424945,"path":14252495670719619711,"deps":[[720731745621185994,"criterion",false,9135737523091704129],[4809150008149002099,"openvx_core",false,12695232944250483106],[10311188578765087558,"openvx_vision",false,17472757978421105366],[11101848710733117461,"openvx_buffer",false,12173304525356094307],[13124632613270968579,"assert_approx_eq",false,872673750213144729],[13782069936663139603,"openvx_image",false,5415066650095401666]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/openvx-vision-e2c72222a53173f9/dep-test-integration-test-arithmetic_tests","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/openvx-vision-e97f8a1bfacfeb1f/dep-test-integration-test-statistics_tests b/target/release/.fingerprint/openvx-vision-e97f8a1bfacfeb1f/dep-test-integration-test-statistics_tests new file mode 100644 index 0000000..8e892f9 Binary files /dev/null and b/target/release/.fingerprint/openvx-vision-e97f8a1bfacfeb1f/dep-test-integration-test-statistics_tests differ diff --git a/target/release/.fingerprint/openvx-vision-e97f8a1bfacfeb1f/invoked.timestamp b/target/release/.fingerprint/openvx-vision-e97f8a1bfacfeb1f/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/openvx-vision-e97f8a1bfacfeb1f/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/openvx-vision-e97f8a1bfacfeb1f/output-test-integration-test-statistics_tests b/target/release/.fingerprint/openvx-vision-e97f8a1bfacfeb1f/output-test-integration-test-statistics_tests new file mode 100644 index 0000000..c5d1b35 --- /dev/null +++ b/target/release/.fingerprint/openvx-vision-e97f8a1bfacfeb1f/output-test-integration-test-statistics_tests @@ -0,0 +1,9 @@ +{"$message_type":"diagnostic","message":"variable does not need to be mutable","code":{"code":"unused_mut","explanation":null},"level":"warning","spans":[{"file_name":"openvx-vision/tests/statistics_tests.rs","byte_start":228,"byte_end":237,"line_start":8,"line_end":8,"column_start":9,"column_end":18,"is_primary":true,"text":[{"text":" let mut input = Image::new(5, 5, ImageFormat::Gray);","highlight_start":9,"highlight_end":18}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(unused_mut)]` (part of `#[warn(unused)]`) on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"remove this `mut`","code":null,"level":"help","spans":[{"file_name":"openvx-vision/tests/statistics_tests.rs","byte_start":228,"byte_end":232,"line_start":8,"line_end":8,"column_start":9,"column_end":13,"is_primary":true,"text":[{"text":" let mut input = Image::new(5, 5, ImageFormat::Gray);","highlight_start":9,"highlight_end":13}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: variable does not need to be mutable\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-vision/tests/statistics_tests.rs:8:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m8\u001b[0m \u001b[1m\u001b[94m|\u001b[0m let mut input = Image::new(5, 5, ImageFormat::Gray);\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m----\u001b[0m\u001b[1m\u001b[33m^^^^^\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94mhelp: remove this `mut`\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m= \u001b[0m\u001b[1mnote\u001b[0m: `#[warn(unused_mut)]` (part of `#[warn(unused)]`) on by default\n\n"} +{"$message_type":"diagnostic","message":"variable does not need to be mutable","code":{"code":"unused_mut","explanation":null},"level":"warning","spans":[{"file_name":"openvx-vision/tests/statistics_tests.rs","byte_start":817,"byte_end":826,"line_start":29,"line_end":29,"column_start":9,"column_end":18,"is_primary":true,"text":[{"text":" let mut input = Image::new(3, 3, ImageFormat::Gray);","highlight_start":9,"highlight_end":18}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"remove this `mut`","code":null,"level":"help","spans":[{"file_name":"openvx-vision/tests/statistics_tests.rs","byte_start":817,"byte_end":821,"line_start":29,"line_end":29,"column_start":9,"column_end":13,"is_primary":true,"text":[{"text":" let mut input = Image::new(3, 3, ImageFormat::Gray);","highlight_start":9,"highlight_end":13}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: variable does not need to be mutable\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-vision/tests/statistics_tests.rs:29:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m29\u001b[0m \u001b[1m\u001b[94m|\u001b[0m let mut input = Image::new(3, 3, ImageFormat::Gray);\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m----\u001b[0m\u001b[1m\u001b[33m^^^^^\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94mhelp: remove this `mut`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"variable does not need to be mutable","code":{"code":"unused_mut","explanation":null},"level":"warning","spans":[{"file_name":"openvx-vision/tests/statistics_tests.rs","byte_start":1188,"byte_end":1197,"line_start":45,"line_end":45,"column_start":9,"column_end":18,"is_primary":true,"text":[{"text":" let mut input = Image::new(2, 2, ImageFormat::Gray);","highlight_start":9,"highlight_end":18}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"remove this `mut`","code":null,"level":"help","spans":[{"file_name":"openvx-vision/tests/statistics_tests.rs","byte_start":1188,"byte_end":1192,"line_start":45,"line_end":45,"column_start":9,"column_end":13,"is_primary":true,"text":[{"text":" let mut input = Image::new(2, 2, ImageFormat::Gray);","highlight_start":9,"highlight_end":13}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: variable does not need to be mutable\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-vision/tests/statistics_tests.rs:45:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m45\u001b[0m \u001b[1m\u001b[94m|\u001b[0m let mut input = Image::new(2, 2, ImageFormat::Gray);\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m----\u001b[0m\u001b[1m\u001b[33m^^^^^\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94mhelp: remove this `mut`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"variable does not need to be mutable","code":{"code":"unused_mut","explanation":null},"level":"warning","spans":[{"file_name":"openvx-vision/tests/statistics_tests.rs","byte_start":1625,"byte_end":1634,"line_start":63,"line_end":63,"column_start":9,"column_end":18,"is_primary":true,"text":[{"text":" let mut input = Image::new(4, 4, ImageFormat::Gray);","highlight_start":9,"highlight_end":18}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"remove this `mut`","code":null,"level":"help","spans":[{"file_name":"openvx-vision/tests/statistics_tests.rs","byte_start":1625,"byte_end":1629,"line_start":63,"line_end":63,"column_start":9,"column_end":13,"is_primary":true,"text":[{"text":" let mut input = Image::new(4, 4, ImageFormat::Gray);","highlight_start":9,"highlight_end":13}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: variable does not need to be mutable\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-vision/tests/statistics_tests.rs:63:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m63\u001b[0m \u001b[1m\u001b[94m|\u001b[0m let mut input = Image::new(4, 4, ImageFormat::Gray);\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m----\u001b[0m\u001b[1m\u001b[33m^^^^^\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94mhelp: remove this `mut`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"variable does not need to be mutable","code":{"code":"unused_mut","explanation":null},"level":"warning","spans":[{"file_name":"openvx-vision/tests/statistics_tests.rs","byte_start":1980,"byte_end":1989,"line_start":79,"line_end":79,"column_start":9,"column_end":18,"is_primary":true,"text":[{"text":" let mut input = Image::new(2, 2, ImageFormat::Gray);","highlight_start":9,"highlight_end":18}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"remove this `mut`","code":null,"level":"help","spans":[{"file_name":"openvx-vision/tests/statistics_tests.rs","byte_start":1980,"byte_end":1984,"line_start":79,"line_end":79,"column_start":9,"column_end":13,"is_primary":true,"text":[{"text":" let mut input = Image::new(2, 2, ImageFormat::Gray);","highlight_start":9,"highlight_end":13}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: variable does not need to be mutable\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-vision/tests/statistics_tests.rs:79:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m79\u001b[0m \u001b[1m\u001b[94m|\u001b[0m let mut input = Image::new(2, 2, ImageFormat::Gray);\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m----\u001b[0m\u001b[1m\u001b[33m^^^^^\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94mhelp: remove this `mut`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"variable does not need to be mutable","code":{"code":"unused_mut","explanation":null},"level":"warning","spans":[{"file_name":"openvx-vision/tests/statistics_tests.rs","byte_start":2471,"byte_end":2480,"line_start":100,"line_end":100,"column_start":9,"column_end":18,"is_primary":true,"text":[{"text":" let mut input = Image::new(10, 10, ImageFormat::Gray);","highlight_start":9,"highlight_end":18}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"remove this `mut`","code":null,"level":"help","spans":[{"file_name":"openvx-vision/tests/statistics_tests.rs","byte_start":2471,"byte_end":2475,"line_start":100,"line_end":100,"column_start":9,"column_end":13,"is_primary":true,"text":[{"text":" let mut input = Image::new(10, 10, ImageFormat::Gray);","highlight_start":9,"highlight_end":13}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: variable does not need to be mutable\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-vision/tests/statistics_tests.rs:100:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m100\u001b[0m \u001b[1m\u001b[94m|\u001b[0m let mut input = Image::new(10, 10, ImageFormat::Gray);\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m----\u001b[0m\u001b[1m\u001b[33m^^^^^\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94mhelp: remove this `mut`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"variable does not need to be mutable","code":{"code":"unused_mut","explanation":null},"level":"warning","spans":[{"file_name":"openvx-vision/tests/statistics_tests.rs","byte_start":2811,"byte_end":2820,"line_start":115,"line_end":115,"column_start":9,"column_end":18,"is_primary":true,"text":[{"text":" let mut input = Image::new(4, 4, ImageFormat::Gray);","highlight_start":9,"highlight_end":18}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"remove this `mut`","code":null,"level":"help","spans":[{"file_name":"openvx-vision/tests/statistics_tests.rs","byte_start":2811,"byte_end":2815,"line_start":115,"line_end":115,"column_start":9,"column_end":13,"is_primary":true,"text":[{"text":" let mut input = Image::new(4, 4, ImageFormat::Gray);","highlight_start":9,"highlight_end":13}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: variable does not need to be mutable\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-vision/tests/statistics_tests.rs:115:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m115\u001b[0m \u001b[1m\u001b[94m|\u001b[0m let mut input = Image::new(4, 4, ImageFormat::Gray);\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m----\u001b[0m\u001b[1m\u001b[33m^^^^^\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94mhelp: remove this `mut`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"comparison is useless due to type limits","code":{"code":"unused_comparisons","explanation":null},"level":"warning","spans":[{"file_name":"openvx-vision/tests/statistics_tests.rs","byte_start":3347,"byte_end":3365,"line_start":131,"line_end":131,"column_start":17,"column_end":35,"is_primary":true,"text":[{"text":" assert!(out_data[i] <= 255);","highlight_start":17,"highlight_end":35}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(unused_comparisons)]` on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: comparison is useless due to type limits\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-vision/tests/statistics_tests.rs:131:17\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m131\u001b[0m \u001b[1m\u001b[94m|\u001b[0m assert!(out_data[i] <= 255);\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m= \u001b[0m\u001b[1mnote\u001b[0m: `#[warn(unused_comparisons)]` on by default\n\n"} +{"$message_type":"diagnostic","message":"8 warnings emitted","code":null,"level":"warning","spans":[],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: 8 warnings emitted\u001b[0m\n\n"} diff --git a/target/release/.fingerprint/openvx-vision-e97f8a1bfacfeb1f/test-integration-test-statistics_tests b/target/release/.fingerprint/openvx-vision-e97f8a1bfacfeb1f/test-integration-test-statistics_tests new file mode 100644 index 0000000..9c22f7f --- /dev/null +++ b/target/release/.fingerprint/openvx-vision-e97f8a1bfacfeb1f/test-integration-test-statistics_tests @@ -0,0 +1 @@ +237dcc4d9131f759 \ No newline at end of file diff --git a/target/release/.fingerprint/openvx-vision-e97f8a1bfacfeb1f/test-integration-test-statistics_tests.json b/target/release/.fingerprint/openvx-vision-e97f8a1bfacfeb1f/test-integration-test-statistics_tests.json new file mode 100644 index 0000000..2da26fb --- /dev/null +++ b/target/release/.fingerprint/openvx-vision-e97f8a1bfacfeb1f/test-integration-test-statistics_tests.json @@ -0,0 +1 @@ +{"rustc":18276270781310494267,"features":"[\"default\"]","declared_features":"[\"avx2\", \"default\", \"neon\", \"parallel\", \"rayon\", \"simd\", \"sse2\"]","target":4238139518076263870,"profile":10220379689200424945,"path":10620358901063592533,"deps":[[720731745621185994,"criterion",false,9135737523091704129],[4809150008149002099,"openvx_core",false,12695232944250483106],[10311188578765087558,"openvx_vision",false,17472757978421105366],[11101848710733117461,"openvx_buffer",false,12173304525356094307],[13124632613270968579,"assert_approx_eq",false,872673750213144729],[13782069936663139603,"openvx_image",false,5415066650095401666]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/openvx-vision-e97f8a1bfacfeb1f/dep-test-integration-test-statistics_tests","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/openvx-vision-ebccfbaa70cdbdf5/dep-test-integration-test-feature_tests b/target/release/.fingerprint/openvx-vision-ebccfbaa70cdbdf5/dep-test-integration-test-feature_tests new file mode 100644 index 0000000..82624ff Binary files /dev/null and b/target/release/.fingerprint/openvx-vision-ebccfbaa70cdbdf5/dep-test-integration-test-feature_tests differ diff --git a/target/release/.fingerprint/openvx-vision-ebccfbaa70cdbdf5/invoked.timestamp b/target/release/.fingerprint/openvx-vision-ebccfbaa70cdbdf5/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/openvx-vision-ebccfbaa70cdbdf5/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/openvx-vision-ebccfbaa70cdbdf5/output-test-integration-test-feature_tests b/target/release/.fingerprint/openvx-vision-ebccfbaa70cdbdf5/output-test-integration-test-feature_tests new file mode 100644 index 0000000..9734526 --- /dev/null +++ b/target/release/.fingerprint/openvx-vision-ebccfbaa70cdbdf5/output-test-integration-test-feature_tests @@ -0,0 +1,6 @@ +{"$message_type":"diagnostic","message":"variable does not need to be mutable","code":{"code":"unused_mut","explanation":null},"level":"warning","spans":[{"file_name":"openvx-vision/tests/feature_tests.rs","byte_start":199,"byte_end":208,"line_start":9,"line_end":9,"column_start":9,"column_end":18,"is_primary":true,"text":[{"text":" let mut input = Image::new(9, 9, ImageFormat::Gray);","highlight_start":9,"highlight_end":18}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(unused_mut)]` (part of `#[warn(unused)]`) on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"remove this `mut`","code":null,"level":"help","spans":[{"file_name":"openvx-vision/tests/feature_tests.rs","byte_start":199,"byte_end":203,"line_start":9,"line_end":9,"column_start":9,"column_end":13,"is_primary":true,"text":[{"text":" let mut input = Image::new(9, 9, ImageFormat::Gray);","highlight_start":9,"highlight_end":13}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: variable does not need to be mutable\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-vision/tests/feature_tests.rs:9:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m9\u001b[0m \u001b[1m\u001b[94m|\u001b[0m let mut input = Image::new(9, 9, ImageFormat::Gray);\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m----\u001b[0m\u001b[1m\u001b[33m^^^^^\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94mhelp: remove this `mut`\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m= \u001b[0m\u001b[1mnote\u001b[0m: `#[warn(unused_mut)]` (part of `#[warn(unused)]`) on by default\n\n"} +{"$message_type":"diagnostic","message":"variable does not need to be mutable","code":{"code":"unused_mut","explanation":null},"level":"warning","spans":[{"file_name":"openvx-vision/tests/feature_tests.rs","byte_start":1228,"byte_end":1237,"line_start":46,"line_end":46,"column_start":9,"column_end":18,"is_primary":true,"text":[{"text":" let mut input = Image::new(9, 9, ImageFormat::Gray);","highlight_start":9,"highlight_end":18}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"remove this `mut`","code":null,"level":"help","spans":[{"file_name":"openvx-vision/tests/feature_tests.rs","byte_start":1228,"byte_end":1232,"line_start":46,"line_end":46,"column_start":9,"column_end":13,"is_primary":true,"text":[{"text":" let mut input = Image::new(9, 9, ImageFormat::Gray);","highlight_start":9,"highlight_end":13}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: variable does not need to be mutable\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-vision/tests/feature_tests.rs:46:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m46\u001b[0m \u001b[1m\u001b[94m|\u001b[0m let mut input = Image::new(9, 9, ImageFormat::Gray);\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m----\u001b[0m\u001b[1m\u001b[33m^^^^^\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94mhelp: remove this `mut`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `corners`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-vision/tests/feature_tests.rs","byte_start":1498,"byte_end":1505,"line_start":58,"line_end":58,"column_start":9,"column_end":16,"is_primary":true,"text":[{"text":" let corners = fast9(&input, 30).unwrap();","highlight_start":9,"highlight_end":16}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(unused_variables)]` (part of `#[warn(unused)]`) on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-vision/tests/feature_tests.rs","byte_start":1498,"byte_end":1505,"line_start":58,"line_end":58,"column_start":9,"column_end":16,"is_primary":true,"text":[{"text":" let corners = fast9(&input, 30).unwrap();","highlight_start":9,"highlight_end":16}],"label":null,"suggested_replacement":"_corners","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `corners`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-vision/tests/feature_tests.rs:58:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m58\u001b[0m \u001b[1m\u001b[94m|\u001b[0m let corners = fast9(&input, 30).unwrap();\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_corners`\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m= \u001b[0m\u001b[1mnote\u001b[0m: `#[warn(unused_variables)]` (part of `#[warn(unused)]`) on by default\n\n"} +{"$message_type":"diagnostic","message":"variable does not need to be mutable","code":{"code":"unused_mut","explanation":null},"level":"warning","spans":[{"file_name":"openvx-vision/tests/feature_tests.rs","byte_start":2150,"byte_end":2159,"line_start":79,"line_end":79,"column_start":9,"column_end":18,"is_primary":true,"text":[{"text":" let mut input = Image::new(15, 15, ImageFormat::Gray);","highlight_start":9,"highlight_end":18}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"remove this `mut`","code":null,"level":"help","spans":[{"file_name":"openvx-vision/tests/feature_tests.rs","byte_start":2150,"byte_end":2154,"line_start":79,"line_end":79,"column_start":9,"column_end":13,"is_primary":true,"text":[{"text":" let mut input = Image::new(15, 15, ImageFormat::Gray);","highlight_start":9,"highlight_end":13}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: variable does not need to be mutable\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-vision/tests/feature_tests.rs:79:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m79\u001b[0m \u001b[1m\u001b[94m|\u001b[0m let mut input = Image::new(15, 15, ImageFormat::Gray);\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m----\u001b[0m\u001b[1m\u001b[33m^^^^^\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94mhelp: remove this `mut`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused variable: `corners`","code":{"code":"unused_variables","explanation":null},"level":"warning","spans":[{"file_name":"openvx-vision/tests/feature_tests.rs","byte_start":2807,"byte_end":2814,"line_start":99,"line_end":99,"column_start":9,"column_end":16,"is_primary":true,"text":[{"text":" let corners = fast9(&input, 30).unwrap(); // Use FAST-9 first to verify it would find something","highlight_start":9,"highlight_end":16}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"if this is intentional, prefix it with an underscore","code":null,"level":"help","spans":[{"file_name":"openvx-vision/tests/feature_tests.rs","byte_start":2807,"byte_end":2814,"line_start":99,"line_end":99,"column_start":9,"column_end":16,"is_primary":true,"text":[{"text":" let corners = fast9(&input, 30).unwrap(); // Use FAST-9 first to verify it would find something","highlight_start":9,"highlight_end":16}],"label":null,"suggested_replacement":"_corners","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused variable: `corners`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-vision/tests/feature_tests.rs:99:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m99\u001b[0m \u001b[1m\u001b[94m|\u001b[0m let corners = fast9(&input, 30).unwrap(); // Use FAST-9 first to verify it would find something\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^\u001b[0m \u001b[1m\u001b[33mhelp: if this is intentional, prefix it with an underscore: `_corners`\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"5 warnings emitted","code":null,"level":"warning","spans":[],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: 5 warnings emitted\u001b[0m\n\n"} diff --git a/target/release/.fingerprint/openvx-vision-ebccfbaa70cdbdf5/test-integration-test-feature_tests b/target/release/.fingerprint/openvx-vision-ebccfbaa70cdbdf5/test-integration-test-feature_tests new file mode 100644 index 0000000..a27dc31 --- /dev/null +++ b/target/release/.fingerprint/openvx-vision-ebccfbaa70cdbdf5/test-integration-test-feature_tests @@ -0,0 +1 @@ +1230c9d2dc1d9cb2 \ No newline at end of file diff --git a/target/release/.fingerprint/openvx-vision-ebccfbaa70cdbdf5/test-integration-test-feature_tests.json b/target/release/.fingerprint/openvx-vision-ebccfbaa70cdbdf5/test-integration-test-feature_tests.json new file mode 100644 index 0000000..7b3808e --- /dev/null +++ b/target/release/.fingerprint/openvx-vision-ebccfbaa70cdbdf5/test-integration-test-feature_tests.json @@ -0,0 +1 @@ +{"rustc":18276270781310494267,"features":"[\"default\"]","declared_features":"[\"avx2\", \"default\", \"neon\", \"parallel\", \"rayon\", \"simd\", \"sse2\"]","target":2047221391082004873,"profile":10220379689200424945,"path":5090409527875517450,"deps":[[720731745621185994,"criterion",false,9135737523091704129],[4809150008149002099,"openvx_core",false,12695232944250483106],[10311188578765087558,"openvx_vision",false,17472757978421105366],[11101848710733117461,"openvx_buffer",false,12173304525356094307],[13124632613270968579,"assert_approx_eq",false,872673750213144729],[13782069936663139603,"openvx_image",false,5415066650095401666]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/openvx-vision-ebccfbaa70cdbdf5/dep-test-integration-test-feature_tests","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/openvx-vision-fa003c9243f70d93/dep-lib-openvx_vision b/target/release/.fingerprint/openvx-vision-fa003c9243f70d93/dep-lib-openvx_vision new file mode 100644 index 0000000..b9a2101 Binary files /dev/null and b/target/release/.fingerprint/openvx-vision-fa003c9243f70d93/dep-lib-openvx_vision differ diff --git a/target/release/.fingerprint/openvx-vision-fa003c9243f70d93/invoked.timestamp b/target/release/.fingerprint/openvx-vision-fa003c9243f70d93/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/openvx-vision-fa003c9243f70d93/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/openvx-vision-fa003c9243f70d93/lib-openvx_vision b/target/release/.fingerprint/openvx-vision-fa003c9243f70d93/lib-openvx_vision new file mode 100644 index 0000000..6ba3a7b --- /dev/null +++ b/target/release/.fingerprint/openvx-vision-fa003c9243f70d93/lib-openvx_vision @@ -0,0 +1 @@ +59758934fd34ba17 \ No newline at end of file diff --git a/target/release/.fingerprint/openvx-vision-fa003c9243f70d93/lib-openvx_vision.json b/target/release/.fingerprint/openvx-vision-fa003c9243f70d93/lib-openvx_vision.json new file mode 100644 index 0000000..6c9e72c --- /dev/null +++ b/target/release/.fingerprint/openvx-vision-fa003c9243f70d93/lib-openvx_vision.json @@ -0,0 +1 @@ +{"rustc":18276270781310494267,"features":"[\"default\"]","declared_features":"[\"avx2\", \"default\", \"neon\", \"parallel\", \"rayon\", \"simd\", \"sse2\"]","target":148198738751462385,"profile":2040997289075261528,"path":12215504641280893655,"deps":[[4809150008149002099,"openvx_core",false,9470229054341921098],[11101848710733117461,"openvx_buffer",false,13846984283981460280],[13782069936663139603,"openvx_image",false,6618711638238676580]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/openvx-vision-fa003c9243f70d93/dep-lib-openvx_vision","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/openvx-vision-fa003c9243f70d93/output-lib-openvx_vision b/target/release/.fingerprint/openvx-vision-fa003c9243f70d93/output-lib-openvx_vision new file mode 100644 index 0000000..b0c3b66 --- /dev/null +++ b/target/release/.fingerprint/openvx-vision-fa003c9243f70d93/output-lib-openvx_vision @@ -0,0 +1,15 @@ +{"$message_type":"diagnostic","message":"unused import: `KernelTrait`","code":{"code":"unused_imports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-vision/src/lib.rs","byte_start":415,"byte_end":426,"line_start":13,"line_end":13,"column_start":5,"column_end":16,"is_primary":true,"text":[{"text":" KernelTrait,","highlight_start":5,"highlight_end":16}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(unused_imports)]` (part of `#[warn(unused)]`) on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"remove the unused import","code":null,"level":"help","spans":[{"file_name":"openvx-vision/src/lib.rs","byte_start":409,"byte_end":426,"line_start":12,"line_end":13,"column_start":13,"column_end":16,"is_primary":true,"text":[{"text":" VxKernel,","highlight_start":13,"highlight_end":14},{"text":" KernelTrait,","highlight_start":1,"highlight_end":16}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused import: `KernelTrait`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-vision/src/lib.rs:13:5\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m13\u001b[0m \u001b[1m\u001b[94m|\u001b[0m KernelTrait,\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m= \u001b[0m\u001b[1mnote\u001b[0m: `#[warn(unused_imports)]` (part of `#[warn(unused)]`) on by default\n\n"} +{"$message_type":"diagnostic","message":"unused imports: `BorderMode` and `get_pixel_bordered`","code":{"code":"unused_imports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-vision/src/object_detection.rs","byte_start":153,"byte_end":171,"line_start":5,"line_end":5,"column_start":20,"column_end":38,"is_primary":true,"text":[{"text":"use crate::utils::{get_pixel_bordered, BorderMode};","highlight_start":20,"highlight_end":38}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null},{"file_name":"openvx-vision/src/object_detection.rs","byte_start":173,"byte_end":183,"line_start":5,"line_end":5,"column_start":40,"column_end":50,"is_primary":true,"text":[{"text":"use crate::utils::{get_pixel_bordered, BorderMode};","highlight_start":40,"highlight_end":50}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"remove the whole `use` item","code":null,"level":"help","spans":[{"file_name":"openvx-vision/src/object_detection.rs","byte_start":134,"byte_end":186,"line_start":5,"line_end":6,"column_start":1,"column_end":1,"is_primary":true,"text":[{"text":"use crate::utils::{get_pixel_bordered, BorderMode};","highlight_start":1,"highlight_end":52},{"text":"","highlight_start":1,"highlight_end":1}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused imports: `BorderMode` and `get_pixel_bordered`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-vision/src/object_detection.rs:5:20\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m5\u001b[0m \u001b[1m\u001b[94m|\u001b[0m use crate::utils::{get_pixel_bordered, BorderMode};\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^^^^^^^^^\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"unused import: `super::*`","code":{"code":"unused_imports","explanation":null},"level":"warning","spans":[{"file_name":"openvx-vision/src/simd_utils.rs","byte_start":2049,"byte_end":2057,"line_start":70,"line_end":70,"column_start":9,"column_end":17,"is_primary":true,"text":[{"text":" use super::*;","highlight_start":9,"highlight_end":17}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"remove the whole `use` item","code":null,"level":"help","spans":[{"file_name":"openvx-vision/src/simd_utils.rs","byte_start":2045,"byte_end":2058,"line_start":70,"line_end":70,"column_start":5,"column_end":18,"is_primary":true,"text":[{"text":" use super::*;","highlight_start":5,"highlight_end":18}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: unused import: `super::*`\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-vision/src/simd_utils.rs:70:9\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m70\u001b[0m \u001b[1m\u001b[94m|\u001b[0m use super::*;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"value assigned to `row_sum` is never read","code":{"code":"unused_assignments","explanation":null},"level":"warning","spans":[{"file_name":"openvx-vision/src/statistics.rs","byte_start":8740,"byte_end":8741,"line_start":295,"line_end":295,"column_start":28,"column_end":29,"is_primary":true,"text":[{"text":" let mut row_sum: u32 = 0;","highlight_start":28,"highlight_end":29}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"maybe it is overwritten before being read?","code":null,"level":"help","spans":[],"children":[],"rendered":null},{"message":"`#[warn(unused_assignments)]` (part of `#[warn(unused)]`) on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: value assigned to `row_sum` is never read\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-vision/src/statistics.rs:295:28\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m295\u001b[0m \u001b[1m\u001b[94m|\u001b[0m let mut row_sum: u32 = 0;\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m= \u001b[0m\u001b[1mhelp\u001b[0m: maybe it is overwritten before being read?\n \u001b[1m\u001b[94m= \u001b[0m\u001b[1mnote\u001b[0m: `#[warn(unused_assignments)]` (part of `#[warn(unused)]`) on by default\n\n"} +{"$message_type":"diagnostic","message":"variable does not need to be mutable","code":{"code":"unused_mut","explanation":null},"level":"warning","spans":[{"file_name":"openvx-vision/src/utils.rs","byte_start":1650,"byte_end":1665,"line_start":64,"line_end":64,"column_start":13,"column_end":28,"is_primary":true,"text":[{"text":" let mut pivot_index = partition(arr, left, right);","highlight_start":13,"highlight_end":28}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(unused_mut)]` (part of `#[warn(unused)]`) on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null},{"message":"remove this `mut`","code":null,"level":"help","spans":[{"file_name":"openvx-vision/src/utils.rs","byte_start":1650,"byte_end":1654,"line_start":64,"line_end":64,"column_start":13,"column_end":17,"is_primary":true,"text":[{"text":" let mut pivot_index = partition(arr, left, right);","highlight_start":13,"highlight_end":17}],"label":null,"suggested_replacement":"","suggestion_applicability":"MachineApplicable","expansion":null}],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: variable does not need to be mutable\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-vision/src/utils.rs:64:13\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m64\u001b[0m \u001b[1m\u001b[94m|\u001b[0m let mut pivot_index = partition(arr, left, right);\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m----\u001b[0m\u001b[1m\u001b[33m^^^^^^^^^^^\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[94mhelp: remove this `mut`\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m= \u001b[0m\u001b[1mnote\u001b[0m: `#[warn(unused_mut)]` (part of `#[warn(unused)]`) on by default\n\n"} +{"$message_type":"diagnostic","message":"constant `Y_COEFF_R` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-vision/src/color.rs","byte_start":228,"byte_end":237,"line_start":7,"line_end":7,"column_start":7,"column_end":16,"is_primary":true,"text":[{"text":"const Y_COEFF_R: i32 = 54; // 0.2126 * 256 (BT.709)","highlight_start":7,"highlight_end":16}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[{"message":"`#[warn(dead_code)]` (part of `#[warn(unused)]`) on by default","code":null,"level":"note","spans":[],"children":[],"rendered":null}],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: constant `Y_COEFF_R` is never used\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-vision/src/color.rs:7:7\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m7\u001b[0m \u001b[1m\u001b[94m|\u001b[0m const Y_COEFF_R: i32 = 54; // 0.2126 * 256 (BT.709)\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m\n \u001b[1m\u001b[94m|\u001b[0m\n \u001b[1m\u001b[94m= \u001b[0m\u001b[1mnote\u001b[0m: `#[warn(dead_code)]` (part of `#[warn(unused)]`) on by default\n\n"} +{"$message_type":"diagnostic","message":"constant `Y_COEFF_G` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-vision/src/color.rs","byte_start":282,"byte_end":291,"line_start":8,"line_end":8,"column_start":7,"column_end":16,"is_primary":true,"text":[{"text":"const Y_COEFF_G: i32 = 183; // 0.7152 * 256 (BT.709)","highlight_start":7,"highlight_end":16}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: constant `Y_COEFF_G` is never used\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-vision/src/color.rs:8:7\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m8\u001b[0m \u001b[1m\u001b[94m|\u001b[0m const Y_COEFF_G: i32 = 183; // 0.7152 * 256 (BT.709)\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"constant `Y_COEFF_B` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-vision/src/color.rs","byte_start":336,"byte_end":345,"line_start":9,"line_end":9,"column_start":7,"column_end":16,"is_primary":true,"text":[{"text":"const Y_COEFF_B: i32 = 18; // 0.0722 * 256 (BT.709)","highlight_start":7,"highlight_end":16}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: constant `Y_COEFF_B` is never used\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-vision/src/color.rs:9:7\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m9\u001b[0m \u001b[1m\u001b[94m|\u001b[0m const Y_COEFF_B: i32 = 18; // 0.0722 * 256 (BT.709)\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"constant `U_COEFF_R` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-vision/src/color.rs","byte_start":391,"byte_end":400,"line_start":11,"line_end":11,"column_start":7,"column_end":16,"is_primary":true,"text":[{"text":"const U_COEFF_R: i32 = -29; // -0.1146 * 256 (BT.709)","highlight_start":7,"highlight_end":16}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: constant `U_COEFF_R` is never used\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-vision/src/color.rs:11:7\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m11\u001b[0m \u001b[1m\u001b[94m|\u001b[0m const U_COEFF_R: i32 = -29; // -0.1146 * 256 (BT.709)\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"constant `U_COEFF_G` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-vision/src/color.rs","byte_start":446,"byte_end":455,"line_start":12,"line_end":12,"column_start":7,"column_end":16,"is_primary":true,"text":[{"text":"const U_COEFF_G: i32 = -99; // -0.3854 * 256 (BT.709)","highlight_start":7,"highlight_end":16}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: constant `U_COEFF_G` is never used\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-vision/src/color.rs:12:7\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m12\u001b[0m \u001b[1m\u001b[94m|\u001b[0m const U_COEFF_G: i32 = -99; // -0.3854 * 256 (BT.709)\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"constant `U_COEFF_B` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-vision/src/color.rs","byte_start":501,"byte_end":510,"line_start":13,"line_end":13,"column_start":7,"column_end":16,"is_primary":true,"text":[{"text":"const U_COEFF_B: i32 = 128; // 0.5 * 256","highlight_start":7,"highlight_end":16}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: constant `U_COEFF_B` is never used\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-vision/src/color.rs:13:7\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m13\u001b[0m \u001b[1m\u001b[94m|\u001b[0m const U_COEFF_B: i32 = 128; // 0.5 * 256\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"constant `V_COEFF_R` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-vision/src/color.rs","byte_start":544,"byte_end":553,"line_start":15,"line_end":15,"column_start":7,"column_end":16,"is_primary":true,"text":[{"text":"const V_COEFF_R: i32 = 128; // 0.5 * 256","highlight_start":7,"highlight_end":16}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: constant `V_COEFF_R` is never used\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-vision/src/color.rs:15:7\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m15\u001b[0m \u001b[1m\u001b[94m|\u001b[0m const V_COEFF_R: i32 = 128; // 0.5 * 256\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"constant `V_COEFF_G` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-vision/src/color.rs","byte_start":586,"byte_end":595,"line_start":16,"line_end":16,"column_start":7,"column_end":16,"is_primary":true,"text":[{"text":"const V_COEFF_G: i32 = -116; // -0.4542 * 256 (BT.709)","highlight_start":7,"highlight_end":16}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: constant `V_COEFF_G` is never used\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-vision/src/color.rs:16:7\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m16\u001b[0m \u001b[1m\u001b[94m|\u001b[0m const V_COEFF_G: i32 = -116; // -0.4542 * 256 (BT.709)\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"constant `V_COEFF_B` is never used","code":{"code":"dead_code","explanation":null},"level":"warning","spans":[{"file_name":"openvx-vision/src/color.rs","byte_start":641,"byte_end":650,"line_start":17,"line_end":17,"column_start":7,"column_end":16,"is_primary":true,"text":[{"text":"const V_COEFF_B: i32 = -12; // -0.0458 * 256 (BT.709)","highlight_start":7,"highlight_end":16}],"label":null,"suggested_replacement":null,"suggestion_applicability":null,"expansion":null}],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: constant `V_COEFF_B` is never used\u001b[0m\n \u001b[1m\u001b[94m--> \u001b[0mopenvx-vision/src/color.rs:17:7\n \u001b[1m\u001b[94m|\u001b[0m\n\u001b[1m\u001b[94m17\u001b[0m \u001b[1m\u001b[94m|\u001b[0m const V_COEFF_B: i32 = -12; // -0.0458 * 256 (BT.709)\n \u001b[1m\u001b[94m|\u001b[0m \u001b[1m\u001b[33m^^^^^^^^^\u001b[0m\n\n"} +{"$message_type":"diagnostic","message":"14 warnings emitted","code":null,"level":"warning","spans":[],"children":[],"rendered":"\u001b[1m\u001b[33mwarning\u001b[0m\u001b[1m: 14 warnings emitted\u001b[0m\n\n"} diff --git a/target/release/.fingerprint/petgraph-75e305f69b0d8fc3/dep-lib-petgraph b/target/release/.fingerprint/petgraph-75e305f69b0d8fc3/dep-lib-petgraph new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/target/release/.fingerprint/petgraph-75e305f69b0d8fc3/dep-lib-petgraph differ diff --git a/target/release/.fingerprint/petgraph-75e305f69b0d8fc3/invoked.timestamp b/target/release/.fingerprint/petgraph-75e305f69b0d8fc3/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/petgraph-75e305f69b0d8fc3/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/petgraph-75e305f69b0d8fc3/lib-petgraph b/target/release/.fingerprint/petgraph-75e305f69b0d8fc3/lib-petgraph new file mode 100644 index 0000000..328a30c --- /dev/null +++ b/target/release/.fingerprint/petgraph-75e305f69b0d8fc3/lib-petgraph @@ -0,0 +1 @@ +b7e307c87c321ea1 \ No newline at end of file diff --git a/target/release/.fingerprint/petgraph-75e305f69b0d8fc3/lib-petgraph.json b/target/release/.fingerprint/petgraph-75e305f69b0d8fc3/lib-petgraph.json new file mode 100644 index 0000000..eb4d910 --- /dev/null +++ b/target/release/.fingerprint/petgraph-75e305f69b0d8fc3/lib-petgraph.json @@ -0,0 +1 @@ +{"rustc":18276270781310494267,"features":"[\"default\", \"graphmap\", \"matrix_graph\", \"stable_graph\"]","declared_features":"[\"all\", \"default\", \"generate\", \"graphmap\", \"matrix_graph\", \"quickcheck\", \"rayon\", \"serde\", \"serde-1\", \"serde_derive\", \"stable_graph\", \"unstable\"]","target":16670801973687532141,"profile":2040997289075261528,"path":16451362667304741920,"deps":[[12821780872552529316,"indexmap",false,3929611307977493825],[18312645897321731715,"fixedbitset",false,17478933388687369589]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/petgraph-75e305f69b0d8fc3/dep-lib-petgraph","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/plotters-75403225b266a9e5/dep-lib-plotters b/target/release/.fingerprint/plotters-75403225b266a9e5/dep-lib-plotters new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/target/release/.fingerprint/plotters-75403225b266a9e5/dep-lib-plotters differ diff --git a/target/release/.fingerprint/plotters-75403225b266a9e5/invoked.timestamp b/target/release/.fingerprint/plotters-75403225b266a9e5/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/plotters-75403225b266a9e5/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/plotters-75403225b266a9e5/lib-plotters b/target/release/.fingerprint/plotters-75403225b266a9e5/lib-plotters new file mode 100644 index 0000000..d1ab5ed --- /dev/null +++ b/target/release/.fingerprint/plotters-75403225b266a9e5/lib-plotters @@ -0,0 +1 @@ +809862dc18e65924 \ No newline at end of file diff --git a/target/release/.fingerprint/plotters-75403225b266a9e5/lib-plotters.json b/target/release/.fingerprint/plotters-75403225b266a9e5/lib-plotters.json new file mode 100644 index 0000000..e0e0333 --- /dev/null +++ b/target/release/.fingerprint/plotters-75403225b266a9e5/lib-plotters.json @@ -0,0 +1 @@ +{"rustc":18276270781310494267,"features":"[\"area_series\", \"line_series\", \"plotters-svg\", \"svg_backend\"]","declared_features":"[\"ab_glyph\", \"all_elements\", \"all_series\", \"area_series\", \"bitmap_backend\", \"bitmap_encoder\", \"bitmap_gif\", \"boxplot\", \"candlestick\", \"chrono\", \"colormaps\", \"datetime\", \"default\", \"deprecated_items\", \"errorbar\", \"evcxr\", \"evcxr_bitmap\", \"font-kit\", \"fontconfig-dlopen\", \"full_palette\", \"histogram\", \"image\", \"lazy_static\", \"line_series\", \"once_cell\", \"pathfinder_geometry\", \"plotters-bitmap\", \"plotters-svg\", \"point_series\", \"surface_series\", \"svg_backend\", \"ttf\", \"ttf-parser\"]","target":5032370829183526798,"profile":67388616899866284,"path":5970220327836320540,"deps":[[5157631553186200874,"num_traits",false,13434497502005898343],[15890097550318469460,"plotters_backend",false,18352927187285902437],[18181515624637013638,"plotters_svg",false,18371661260863865776]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/plotters-75403225b266a9e5/dep-lib-plotters","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/plotters-backend-edf975c5351467da/dep-lib-plotters_backend b/target/release/.fingerprint/plotters-backend-edf975c5351467da/dep-lib-plotters_backend new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/target/release/.fingerprint/plotters-backend-edf975c5351467da/dep-lib-plotters_backend differ diff --git a/target/release/.fingerprint/plotters-backend-edf975c5351467da/invoked.timestamp b/target/release/.fingerprint/plotters-backend-edf975c5351467da/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/plotters-backend-edf975c5351467da/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/plotters-backend-edf975c5351467da/lib-plotters_backend b/target/release/.fingerprint/plotters-backend-edf975c5351467da/lib-plotters_backend new file mode 100644 index 0000000..5714727 --- /dev/null +++ b/target/release/.fingerprint/plotters-backend-edf975c5351467da/lib-plotters_backend @@ -0,0 +1 @@ +6504c9f209b2b2fe \ No newline at end of file diff --git a/target/release/.fingerprint/plotters-backend-edf975c5351467da/lib-plotters_backend.json b/target/release/.fingerprint/plotters-backend-edf975c5351467da/lib-plotters_backend.json new file mode 100644 index 0000000..4b6ff84 --- /dev/null +++ b/target/release/.fingerprint/plotters-backend-edf975c5351467da/lib-plotters_backend.json @@ -0,0 +1 @@ +{"rustc":18276270781310494267,"features":"[]","declared_features":"[]","target":14795259970814334862,"profile":2040997289075261528,"path":1242422888331414321,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/plotters-backend-edf975c5351467da/dep-lib-plotters_backend","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/plotters-svg-d8189738bdf2cfac/dep-lib-plotters_svg b/target/release/.fingerprint/plotters-svg-d8189738bdf2cfac/dep-lib-plotters_svg new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/target/release/.fingerprint/plotters-svg-d8189738bdf2cfac/dep-lib-plotters_svg differ diff --git a/target/release/.fingerprint/plotters-svg-d8189738bdf2cfac/invoked.timestamp b/target/release/.fingerprint/plotters-svg-d8189738bdf2cfac/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/plotters-svg-d8189738bdf2cfac/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/plotters-svg-d8189738bdf2cfac/lib-plotters_svg b/target/release/.fingerprint/plotters-svg-d8189738bdf2cfac/lib-plotters_svg new file mode 100644 index 0000000..d65ccf2 --- /dev/null +++ b/target/release/.fingerprint/plotters-svg-d8189738bdf2cfac/lib-plotters_svg @@ -0,0 +1 @@ +b083985b9440f5fe \ No newline at end of file diff --git a/target/release/.fingerprint/plotters-svg-d8189738bdf2cfac/lib-plotters_svg.json b/target/release/.fingerprint/plotters-svg-d8189738bdf2cfac/lib-plotters_svg.json new file mode 100644 index 0000000..900515b --- /dev/null +++ b/target/release/.fingerprint/plotters-svg-d8189738bdf2cfac/lib-plotters_svg.json @@ -0,0 +1 @@ +{"rustc":18276270781310494267,"features":"[]","declared_features":"[\"bitmap_encoder\", \"debug\", \"image\"]","target":14213217672498935421,"profile":2040997289075261528,"path":17770824432704990723,"deps":[[15890097550318469460,"plotters_backend",false,18352927187285902437]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/plotters-svg-d8189738bdf2cfac/dep-lib-plotters_svg","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/rayon-core-5a375d021037a2b6/dep-lib-rayon_core b/target/release/.fingerprint/rayon-core-5a375d021037a2b6/dep-lib-rayon_core new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/target/release/.fingerprint/rayon-core-5a375d021037a2b6/dep-lib-rayon_core differ diff --git a/target/release/.fingerprint/rayon-core-5a375d021037a2b6/invoked.timestamp b/target/release/.fingerprint/rayon-core-5a375d021037a2b6/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/rayon-core-5a375d021037a2b6/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/rayon-core-5a375d021037a2b6/lib-rayon_core b/target/release/.fingerprint/rayon-core-5a375d021037a2b6/lib-rayon_core new file mode 100644 index 0000000..2d6f5aa --- /dev/null +++ b/target/release/.fingerprint/rayon-core-5a375d021037a2b6/lib-rayon_core @@ -0,0 +1 @@ +6b314ad0ce76572c \ No newline at end of file diff --git a/target/release/.fingerprint/rayon-core-5a375d021037a2b6/lib-rayon_core.json b/target/release/.fingerprint/rayon-core-5a375d021037a2b6/lib-rayon_core.json new file mode 100644 index 0000000..7539a97 --- /dev/null +++ b/target/release/.fingerprint/rayon-core-5a375d021037a2b6/lib-rayon_core.json @@ -0,0 +1 @@ +{"rustc":18276270781310494267,"features":"[]","declared_features":"[\"web_spin_lock\"]","target":12465439074827573786,"profile":2040997289075261528,"path":18247095145249194548,"deps":[[3746573929696391749,"build_script_build",false,2553575594769533662],[4468123440088164316,"crossbeam_utils",false,13020019537922379734],[17472578983440242455,"crossbeam_deque",false,9161468909912678969]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/rayon-core-5a375d021037a2b6/dep-lib-rayon_core","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/rayon-core-9f263098e65019f7/build-script-build-script-build b/target/release/.fingerprint/rayon-core-9f263098e65019f7/build-script-build-script-build new file mode 100644 index 0000000..da5350d --- /dev/null +++ b/target/release/.fingerprint/rayon-core-9f263098e65019f7/build-script-build-script-build @@ -0,0 +1 @@ +d8dc827ce824fb3c \ No newline at end of file diff --git a/target/release/.fingerprint/rayon-core-9f263098e65019f7/build-script-build-script-build.json b/target/release/.fingerprint/rayon-core-9f263098e65019f7/build-script-build-script-build.json new file mode 100644 index 0000000..1539586 --- /dev/null +++ b/target/release/.fingerprint/rayon-core-9f263098e65019f7/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":18276270781310494267,"features":"[]","declared_features":"[\"web_spin_lock\"]","target":5408242616063297496,"profile":1369601567987815722,"path":6679128665039955907,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/rayon-core-9f263098e65019f7/dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/rayon-core-9f263098e65019f7/dep-build-script-build-script-build b/target/release/.fingerprint/rayon-core-9f263098e65019f7/dep-build-script-build-script-build new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/target/release/.fingerprint/rayon-core-9f263098e65019f7/dep-build-script-build-script-build differ diff --git a/target/release/.fingerprint/rayon-core-9f263098e65019f7/invoked.timestamp b/target/release/.fingerprint/rayon-core-9f263098e65019f7/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/rayon-core-9f263098e65019f7/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/rayon-core-c59764294d684b6c/run-build-script-build-script-build b/target/release/.fingerprint/rayon-core-c59764294d684b6c/run-build-script-build-script-build new file mode 100644 index 0000000..e51df03 --- /dev/null +++ b/target/release/.fingerprint/rayon-core-c59764294d684b6c/run-build-script-build-script-build @@ -0,0 +1 @@ +de4a5859791f7023 \ No newline at end of file diff --git a/target/release/.fingerprint/rayon-core-c59764294d684b6c/run-build-script-build-script-build.json b/target/release/.fingerprint/rayon-core-c59764294d684b6c/run-build-script-build-script-build.json new file mode 100644 index 0000000..96afa05 --- /dev/null +++ b/target/release/.fingerprint/rayon-core-c59764294d684b6c/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":18276270781310494267,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[3746573929696391749,"build_script_build",false,4394146442370014424]],"local":[{"RerunIfChanged":{"output":"release/build/rayon-core-c59764294d684b6c/output","paths":["build.rs"]}}],"rustflags":[],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/rayon-ef538e4aeb428f43/dep-lib-rayon b/target/release/.fingerprint/rayon-ef538e4aeb428f43/dep-lib-rayon new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/target/release/.fingerprint/rayon-ef538e4aeb428f43/dep-lib-rayon differ diff --git a/target/release/.fingerprint/rayon-ef538e4aeb428f43/invoked.timestamp b/target/release/.fingerprint/rayon-ef538e4aeb428f43/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/rayon-ef538e4aeb428f43/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/rayon-ef538e4aeb428f43/lib-rayon b/target/release/.fingerprint/rayon-ef538e4aeb428f43/lib-rayon new file mode 100644 index 0000000..6c51240 --- /dev/null +++ b/target/release/.fingerprint/rayon-ef538e4aeb428f43/lib-rayon @@ -0,0 +1 @@ +b816fdc2c717767c \ No newline at end of file diff --git a/target/release/.fingerprint/rayon-ef538e4aeb428f43/lib-rayon.json b/target/release/.fingerprint/rayon-ef538e4aeb428f43/lib-rayon.json new file mode 100644 index 0000000..43ede7e --- /dev/null +++ b/target/release/.fingerprint/rayon-ef538e4aeb428f43/lib-rayon.json @@ -0,0 +1 @@ +{"rustc":18276270781310494267,"features":"[]","declared_features":"[\"web_spin_lock\"]","target":4732152328429177609,"profile":2040997289075261528,"path":5978783688639779966,"deps":[[3746573929696391749,"rayon_core",false,3195153091272520043],[12170264697963848012,"either",false,16382720860661808770]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/rayon-ef538e4aeb428f43/dep-lib-rayon","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/regex-automata-377dae046e8013f7/dep-lib-regex_automata b/target/release/.fingerprint/regex-automata-377dae046e8013f7/dep-lib-regex_automata new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/target/release/.fingerprint/regex-automata-377dae046e8013f7/dep-lib-regex_automata differ diff --git a/target/release/.fingerprint/regex-automata-377dae046e8013f7/invoked.timestamp b/target/release/.fingerprint/regex-automata-377dae046e8013f7/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/regex-automata-377dae046e8013f7/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/regex-automata-377dae046e8013f7/lib-regex_automata b/target/release/.fingerprint/regex-automata-377dae046e8013f7/lib-regex_automata new file mode 100644 index 0000000..9582f7b --- /dev/null +++ b/target/release/.fingerprint/regex-automata-377dae046e8013f7/lib-regex_automata @@ -0,0 +1 @@ +6a230a4a599f087c \ No newline at end of file diff --git a/target/release/.fingerprint/regex-automata-377dae046e8013f7/lib-regex_automata.json b/target/release/.fingerprint/regex-automata-377dae046e8013f7/lib-regex_automata.json new file mode 100644 index 0000000..447c8f5 --- /dev/null +++ b/target/release/.fingerprint/regex-automata-377dae046e8013f7/lib-regex_automata.json @@ -0,0 +1 @@ +{"rustc":18276270781310494267,"features":"[\"alloc\", \"meta\", \"nfa-pikevm\", \"nfa-thompson\", \"std\", \"syntax\"]","declared_features":"[\"alloc\", \"default\", \"dfa\", \"dfa-build\", \"dfa-onepass\", \"dfa-search\", \"hybrid\", \"internal-instrument\", \"internal-instrument-pikevm\", \"logging\", \"meta\", \"nfa\", \"nfa-backtrack\", \"nfa-pikevm\", \"nfa-thompson\", \"perf\", \"perf-inline\", \"perf-literal\", \"perf-literal-multisubstring\", \"perf-literal-substring\", \"std\", \"syntax\", \"unicode\", \"unicode-age\", \"unicode-bool\", \"unicode-case\", \"unicode-gencat\", \"unicode-perl\", \"unicode-script\", \"unicode-segment\", \"unicode-word-boundary\"]","target":4726246767843925232,"profile":6775858856731825901,"path":15196446515259219940,"deps":[[13473492399833278124,"regex_syntax",false,12196922908789654660]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/regex-automata-377dae046e8013f7/dep-lib-regex_automata","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/regex-f95dd342f35f01a5/dep-lib-regex b/target/release/.fingerprint/regex-f95dd342f35f01a5/dep-lib-regex new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/target/release/.fingerprint/regex-f95dd342f35f01a5/dep-lib-regex differ diff --git a/target/release/.fingerprint/regex-f95dd342f35f01a5/invoked.timestamp b/target/release/.fingerprint/regex-f95dd342f35f01a5/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/regex-f95dd342f35f01a5/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/regex-f95dd342f35f01a5/lib-regex b/target/release/.fingerprint/regex-f95dd342f35f01a5/lib-regex new file mode 100644 index 0000000..bde39cf --- /dev/null +++ b/target/release/.fingerprint/regex-f95dd342f35f01a5/lib-regex @@ -0,0 +1 @@ +f9674e75383c8308 \ No newline at end of file diff --git a/target/release/.fingerprint/regex-f95dd342f35f01a5/lib-regex.json b/target/release/.fingerprint/regex-f95dd342f35f01a5/lib-regex.json new file mode 100644 index 0000000..d32df14 --- /dev/null +++ b/target/release/.fingerprint/regex-f95dd342f35f01a5/lib-regex.json @@ -0,0 +1 @@ +{"rustc":18276270781310494267,"features":"[\"std\"]","declared_features":"[\"default\", \"logging\", \"pattern\", \"perf\", \"perf-backtrack\", \"perf-cache\", \"perf-dfa\", \"perf-dfa-full\", \"perf-inline\", \"perf-literal\", \"perf-onepass\", \"std\", \"unicode\", \"unicode-age\", \"unicode-bool\", \"unicode-case\", \"unicode-gencat\", \"unicode-perl\", \"unicode-script\", \"unicode-segment\", \"unstable\", \"use_std\"]","target":5796931310894148030,"profile":6775858856731825901,"path":6247539067468550545,"deps":[[3621165330500844947,"regex_automata",false,8937568666359833450],[13473492399833278124,"regex_syntax",false,12196922908789654660]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/regex-f95dd342f35f01a5/dep-lib-regex","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/regex-syntax-93a683800cc09f4c/dep-lib-regex_syntax b/target/release/.fingerprint/regex-syntax-93a683800cc09f4c/dep-lib-regex_syntax new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/target/release/.fingerprint/regex-syntax-93a683800cc09f4c/dep-lib-regex_syntax differ diff --git a/target/release/.fingerprint/regex-syntax-93a683800cc09f4c/invoked.timestamp b/target/release/.fingerprint/regex-syntax-93a683800cc09f4c/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/regex-syntax-93a683800cc09f4c/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/regex-syntax-93a683800cc09f4c/lib-regex_syntax b/target/release/.fingerprint/regex-syntax-93a683800cc09f4c/lib-regex_syntax new file mode 100644 index 0000000..f32bc36 --- /dev/null +++ b/target/release/.fingerprint/regex-syntax-93a683800cc09f4c/lib-regex_syntax @@ -0,0 +1 @@ +84443b73c32c44a9 \ No newline at end of file diff --git a/target/release/.fingerprint/regex-syntax-93a683800cc09f4c/lib-regex_syntax.json b/target/release/.fingerprint/regex-syntax-93a683800cc09f4c/lib-regex_syntax.json new file mode 100644 index 0000000..404ca6b --- /dev/null +++ b/target/release/.fingerprint/regex-syntax-93a683800cc09f4c/lib-regex_syntax.json @@ -0,0 +1 @@ +{"rustc":18276270781310494267,"features":"[\"std\"]","declared_features":"[\"arbitrary\", \"default\", \"std\", \"unicode\", \"unicode-age\", \"unicode-bool\", \"unicode-case\", \"unicode-gencat\", \"unicode-perl\", \"unicode-script\", \"unicode-segment\"]","target":742186494246220192,"profile":6775858856731825901,"path":3250971734716947675,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/regex-syntax-93a683800cc09f4c/dep-lib-regex_syntax","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/same-file-64e531aa09097702/dep-lib-same_file b/target/release/.fingerprint/same-file-64e531aa09097702/dep-lib-same_file new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/target/release/.fingerprint/same-file-64e531aa09097702/dep-lib-same_file differ diff --git a/target/release/.fingerprint/same-file-64e531aa09097702/invoked.timestamp b/target/release/.fingerprint/same-file-64e531aa09097702/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/same-file-64e531aa09097702/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/same-file-64e531aa09097702/lib-same_file b/target/release/.fingerprint/same-file-64e531aa09097702/lib-same_file new file mode 100644 index 0000000..c7b77fa --- /dev/null +++ b/target/release/.fingerprint/same-file-64e531aa09097702/lib-same_file @@ -0,0 +1 @@ +8e454af842eaf8b8 \ No newline at end of file diff --git a/target/release/.fingerprint/same-file-64e531aa09097702/lib-same_file.json b/target/release/.fingerprint/same-file-64e531aa09097702/lib-same_file.json new file mode 100644 index 0000000..af61723 --- /dev/null +++ b/target/release/.fingerprint/same-file-64e531aa09097702/lib-same_file.json @@ -0,0 +1 @@ +{"rustc":18276270781310494267,"features":"[]","declared_features":"[]","target":5850851708384281287,"profile":2040997289075261528,"path":334487166302662044,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/same-file-64e531aa09097702/dep-lib-same_file","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/serde-331725c5f4db8ec6/build-script-build-script-build b/target/release/.fingerprint/serde-331725c5f4db8ec6/build-script-build-script-build new file mode 100644 index 0000000..d6f5903 --- /dev/null +++ b/target/release/.fingerprint/serde-331725c5f4db8ec6/build-script-build-script-build @@ -0,0 +1 @@ +41f7ac3bc13fb597 \ No newline at end of file diff --git a/target/release/.fingerprint/serde-331725c5f4db8ec6/build-script-build-script-build.json b/target/release/.fingerprint/serde-331725c5f4db8ec6/build-script-build-script-build.json new file mode 100644 index 0000000..6d1844d --- /dev/null +++ b/target/release/.fingerprint/serde-331725c5f4db8ec6/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":18276270781310494267,"features":"[\"alloc\", \"default\", \"derive\", \"serde_derive\", \"std\"]","declared_features":"[\"alloc\", \"default\", \"derive\", \"rc\", \"serde_derive\", \"std\", \"unstable\"]","target":5408242616063297496,"profile":1369601567987815722,"path":14134343704003147978,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/serde-331725c5f4db8ec6/dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/serde-331725c5f4db8ec6/dep-build-script-build-script-build b/target/release/.fingerprint/serde-331725c5f4db8ec6/dep-build-script-build-script-build new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/target/release/.fingerprint/serde-331725c5f4db8ec6/dep-build-script-build-script-build differ diff --git a/target/release/.fingerprint/serde-331725c5f4db8ec6/invoked.timestamp b/target/release/.fingerprint/serde-331725c5f4db8ec6/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/serde-331725c5f4db8ec6/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/serde-af0d85b33381362c/run-build-script-build-script-build b/target/release/.fingerprint/serde-af0d85b33381362c/run-build-script-build-script-build new file mode 100644 index 0000000..1623bcc --- /dev/null +++ b/target/release/.fingerprint/serde-af0d85b33381362c/run-build-script-build-script-build @@ -0,0 +1 @@ +a2ace11748a22ec2 \ No newline at end of file diff --git a/target/release/.fingerprint/serde-af0d85b33381362c/run-build-script-build-script-build.json b/target/release/.fingerprint/serde-af0d85b33381362c/run-build-script-build-script-build.json new file mode 100644 index 0000000..f570a50 --- /dev/null +++ b/target/release/.fingerprint/serde-af0d85b33381362c/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":18276270781310494267,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[13548984313718623784,"build_script_build",false,10931713769674176321]],"local":[{"RerunIfChanged":{"output":"release/build/serde-af0d85b33381362c/output","paths":["build.rs"]}}],"rustflags":[],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/serde-c8a3a5ede2ff5100/dep-lib-serde b/target/release/.fingerprint/serde-c8a3a5ede2ff5100/dep-lib-serde new file mode 100644 index 0000000..93fc728 Binary files /dev/null and b/target/release/.fingerprint/serde-c8a3a5ede2ff5100/dep-lib-serde differ diff --git a/target/release/.fingerprint/serde-c8a3a5ede2ff5100/invoked.timestamp b/target/release/.fingerprint/serde-c8a3a5ede2ff5100/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/serde-c8a3a5ede2ff5100/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/serde-c8a3a5ede2ff5100/lib-serde b/target/release/.fingerprint/serde-c8a3a5ede2ff5100/lib-serde new file mode 100644 index 0000000..ca31a0b --- /dev/null +++ b/target/release/.fingerprint/serde-c8a3a5ede2ff5100/lib-serde @@ -0,0 +1 @@ +b3592bcae1525e95 \ No newline at end of file diff --git a/target/release/.fingerprint/serde-c8a3a5ede2ff5100/lib-serde.json b/target/release/.fingerprint/serde-c8a3a5ede2ff5100/lib-serde.json new file mode 100644 index 0000000..86d657a --- /dev/null +++ b/target/release/.fingerprint/serde-c8a3a5ede2ff5100/lib-serde.json @@ -0,0 +1 @@ +{"rustc":18276270781310494267,"features":"[\"alloc\", \"default\", \"derive\", \"serde_derive\", \"std\"]","declared_features":"[\"alloc\", \"default\", \"derive\", \"rc\", \"serde_derive\", \"std\", \"unstable\"]","target":11327258112168116673,"profile":2040997289075261528,"path":4282881939799884416,"deps":[[3051629642231505422,"serde_derive",false,10510254659636567795],[11899261697793765154,"serde_core",false,5056093947098997858],[13548984313718623784,"build_script_build",false,13992299522808720546]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/serde-c8a3a5ede2ff5100/dep-lib-serde","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/serde_core-9327041b313c07c5/run-build-script-build-script-build b/target/release/.fingerprint/serde_core-9327041b313c07c5/run-build-script-build-script-build new file mode 100644 index 0000000..6d5be4d --- /dev/null +++ b/target/release/.fingerprint/serde_core-9327041b313c07c5/run-build-script-build-script-build @@ -0,0 +1 @@ +2a249726a7f00aac \ No newline at end of file diff --git a/target/release/.fingerprint/serde_core-9327041b313c07c5/run-build-script-build-script-build.json b/target/release/.fingerprint/serde_core-9327041b313c07c5/run-build-script-build-script-build.json new file mode 100644 index 0000000..9336188 --- /dev/null +++ b/target/release/.fingerprint/serde_core-9327041b313c07c5/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":18276270781310494267,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[11899261697793765154,"build_script_build",false,18382322324843471082]],"local":[{"RerunIfChanged":{"output":"release/build/serde_core-9327041b313c07c5/output","paths":["build.rs"]}}],"rustflags":[],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/serde_core-a118d614090ef10e/build-script-build-script-build b/target/release/.fingerprint/serde_core-a118d614090ef10e/build-script-build-script-build new file mode 100644 index 0000000..8956e62 --- /dev/null +++ b/target/release/.fingerprint/serde_core-a118d614090ef10e/build-script-build-script-build @@ -0,0 +1 @@ +ea2007bfc2201bff \ No newline at end of file diff --git a/target/release/.fingerprint/serde_core-a118d614090ef10e/build-script-build-script-build.json b/target/release/.fingerprint/serde_core-a118d614090ef10e/build-script-build-script-build.json new file mode 100644 index 0000000..0b0ef4e --- /dev/null +++ b/target/release/.fingerprint/serde_core-a118d614090ef10e/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":18276270781310494267,"features":"[\"alloc\", \"result\", \"std\"]","declared_features":"[\"alloc\", \"default\", \"rc\", \"result\", \"std\", \"unstable\"]","target":5408242616063297496,"profile":1369601567987815722,"path":7000664686180758628,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/serde_core-a118d614090ef10e/dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/serde_core-a118d614090ef10e/dep-build-script-build-script-build b/target/release/.fingerprint/serde_core-a118d614090ef10e/dep-build-script-build-script-build new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/target/release/.fingerprint/serde_core-a118d614090ef10e/dep-build-script-build-script-build differ diff --git a/target/release/.fingerprint/serde_core-a118d614090ef10e/invoked.timestamp b/target/release/.fingerprint/serde_core-a118d614090ef10e/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/serde_core-a118d614090ef10e/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/serde_core-c78673a2db8b2ceb/dep-lib-serde_core b/target/release/.fingerprint/serde_core-c78673a2db8b2ceb/dep-lib-serde_core new file mode 100644 index 0000000..bb69fde Binary files /dev/null and b/target/release/.fingerprint/serde_core-c78673a2db8b2ceb/dep-lib-serde_core differ diff --git a/target/release/.fingerprint/serde_core-c78673a2db8b2ceb/invoked.timestamp b/target/release/.fingerprint/serde_core-c78673a2db8b2ceb/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/serde_core-c78673a2db8b2ceb/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/serde_core-c78673a2db8b2ceb/lib-serde_core b/target/release/.fingerprint/serde_core-c78673a2db8b2ceb/lib-serde_core new file mode 100644 index 0000000..f8a673c --- /dev/null +++ b/target/release/.fingerprint/serde_core-c78673a2db8b2ceb/lib-serde_core @@ -0,0 +1 @@ +62a4d613a8da2a46 \ No newline at end of file diff --git a/target/release/.fingerprint/serde_core-c78673a2db8b2ceb/lib-serde_core.json b/target/release/.fingerprint/serde_core-c78673a2db8b2ceb/lib-serde_core.json new file mode 100644 index 0000000..711882b --- /dev/null +++ b/target/release/.fingerprint/serde_core-c78673a2db8b2ceb/lib-serde_core.json @@ -0,0 +1 @@ +{"rustc":18276270781310494267,"features":"[\"alloc\", \"result\", \"std\"]","declared_features":"[\"alloc\", \"default\", \"rc\", \"result\", \"std\", \"unstable\"]","target":6810695588070812737,"profile":2040997289075261528,"path":12817289338338863387,"deps":[[11899261697793765154,"build_script_build",false,12396985524988355626]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/serde_core-c78673a2db8b2ceb/dep-lib-serde_core","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/serde_derive-90564e0e713ce840/dep-lib-serde_derive b/target/release/.fingerprint/serde_derive-90564e0e713ce840/dep-lib-serde_derive new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/target/release/.fingerprint/serde_derive-90564e0e713ce840/dep-lib-serde_derive differ diff --git a/target/release/.fingerprint/serde_derive-90564e0e713ce840/invoked.timestamp b/target/release/.fingerprint/serde_derive-90564e0e713ce840/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/serde_derive-90564e0e713ce840/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/serde_derive-90564e0e713ce840/lib-serde_derive b/target/release/.fingerprint/serde_derive-90564e0e713ce840/lib-serde_derive new file mode 100644 index 0000000..ecf24a0 --- /dev/null +++ b/target/release/.fingerprint/serde_derive-90564e0e713ce840/lib-serde_derive @@ -0,0 +1 @@ +f31e885eedecdb91 \ No newline at end of file diff --git a/target/release/.fingerprint/serde_derive-90564e0e713ce840/lib-serde_derive.json b/target/release/.fingerprint/serde_derive-90564e0e713ce840/lib-serde_derive.json new file mode 100644 index 0000000..bf49f85 --- /dev/null +++ b/target/release/.fingerprint/serde_derive-90564e0e713ce840/lib-serde_derive.json @@ -0,0 +1 @@ +{"rustc":18276270781310494267,"features":"[\"default\"]","declared_features":"[\"default\", \"deserialize_in_place\"]","target":13076129734743110817,"profile":1369601567987815722,"path":2200233611873605484,"deps":[[4289358735036141001,"proc_macro2",false,13798747274090476577],[10420560437213941093,"syn",false,1271726924908486399],[13111758008314797071,"quote",false,2591780663403302300]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/serde_derive-90564e0e713ce840/dep-lib-serde_derive","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/serde_json-43ecbc11682a3cd0/run-build-script-build-script-build b/target/release/.fingerprint/serde_json-43ecbc11682a3cd0/run-build-script-build-script-build new file mode 100644 index 0000000..728742d --- /dev/null +++ b/target/release/.fingerprint/serde_json-43ecbc11682a3cd0/run-build-script-build-script-build @@ -0,0 +1 @@ +a423eab57867b39e \ No newline at end of file diff --git a/target/release/.fingerprint/serde_json-43ecbc11682a3cd0/run-build-script-build-script-build.json b/target/release/.fingerprint/serde_json-43ecbc11682a3cd0/run-build-script-build-script-build.json new file mode 100644 index 0000000..4b251c0 --- /dev/null +++ b/target/release/.fingerprint/serde_json-43ecbc11682a3cd0/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":18276270781310494267,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[13795362694956882968,"build_script_build",false,11678869584571118124]],"local":[{"RerunIfChanged":{"output":"release/build/serde_json-43ecbc11682a3cd0/output","paths":["build.rs"]}}],"rustflags":[],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/serde_json-ac29baafb7bec543/dep-lib-serde_json b/target/release/.fingerprint/serde_json-ac29baafb7bec543/dep-lib-serde_json new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/target/release/.fingerprint/serde_json-ac29baafb7bec543/dep-lib-serde_json differ diff --git a/target/release/.fingerprint/serde_json-ac29baafb7bec543/invoked.timestamp b/target/release/.fingerprint/serde_json-ac29baafb7bec543/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/serde_json-ac29baafb7bec543/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/serde_json-ac29baafb7bec543/lib-serde_json b/target/release/.fingerprint/serde_json-ac29baafb7bec543/lib-serde_json new file mode 100644 index 0000000..a221048 --- /dev/null +++ b/target/release/.fingerprint/serde_json-ac29baafb7bec543/lib-serde_json @@ -0,0 +1 @@ +6a145f5999d9fc7f \ No newline at end of file diff --git a/target/release/.fingerprint/serde_json-ac29baafb7bec543/lib-serde_json.json b/target/release/.fingerprint/serde_json-ac29baafb7bec543/lib-serde_json.json new file mode 100644 index 0000000..8f4ef6f --- /dev/null +++ b/target/release/.fingerprint/serde_json-ac29baafb7bec543/lib-serde_json.json @@ -0,0 +1 @@ +{"rustc":18276270781310494267,"features":"[\"default\", \"std\"]","declared_features":"[\"alloc\", \"arbitrary_precision\", \"default\", \"float_roundtrip\", \"indexmap\", \"preserve_order\", \"raw_value\", \"std\", \"unbounded_depth\"]","target":9592559880233824070,"profile":2040997289075261528,"path":13806169388042785016,"deps":[[1363051979936526615,"memchr",false,7748022105916787067],[5532778797167691009,"itoa",false,11615431695709588895],[11899261697793765154,"serde_core",false,5056093947098997858],[12347024475581975995,"zmij",false,13764080931606101002],[13795362694956882968,"build_script_build",false,11435597646969578404]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/serde_json-ac29baafb7bec543/dep-lib-serde_json","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/serde_json-c1f9c3dcffe62a42/build-script-build-script-build b/target/release/.fingerprint/serde_json-c1f9c3dcffe62a42/build-script-build-script-build new file mode 100644 index 0000000..f962e0c --- /dev/null +++ b/target/release/.fingerprint/serde_json-c1f9c3dcffe62a42/build-script-build-script-build @@ -0,0 +1 @@ +2cb2798602ae13a2 \ No newline at end of file diff --git a/target/release/.fingerprint/serde_json-c1f9c3dcffe62a42/build-script-build-script-build.json b/target/release/.fingerprint/serde_json-c1f9c3dcffe62a42/build-script-build-script-build.json new file mode 100644 index 0000000..e5132f8 --- /dev/null +++ b/target/release/.fingerprint/serde_json-c1f9c3dcffe62a42/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":18276270781310494267,"features":"[\"default\", \"std\"]","declared_features":"[\"alloc\", \"arbitrary_precision\", \"default\", \"float_roundtrip\", \"indexmap\", \"preserve_order\", \"raw_value\", \"std\", \"unbounded_depth\"]","target":5408242616063297496,"profile":1369601567987815722,"path":6402076068733813433,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/serde_json-c1f9c3dcffe62a42/dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/serde_json-c1f9c3dcffe62a42/dep-build-script-build-script-build b/target/release/.fingerprint/serde_json-c1f9c3dcffe62a42/dep-build-script-build-script-build new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/target/release/.fingerprint/serde_json-c1f9c3dcffe62a42/dep-build-script-build-script-build differ diff --git a/target/release/.fingerprint/serde_json-c1f9c3dcffe62a42/invoked.timestamp b/target/release/.fingerprint/serde_json-c1f9c3dcffe62a42/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/serde_json-c1f9c3dcffe62a42/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/syn-3072a9128d9eec2e/dep-lib-syn b/target/release/.fingerprint/syn-3072a9128d9eec2e/dep-lib-syn new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/target/release/.fingerprint/syn-3072a9128d9eec2e/dep-lib-syn differ diff --git a/target/release/.fingerprint/syn-3072a9128d9eec2e/invoked.timestamp b/target/release/.fingerprint/syn-3072a9128d9eec2e/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/syn-3072a9128d9eec2e/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/syn-3072a9128d9eec2e/lib-syn b/target/release/.fingerprint/syn-3072a9128d9eec2e/lib-syn new file mode 100644 index 0000000..e1938c7 --- /dev/null +++ b/target/release/.fingerprint/syn-3072a9128d9eec2e/lib-syn @@ -0,0 +1 @@ +ff5e787ae614a611 \ No newline at end of file diff --git a/target/release/.fingerprint/syn-3072a9128d9eec2e/lib-syn.json b/target/release/.fingerprint/syn-3072a9128d9eec2e/lib-syn.json new file mode 100644 index 0000000..64dac19 --- /dev/null +++ b/target/release/.fingerprint/syn-3072a9128d9eec2e/lib-syn.json @@ -0,0 +1 @@ +{"rustc":18276270781310494267,"features":"[\"clone-impls\", \"default\", \"derive\", \"full\", \"parsing\", \"printing\", \"proc-macro\"]","declared_features":"[\"clone-impls\", \"default\", \"derive\", \"extra-traits\", \"fold\", \"full\", \"parsing\", \"printing\", \"proc-macro\", \"test\", \"visit\", \"visit-mut\"]","target":9442126953582868550,"profile":1369601567987815722,"path":4227911406308810228,"deps":[[4289358735036141001,"proc_macro2",false,13798747274090476577],[8901712065508858692,"unicode_ident",false,15186169778061229990],[13111758008314797071,"quote",false,2591780663403302300]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/syn-3072a9128d9eec2e/dep-lib-syn","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/thiserror-c496eca3cadcee06/dep-lib-thiserror b/target/release/.fingerprint/thiserror-c496eca3cadcee06/dep-lib-thiserror new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/target/release/.fingerprint/thiserror-c496eca3cadcee06/dep-lib-thiserror differ diff --git a/target/release/.fingerprint/thiserror-c496eca3cadcee06/invoked.timestamp b/target/release/.fingerprint/thiserror-c496eca3cadcee06/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/thiserror-c496eca3cadcee06/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/thiserror-c496eca3cadcee06/lib-thiserror b/target/release/.fingerprint/thiserror-c496eca3cadcee06/lib-thiserror new file mode 100644 index 0000000..eee3df8 --- /dev/null +++ b/target/release/.fingerprint/thiserror-c496eca3cadcee06/lib-thiserror @@ -0,0 +1 @@ +b65bf1f7c47b8537 \ No newline at end of file diff --git a/target/release/.fingerprint/thiserror-c496eca3cadcee06/lib-thiserror.json b/target/release/.fingerprint/thiserror-c496eca3cadcee06/lib-thiserror.json new file mode 100644 index 0000000..b2fb0c6 --- /dev/null +++ b/target/release/.fingerprint/thiserror-c496eca3cadcee06/lib-thiserror.json @@ -0,0 +1 @@ +{"rustc":18276270781310494267,"features":"[]","declared_features":"[]","target":13586076721141200315,"profile":2040997289075261528,"path":5506919607519579521,"deps":[[8008191657135824715,"build_script_build",false,254914550557818705],[15291996789830541733,"thiserror_impl",false,13918718907899326201]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/thiserror-c496eca3cadcee06/dep-lib-thiserror","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/thiserror-impl-2bfbf6a429632a87/dep-lib-thiserror_impl b/target/release/.fingerprint/thiserror-impl-2bfbf6a429632a87/dep-lib-thiserror_impl new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/target/release/.fingerprint/thiserror-impl-2bfbf6a429632a87/dep-lib-thiserror_impl differ diff --git a/target/release/.fingerprint/thiserror-impl-2bfbf6a429632a87/invoked.timestamp b/target/release/.fingerprint/thiserror-impl-2bfbf6a429632a87/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/thiserror-impl-2bfbf6a429632a87/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/thiserror-impl-2bfbf6a429632a87/lib-thiserror_impl b/target/release/.fingerprint/thiserror-impl-2bfbf6a429632a87/lib-thiserror_impl new file mode 100644 index 0000000..99729b8 --- /dev/null +++ b/target/release/.fingerprint/thiserror-impl-2bfbf6a429632a87/lib-thiserror_impl @@ -0,0 +1 @@ +f92eda291a3929c1 \ No newline at end of file diff --git a/target/release/.fingerprint/thiserror-impl-2bfbf6a429632a87/lib-thiserror_impl.json b/target/release/.fingerprint/thiserror-impl-2bfbf6a429632a87/lib-thiserror_impl.json new file mode 100644 index 0000000..73954bc --- /dev/null +++ b/target/release/.fingerprint/thiserror-impl-2bfbf6a429632a87/lib-thiserror_impl.json @@ -0,0 +1 @@ +{"rustc":18276270781310494267,"features":"[]","declared_features":"[]","target":6216210811039475267,"profile":1369601567987815722,"path":13816041214249434164,"deps":[[4289358735036141001,"proc_macro2",false,13798747274090476577],[10420560437213941093,"syn",false,1271726924908486399],[13111758008314797071,"quote",false,2591780663403302300]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/thiserror-impl-2bfbf6a429632a87/dep-lib-thiserror_impl","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/tinytemplate-699abacd98ca316b/dep-lib-tinytemplate b/target/release/.fingerprint/tinytemplate-699abacd98ca316b/dep-lib-tinytemplate new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/target/release/.fingerprint/tinytemplate-699abacd98ca316b/dep-lib-tinytemplate differ diff --git a/target/release/.fingerprint/tinytemplate-699abacd98ca316b/invoked.timestamp b/target/release/.fingerprint/tinytemplate-699abacd98ca316b/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/tinytemplate-699abacd98ca316b/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/tinytemplate-699abacd98ca316b/lib-tinytemplate b/target/release/.fingerprint/tinytemplate-699abacd98ca316b/lib-tinytemplate new file mode 100644 index 0000000..905ef4e --- /dev/null +++ b/target/release/.fingerprint/tinytemplate-699abacd98ca316b/lib-tinytemplate @@ -0,0 +1 @@ +1e423d2cb2cd73b8 \ No newline at end of file diff --git a/target/release/.fingerprint/tinytemplate-699abacd98ca316b/lib-tinytemplate.json b/target/release/.fingerprint/tinytemplate-699abacd98ca316b/lib-tinytemplate.json new file mode 100644 index 0000000..300bf9c --- /dev/null +++ b/target/release/.fingerprint/tinytemplate-699abacd98ca316b/lib-tinytemplate.json @@ -0,0 +1 @@ +{"rustc":18276270781310494267,"features":"[]","declared_features":"[]","target":2953300405940707755,"profile":2040997289075261528,"path":4305189505404197578,"deps":[[13548984313718623784,"serde",false,10763131289175022003],[13795362694956882968,"serde_json",false,9222485389600560234]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/tinytemplate-699abacd98ca316b/dep-lib-tinytemplate","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/walkdir-65f9781b0a65b478/dep-lib-walkdir b/target/release/.fingerprint/walkdir-65f9781b0a65b478/dep-lib-walkdir new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/target/release/.fingerprint/walkdir-65f9781b0a65b478/dep-lib-walkdir differ diff --git a/target/release/.fingerprint/walkdir-65f9781b0a65b478/invoked.timestamp b/target/release/.fingerprint/walkdir-65f9781b0a65b478/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/walkdir-65f9781b0a65b478/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/walkdir-65f9781b0a65b478/lib-walkdir b/target/release/.fingerprint/walkdir-65f9781b0a65b478/lib-walkdir new file mode 100644 index 0000000..1143dd8 --- /dev/null +++ b/target/release/.fingerprint/walkdir-65f9781b0a65b478/lib-walkdir @@ -0,0 +1 @@ +7351eebfc48f360c \ No newline at end of file diff --git a/target/release/.fingerprint/walkdir-65f9781b0a65b478/lib-walkdir.json b/target/release/.fingerprint/walkdir-65f9781b0a65b478/lib-walkdir.json new file mode 100644 index 0000000..6629a5e --- /dev/null +++ b/target/release/.fingerprint/walkdir-65f9781b0a65b478/lib-walkdir.json @@ -0,0 +1 @@ +{"rustc":18276270781310494267,"features":"[]","declared_features":"[]","target":3552558796056091662,"profile":2040997289075261528,"path":8300020466812525411,"deps":[[11781824977070132858,"same_file",false,13328660670557341070]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/walkdir-65f9781b0a65b478/dep-lib-walkdir","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/zerocopy-1544feba59a90042/run-build-script-build-script-build b/target/release/.fingerprint/zerocopy-1544feba59a90042/run-build-script-build-script-build new file mode 100644 index 0000000..380a933 --- /dev/null +++ b/target/release/.fingerprint/zerocopy-1544feba59a90042/run-build-script-build-script-build @@ -0,0 +1 @@ +d56ea98fa0c9f60c \ No newline at end of file diff --git a/target/release/.fingerprint/zerocopy-1544feba59a90042/run-build-script-build-script-build.json b/target/release/.fingerprint/zerocopy-1544feba59a90042/run-build-script-build-script-build.json new file mode 100644 index 0000000..f2abee3 --- /dev/null +++ b/target/release/.fingerprint/zerocopy-1544feba59a90042/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":18276270781310494267,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[12041806806590726837,"build_script_build",false,1783579077063623884]],"local":[{"RerunIfChanged":{"output":"release/build/zerocopy-1544feba59a90042/output","paths":["build.rs","Cargo.toml"]}}],"rustflags":[],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/zerocopy-1958fa5fef0c6d9e/dep-lib-zerocopy b/target/release/.fingerprint/zerocopy-1958fa5fef0c6d9e/dep-lib-zerocopy new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/target/release/.fingerprint/zerocopy-1958fa5fef0c6d9e/dep-lib-zerocopy differ diff --git a/target/release/.fingerprint/zerocopy-1958fa5fef0c6d9e/invoked.timestamp b/target/release/.fingerprint/zerocopy-1958fa5fef0c6d9e/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/zerocopy-1958fa5fef0c6d9e/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/zerocopy-1958fa5fef0c6d9e/lib-zerocopy b/target/release/.fingerprint/zerocopy-1958fa5fef0c6d9e/lib-zerocopy new file mode 100644 index 0000000..00a217a --- /dev/null +++ b/target/release/.fingerprint/zerocopy-1958fa5fef0c6d9e/lib-zerocopy @@ -0,0 +1 @@ +4ba193e34ca4e796 \ No newline at end of file diff --git a/target/release/.fingerprint/zerocopy-1958fa5fef0c6d9e/lib-zerocopy.json b/target/release/.fingerprint/zerocopy-1958fa5fef0c6d9e/lib-zerocopy.json new file mode 100644 index 0000000..5e4badb --- /dev/null +++ b/target/release/.fingerprint/zerocopy-1958fa5fef0c6d9e/lib-zerocopy.json @@ -0,0 +1 @@ +{"rustc":18276270781310494267,"features":"[\"derive\", \"simd\", \"zerocopy-derive\"]","declared_features":"[\"__internal_use_only_features_that_work_on_stable\", \"alloc\", \"derive\", \"float-nightly\", \"simd\", \"simd-nightly\", \"std\", \"zerocopy-derive\"]","target":3084901215544504908,"profile":2040997289075261528,"path":5377473126480423810,"deps":[[12041806806590726837,"build_script_build",false,934155664168152789],[14811673093758253806,"zerocopy_derive",false,9386199218774928440]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/zerocopy-1958fa5fef0c6d9e/dep-lib-zerocopy","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/zerocopy-5777f4c962c1b0bb/build-script-build-script-build b/target/release/.fingerprint/zerocopy-5777f4c962c1b0bb/build-script-build-script-build new file mode 100644 index 0000000..063825e --- /dev/null +++ b/target/release/.fingerprint/zerocopy-5777f4c962c1b0bb/build-script-build-script-build @@ -0,0 +1 @@ +cc443285b88bc018 \ No newline at end of file diff --git a/target/release/.fingerprint/zerocopy-5777f4c962c1b0bb/build-script-build-script-build.json b/target/release/.fingerprint/zerocopy-5777f4c962c1b0bb/build-script-build-script-build.json new file mode 100644 index 0000000..55944c6 --- /dev/null +++ b/target/release/.fingerprint/zerocopy-5777f4c962c1b0bb/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":18276270781310494267,"features":"[\"derive\", \"simd\", \"zerocopy-derive\"]","declared_features":"[\"__internal_use_only_features_that_work_on_stable\", \"alloc\", \"derive\", \"float-nightly\", \"simd\", \"simd-nightly\", \"std\", \"zerocopy-derive\"]","target":5408242616063297496,"profile":1369601567987815722,"path":4391915645150214092,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/zerocopy-5777f4c962c1b0bb/dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/zerocopy-5777f4c962c1b0bb/dep-build-script-build-script-build b/target/release/.fingerprint/zerocopy-5777f4c962c1b0bb/dep-build-script-build-script-build new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/target/release/.fingerprint/zerocopy-5777f4c962c1b0bb/dep-build-script-build-script-build differ diff --git a/target/release/.fingerprint/zerocopy-5777f4c962c1b0bb/invoked.timestamp b/target/release/.fingerprint/zerocopy-5777f4c962c1b0bb/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/zerocopy-5777f4c962c1b0bb/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/zerocopy-derive-7bb9374e0145e9e4/dep-lib-zerocopy_derive b/target/release/.fingerprint/zerocopy-derive-7bb9374e0145e9e4/dep-lib-zerocopy_derive new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/target/release/.fingerprint/zerocopy-derive-7bb9374e0145e9e4/dep-lib-zerocopy_derive differ diff --git a/target/release/.fingerprint/zerocopy-derive-7bb9374e0145e9e4/invoked.timestamp b/target/release/.fingerprint/zerocopy-derive-7bb9374e0145e9e4/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/zerocopy-derive-7bb9374e0145e9e4/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/zerocopy-derive-7bb9374e0145e9e4/lib-zerocopy_derive b/target/release/.fingerprint/zerocopy-derive-7bb9374e0145e9e4/lib-zerocopy_derive new file mode 100644 index 0000000..450be66 --- /dev/null +++ b/target/release/.fingerprint/zerocopy-derive-7bb9374e0145e9e4/lib-zerocopy_derive @@ -0,0 +1 @@ +38ec2092757a4282 \ No newline at end of file diff --git a/target/release/.fingerprint/zerocopy-derive-7bb9374e0145e9e4/lib-zerocopy_derive.json b/target/release/.fingerprint/zerocopy-derive-7bb9374e0145e9e4/lib-zerocopy_derive.json new file mode 100644 index 0000000..3d2d8e5 --- /dev/null +++ b/target/release/.fingerprint/zerocopy-derive-7bb9374e0145e9e4/lib-zerocopy_derive.json @@ -0,0 +1 @@ +{"rustc":18276270781310494267,"features":"[]","declared_features":"[]","target":17656254772834663905,"profile":11847245687668233141,"path":13161332597791343203,"deps":[[4289358735036141001,"proc_macro2",false,13798747274090476577],[10420560437213941093,"syn",false,1271726924908486399],[13111758008314797071,"quote",false,2591780663403302300]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/zerocopy-derive-7bb9374e0145e9e4/dep-lib-zerocopy_derive","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/zmij-6b72ac5b6722cab2/build-script-build-script-build b/target/release/.fingerprint/zmij-6b72ac5b6722cab2/build-script-build-script-build new file mode 100644 index 0000000..09c9479 --- /dev/null +++ b/target/release/.fingerprint/zmij-6b72ac5b6722cab2/build-script-build-script-build @@ -0,0 +1 @@ +e1bf5a8c34b5a171 \ No newline at end of file diff --git a/target/release/.fingerprint/zmij-6b72ac5b6722cab2/build-script-build-script-build.json b/target/release/.fingerprint/zmij-6b72ac5b6722cab2/build-script-build-script-build.json new file mode 100644 index 0000000..423c2eb --- /dev/null +++ b/target/release/.fingerprint/zmij-6b72ac5b6722cab2/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":18276270781310494267,"features":"[]","declared_features":"[\"no-panic\"]","target":5408242616063297496,"profile":1369601567987815722,"path":2203502759438356419,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/zmij-6b72ac5b6722cab2/dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/zmij-6b72ac5b6722cab2/dep-build-script-build-script-build b/target/release/.fingerprint/zmij-6b72ac5b6722cab2/dep-build-script-build-script-build new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/target/release/.fingerprint/zmij-6b72ac5b6722cab2/dep-build-script-build-script-build differ diff --git a/target/release/.fingerprint/zmij-6b72ac5b6722cab2/invoked.timestamp b/target/release/.fingerprint/zmij-6b72ac5b6722cab2/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/zmij-6b72ac5b6722cab2/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/zmij-851c18a259b7ecf8/run-build-script-build-script-build b/target/release/.fingerprint/zmij-851c18a259b7ecf8/run-build-script-build-script-build new file mode 100644 index 0000000..cb8f4ee --- /dev/null +++ b/target/release/.fingerprint/zmij-851c18a259b7ecf8/run-build-script-build-script-build @@ -0,0 +1 @@ +b34b5a02332db109 \ No newline at end of file diff --git a/target/release/.fingerprint/zmij-851c18a259b7ecf8/run-build-script-build-script-build.json b/target/release/.fingerprint/zmij-851c18a259b7ecf8/run-build-script-build-script-build.json new file mode 100644 index 0000000..d6181ee --- /dev/null +++ b/target/release/.fingerprint/zmij-851c18a259b7ecf8/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":18276270781310494267,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[12347024475581975995,"build_script_build",false,8188024834833956833]],"local":[{"RerunIfChanged":{"output":"release/build/zmij-851c18a259b7ecf8/output","paths":["build.rs"]}}],"rustflags":[],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/target/release/.fingerprint/zmij-9f70c96db9cb66ea/dep-lib-zmij b/target/release/.fingerprint/zmij-9f70c96db9cb66ea/dep-lib-zmij new file mode 100644 index 0000000..ec3cb8b Binary files /dev/null and b/target/release/.fingerprint/zmij-9f70c96db9cb66ea/dep-lib-zmij differ diff --git a/target/release/.fingerprint/zmij-9f70c96db9cb66ea/invoked.timestamp b/target/release/.fingerprint/zmij-9f70c96db9cb66ea/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/.fingerprint/zmij-9f70c96db9cb66ea/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/.fingerprint/zmij-9f70c96db9cb66ea/lib-zmij b/target/release/.fingerprint/zmij-9f70c96db9cb66ea/lib-zmij new file mode 100644 index 0000000..2346532 --- /dev/null +++ b/target/release/.fingerprint/zmij-9f70c96db9cb66ea/lib-zmij @@ -0,0 +1 @@ +0afc1b9caed603bf \ No newline at end of file diff --git a/target/release/.fingerprint/zmij-9f70c96db9cb66ea/lib-zmij.json b/target/release/.fingerprint/zmij-9f70c96db9cb66ea/lib-zmij.json new file mode 100644 index 0000000..8fba0d3 --- /dev/null +++ b/target/release/.fingerprint/zmij-9f70c96db9cb66ea/lib-zmij.json @@ -0,0 +1 @@ +{"rustc":18276270781310494267,"features":"[]","declared_features":"[\"no-panic\"]","target":16603507647234574737,"profile":2040997289075261528,"path":1348282444584971295,"deps":[[12347024475581975995,"build_script_build",false,698389114325191603]],"local":[{"CheckDepInfo":{"dep_info":"release/.fingerprint/zmij-9f70c96db9cb66ea/dep-lib-zmij","checksum":false}}],"rustflags":[],"config":8247474407144887393,"compile_kind":0} \ No newline at end of file diff --git a/target/release/build/crossbeam-utils-6b4bed48f49c1f80/build-script-build b/target/release/build/crossbeam-utils-6b4bed48f49c1f80/build-script-build new file mode 100755 index 0000000..3c32295 Binary files /dev/null and b/target/release/build/crossbeam-utils-6b4bed48f49c1f80/build-script-build differ diff --git a/target/release/build/crossbeam-utils-6b4bed48f49c1f80/build_script_build-6b4bed48f49c1f80 b/target/release/build/crossbeam-utils-6b4bed48f49c1f80/build_script_build-6b4bed48f49c1f80 new file mode 100755 index 0000000..3c32295 Binary files /dev/null and b/target/release/build/crossbeam-utils-6b4bed48f49c1f80/build_script_build-6b4bed48f49c1f80 differ diff --git a/target/release/build/crossbeam-utils-6b4bed48f49c1f80/build_script_build-6b4bed48f49c1f80.d b/target/release/build/crossbeam-utils-6b4bed48f49c1f80/build_script_build-6b4bed48f49c1f80.d new file mode 100644 index 0000000..83ede45 --- /dev/null +++ b/target/release/build/crossbeam-utils-6b4bed48f49c1f80/build_script_build-6b4bed48f49c1f80.d @@ -0,0 +1,9 @@ +/home/simon/.openclaw/workspace/rustVX/target/release/build/crossbeam-utils-6b4bed48f49c1f80/build_script_build-6b4bed48f49c1f80.d: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-utils-0.8.21/build.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-utils-0.8.21/no_atomic.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-utils-0.8.21/build-common.rs + +/home/simon/.openclaw/workspace/rustVX/target/release/build/crossbeam-utils-6b4bed48f49c1f80/build_script_build-6b4bed48f49c1f80: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-utils-0.8.21/build.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-utils-0.8.21/no_atomic.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-utils-0.8.21/build-common.rs + +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-utils-0.8.21/build.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-utils-0.8.21/no_atomic.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-utils-0.8.21/build-common.rs: + +# env-dep:CARGO_PKG_NAME=crossbeam-utils diff --git a/target/release/build/crossbeam-utils-794d2ff98f40ae39/invoked.timestamp b/target/release/build/crossbeam-utils-794d2ff98f40ae39/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/build/crossbeam-utils-794d2ff98f40ae39/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/build/crossbeam-utils-794d2ff98f40ae39/output b/target/release/build/crossbeam-utils-794d2ff98f40ae39/output new file mode 100644 index 0000000..d0bad9f --- /dev/null +++ b/target/release/build/crossbeam-utils-794d2ff98f40ae39/output @@ -0,0 +1,2 @@ +cargo:rerun-if-changed=no_atomic.rs +cargo:rustc-check-cfg=cfg(crossbeam_no_atomic,crossbeam_sanitize_thread) diff --git a/target/release/build/crossbeam-utils-794d2ff98f40ae39/root-output b/target/release/build/crossbeam-utils-794d2ff98f40ae39/root-output new file mode 100644 index 0000000..16f479a --- /dev/null +++ b/target/release/build/crossbeam-utils-794d2ff98f40ae39/root-output @@ -0,0 +1 @@ +/home/simon/.openclaw/workspace/rustVX/target/release/build/crossbeam-utils-794d2ff98f40ae39/out \ No newline at end of file diff --git a/target/release/build/crossbeam-utils-794d2ff98f40ae39/stderr b/target/release/build/crossbeam-utils-794d2ff98f40ae39/stderr new file mode 100644 index 0000000..e69de29 diff --git a/target/release/build/libc-6223fcab79ac4f71/build_script_build-6223fcab79ac4f71.d b/target/release/build/libc-6223fcab79ac4f71/build_script_build-6223fcab79ac4f71.d index cf189e2..b4fe015 100644 --- a/target/release/build/libc-6223fcab79ac4f71/build_script_build-6223fcab79ac4f71.d +++ b/target/release/build/libc-6223fcab79ac4f71/build_script_build-6223fcab79ac4f71.d @@ -1,5 +1,11 @@ +<<<<<<< HEAD +/home/simon/.openclaw/workspace/rustVX/target/release/build/libc-6223fcab79ac4f71/build_script_build-6223fcab79ac4f71.d: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/build.rs + +/home/simon/.openclaw/workspace/rustVX/target/release/build/libc-6223fcab79ac4f71/build_script_build-6223fcab79ac4f71: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/build.rs +======= /home/simon/.openclaw/workspace/rustvx/target/release/build/libc-6223fcab79ac4f71/build_script_build-6223fcab79ac4f71.d: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/build.rs /home/simon/.openclaw/workspace/rustvx/target/release/build/libc-6223fcab79ac4f71/build_script_build-6223fcab79ac4f71: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/build.rs +>>>>>>> origin/master /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/build.rs: diff --git a/target/release/build/libc-edf0d34ab5d0e3a4/root-output b/target/release/build/libc-edf0d34ab5d0e3a4/root-output index 1ea4f7b..04769fd 100644 --- a/target/release/build/libc-edf0d34ab5d0e3a4/root-output +++ b/target/release/build/libc-edf0d34ab5d0e3a4/root-output @@ -1 +1,5 @@ -/home/simon/.openclaw/workspace/rustvx/target/release/build/libc-edf0d34ab5d0e3a4/out \ No newline at end of file +<<<<<<< HEAD +/home/simon/.openclaw/workspace/rustVX/target/release/build/libc-edf0d34ab5d0e3a4/out +======= +/home/simon/.openclaw/workspace/rustvx/target/release/build/libc-edf0d34ab5d0e3a4/out +>>>>>>> origin/master diff --git a/target/release/build/num-traits-2d2d9acd04073d01/build-script-build b/target/release/build/num-traits-2d2d9acd04073d01/build-script-build new file mode 100755 index 0000000..e0aa802 Binary files /dev/null and b/target/release/build/num-traits-2d2d9acd04073d01/build-script-build differ diff --git a/target/release/build/num-traits-2d2d9acd04073d01/build_script_build-2d2d9acd04073d01 b/target/release/build/num-traits-2d2d9acd04073d01/build_script_build-2d2d9acd04073d01 new file mode 100755 index 0000000..e0aa802 Binary files /dev/null and b/target/release/build/num-traits-2d2d9acd04073d01/build_script_build-2d2d9acd04073d01 differ diff --git a/target/release/build/num-traits-2d2d9acd04073d01/build_script_build-2d2d9acd04073d01.d b/target/release/build/num-traits-2d2d9acd04073d01/build_script_build-2d2d9acd04073d01.d new file mode 100644 index 0000000..4b56280 --- /dev/null +++ b/target/release/build/num-traits-2d2d9acd04073d01/build_script_build-2d2d9acd04073d01.d @@ -0,0 +1,5 @@ +/home/simon/.openclaw/workspace/rustVX/target/release/build/num-traits-2d2d9acd04073d01/build_script_build-2d2d9acd04073d01.d: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-traits-0.2.19/build.rs + +/home/simon/.openclaw/workspace/rustVX/target/release/build/num-traits-2d2d9acd04073d01/build_script_build-2d2d9acd04073d01: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-traits-0.2.19/build.rs + +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-traits-0.2.19/build.rs: diff --git a/target/release/build/num-traits-5e974386bd68af7a/invoked.timestamp b/target/release/build/num-traits-5e974386bd68af7a/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/build/num-traits-5e974386bd68af7a/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/build/num-traits-5e974386bd68af7a/output b/target/release/build/num-traits-5e974386bd68af7a/output new file mode 100644 index 0000000..5acddfe --- /dev/null +++ b/target/release/build/num-traits-5e974386bd68af7a/output @@ -0,0 +1,3 @@ +cargo:rustc-check-cfg=cfg(has_total_cmp) +cargo:rustc-cfg=has_total_cmp +cargo:rerun-if-changed=build.rs diff --git a/target/release/build/num-traits-5e974386bd68af7a/root-output b/target/release/build/num-traits-5e974386bd68af7a/root-output new file mode 100644 index 0000000..aada3f9 --- /dev/null +++ b/target/release/build/num-traits-5e974386bd68af7a/root-output @@ -0,0 +1 @@ +/home/simon/.openclaw/workspace/rustVX/target/release/build/num-traits-5e974386bd68af7a/out \ No newline at end of file diff --git a/target/release/build/num-traits-5e974386bd68af7a/stderr b/target/release/build/num-traits-5e974386bd68af7a/stderr new file mode 100644 index 0000000..e69de29 diff --git a/target/release/build/parking_lot_core-23219f7db82d4aa4/root-output b/target/release/build/parking_lot_core-23219f7db82d4aa4/root-output index 7612b7c..15e2b03 100644 --- a/target/release/build/parking_lot_core-23219f7db82d4aa4/root-output +++ b/target/release/build/parking_lot_core-23219f7db82d4aa4/root-output @@ -1 +1,5 @@ -/home/simon/.openclaw/workspace/rustvx/target/release/build/parking_lot_core-23219f7db82d4aa4/out \ No newline at end of file +<<<<<<< HEAD +/home/simon/.openclaw/workspace/rustVX/target/release/build/parking_lot_core-23219f7db82d4aa4/out +======= +/home/simon/.openclaw/workspace/rustvx/target/release/build/parking_lot_core-23219f7db82d4aa4/out +>>>>>>> origin/master diff --git a/target/release/build/parking_lot_core-b88e22e93ac4ee46/build_script_build-b88e22e93ac4ee46.d b/target/release/build/parking_lot_core-b88e22e93ac4ee46/build_script_build-b88e22e93ac4ee46.d index 79cc2c3..4621a00 100644 --- a/target/release/build/parking_lot_core-b88e22e93ac4ee46/build_script_build-b88e22e93ac4ee46.d +++ b/target/release/build/parking_lot_core-b88e22e93ac4ee46/build_script_build-b88e22e93ac4ee46.d @@ -1,5 +1,11 @@ +<<<<<<< HEAD +/home/simon/.openclaw/workspace/rustVX/target/release/build/parking_lot_core-b88e22e93ac4ee46/build_script_build-b88e22e93ac4ee46.d: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.12/build.rs + +/home/simon/.openclaw/workspace/rustVX/target/release/build/parking_lot_core-b88e22e93ac4ee46/build_script_build-b88e22e93ac4ee46: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.12/build.rs +======= /home/simon/.openclaw/workspace/rustvx/target/release/build/parking_lot_core-b88e22e93ac4ee46/build_script_build-b88e22e93ac4ee46.d: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.12/build.rs /home/simon/.openclaw/workspace/rustvx/target/release/build/parking_lot_core-b88e22e93ac4ee46/build_script_build-b88e22e93ac4ee46: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.12/build.rs +>>>>>>> origin/master /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.12/build.rs: diff --git a/target/release/build/proc-macro2-6264fe01e08c7b8b/root-output b/target/release/build/proc-macro2-6264fe01e08c7b8b/root-output index 7cd2b49..9a2902c 100644 --- a/target/release/build/proc-macro2-6264fe01e08c7b8b/root-output +++ b/target/release/build/proc-macro2-6264fe01e08c7b8b/root-output @@ -1 +1,5 @@ -/home/simon/.openclaw/workspace/rustvx/target/release/build/proc-macro2-6264fe01e08c7b8b/out \ No newline at end of file +<<<<<<< HEAD +/home/simon/.openclaw/workspace/rustVX/target/release/build/proc-macro2-6264fe01e08c7b8b/out +======= +/home/simon/.openclaw/workspace/rustvx/target/release/build/proc-macro2-6264fe01e08c7b8b/out +>>>>>>> origin/master diff --git a/target/release/build/proc-macro2-986587f949cb3616/build_script_build-986587f949cb3616.d b/target/release/build/proc-macro2-986587f949cb3616/build_script_build-986587f949cb3616.d index 1f870a1..39fc594 100644 --- a/target/release/build/proc-macro2-986587f949cb3616/build_script_build-986587f949cb3616.d +++ b/target/release/build/proc-macro2-986587f949cb3616/build_script_build-986587f949cb3616.d @@ -1,5 +1,11 @@ +<<<<<<< HEAD +/home/simon/.openclaw/workspace/rustVX/target/release/build/proc-macro2-986587f949cb3616/build_script_build-986587f949cb3616.d: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/build.rs + +/home/simon/.openclaw/workspace/rustVX/target/release/build/proc-macro2-986587f949cb3616/build_script_build-986587f949cb3616: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/build.rs +======= /home/simon/.openclaw/workspace/rustvx/target/release/build/proc-macro2-986587f949cb3616/build_script_build-986587f949cb3616.d: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/build.rs /home/simon/.openclaw/workspace/rustvx/target/release/build/proc-macro2-986587f949cb3616/build_script_build-986587f949cb3616: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/build.rs +>>>>>>> origin/master /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/build.rs: diff --git a/target/release/build/quote-1e859e3c81e25afd/root-output b/target/release/build/quote-1e859e3c81e25afd/root-output index cc38f18..f9e5c5d 100644 --- a/target/release/build/quote-1e859e3c81e25afd/root-output +++ b/target/release/build/quote-1e859e3c81e25afd/root-output @@ -1 +1,5 @@ -/home/simon/.openclaw/workspace/rustvx/target/release/build/quote-1e859e3c81e25afd/out \ No newline at end of file +<<<<<<< HEAD +/home/simon/.openclaw/workspace/rustVX/target/release/build/quote-1e859e3c81e25afd/out +======= +/home/simon/.openclaw/workspace/rustvx/target/release/build/quote-1e859e3c81e25afd/out +>>>>>>> origin/master diff --git a/target/release/build/quote-c93d442eb9933478/build_script_build-c93d442eb9933478.d b/target/release/build/quote-c93d442eb9933478/build_script_build-c93d442eb9933478.d index 8691bd1..fb33413 100644 --- a/target/release/build/quote-c93d442eb9933478/build_script_build-c93d442eb9933478.d +++ b/target/release/build/quote-c93d442eb9933478/build_script_build-c93d442eb9933478.d @@ -1,5 +1,11 @@ +<<<<<<< HEAD +/home/simon/.openclaw/workspace/rustVX/target/release/build/quote-c93d442eb9933478/build_script_build-c93d442eb9933478.d: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.45/build.rs + +/home/simon/.openclaw/workspace/rustVX/target/release/build/quote-c93d442eb9933478/build_script_build-c93d442eb9933478: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.45/build.rs +======= /home/simon/.openclaw/workspace/rustvx/target/release/build/quote-c93d442eb9933478/build_script_build-c93d442eb9933478.d: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.45/build.rs /home/simon/.openclaw/workspace/rustvx/target/release/build/quote-c93d442eb9933478/build_script_build-c93d442eb9933478: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.45/build.rs +>>>>>>> origin/master /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.45/build.rs: diff --git a/target/release/build/rayon-core-9f263098e65019f7/build-script-build b/target/release/build/rayon-core-9f263098e65019f7/build-script-build new file mode 100755 index 0000000..7e4210e Binary files /dev/null and b/target/release/build/rayon-core-9f263098e65019f7/build-script-build differ diff --git a/target/release/build/rayon-core-9f263098e65019f7/build_script_build-9f263098e65019f7 b/target/release/build/rayon-core-9f263098e65019f7/build_script_build-9f263098e65019f7 new file mode 100755 index 0000000..7e4210e Binary files /dev/null and b/target/release/build/rayon-core-9f263098e65019f7/build_script_build-9f263098e65019f7 differ diff --git a/target/release/build/rayon-core-9f263098e65019f7/build_script_build-9f263098e65019f7.d b/target/release/build/rayon-core-9f263098e65019f7/build_script_build-9f263098e65019f7.d new file mode 100644 index 0000000..14cecae --- /dev/null +++ b/target/release/build/rayon-core-9f263098e65019f7/build_script_build-9f263098e65019f7.d @@ -0,0 +1,5 @@ +/home/simon/.openclaw/workspace/rustVX/target/release/build/rayon-core-9f263098e65019f7/build_script_build-9f263098e65019f7.d: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-core-1.13.0/build.rs + +/home/simon/.openclaw/workspace/rustVX/target/release/build/rayon-core-9f263098e65019f7/build_script_build-9f263098e65019f7: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-core-1.13.0/build.rs + +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-core-1.13.0/build.rs: diff --git a/target/release/build/rayon-core-c59764294d684b6c/invoked.timestamp b/target/release/build/rayon-core-c59764294d684b6c/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/build/rayon-core-c59764294d684b6c/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/build/rayon-core-c59764294d684b6c/output b/target/release/build/rayon-core-c59764294d684b6c/output new file mode 100644 index 0000000..d15ba9a --- /dev/null +++ b/target/release/build/rayon-core-c59764294d684b6c/output @@ -0,0 +1 @@ +cargo:rerun-if-changed=build.rs diff --git a/target/release/build/rayon-core-c59764294d684b6c/root-output b/target/release/build/rayon-core-c59764294d684b6c/root-output new file mode 100644 index 0000000..f1aa997 --- /dev/null +++ b/target/release/build/rayon-core-c59764294d684b6c/root-output @@ -0,0 +1 @@ +/home/simon/.openclaw/workspace/rustVX/target/release/build/rayon-core-c59764294d684b6c/out \ No newline at end of file diff --git a/target/release/build/rayon-core-c59764294d684b6c/stderr b/target/release/build/rayon-core-c59764294d684b6c/stderr new file mode 100644 index 0000000..e69de29 diff --git a/target/release/build/serde-331725c5f4db8ec6/build-script-build b/target/release/build/serde-331725c5f4db8ec6/build-script-build new file mode 100755 index 0000000..5e0e8c0 Binary files /dev/null and b/target/release/build/serde-331725c5f4db8ec6/build-script-build differ diff --git a/target/release/build/serde-331725c5f4db8ec6/build_script_build-331725c5f4db8ec6 b/target/release/build/serde-331725c5f4db8ec6/build_script_build-331725c5f4db8ec6 new file mode 100755 index 0000000..5e0e8c0 Binary files /dev/null and b/target/release/build/serde-331725c5f4db8ec6/build_script_build-331725c5f4db8ec6 differ diff --git a/target/release/build/serde-331725c5f4db8ec6/build_script_build-331725c5f4db8ec6.d b/target/release/build/serde-331725c5f4db8ec6/build_script_build-331725c5f4db8ec6.d new file mode 100644 index 0000000..ced0210 --- /dev/null +++ b/target/release/build/serde-331725c5f4db8ec6/build_script_build-331725c5f4db8ec6.d @@ -0,0 +1,5 @@ +/home/simon/.openclaw/workspace/rustVX/target/release/build/serde-331725c5f4db8ec6/build_script_build-331725c5f4db8ec6.d: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.228/build.rs + +/home/simon/.openclaw/workspace/rustVX/target/release/build/serde-331725c5f4db8ec6/build_script_build-331725c5f4db8ec6: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.228/build.rs + +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.228/build.rs: diff --git a/target/release/build/serde-af0d85b33381362c/invoked.timestamp b/target/release/build/serde-af0d85b33381362c/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/build/serde-af0d85b33381362c/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/build/serde-af0d85b33381362c/out/private.rs b/target/release/build/serde-af0d85b33381362c/out/private.rs new file mode 100644 index 0000000..ed2927e --- /dev/null +++ b/target/release/build/serde-af0d85b33381362c/out/private.rs @@ -0,0 +1,6 @@ +#[doc(hidden)] +pub mod __private228 { + #[doc(hidden)] + pub use crate::private::*; +} +use serde_core::__private228 as serde_core_private; diff --git a/target/release/build/serde-af0d85b33381362c/output b/target/release/build/serde-af0d85b33381362c/output new file mode 100644 index 0000000..854cb53 --- /dev/null +++ b/target/release/build/serde-af0d85b33381362c/output @@ -0,0 +1,13 @@ +cargo:rerun-if-changed=build.rs +cargo:rustc-cfg=if_docsrs_then_no_serde_core +cargo:rustc-check-cfg=cfg(feature, values("result")) +cargo:rustc-check-cfg=cfg(if_docsrs_then_no_serde_core) +cargo:rustc-check-cfg=cfg(no_core_cstr) +cargo:rustc-check-cfg=cfg(no_core_error) +cargo:rustc-check-cfg=cfg(no_core_net) +cargo:rustc-check-cfg=cfg(no_core_num_saturating) +cargo:rustc-check-cfg=cfg(no_diagnostic_namespace) +cargo:rustc-check-cfg=cfg(no_serde_derive) +cargo:rustc-check-cfg=cfg(no_std_atomic) +cargo:rustc-check-cfg=cfg(no_std_atomic64) +cargo:rustc-check-cfg=cfg(no_target_has_atomic) diff --git a/target/release/build/serde-af0d85b33381362c/root-output b/target/release/build/serde-af0d85b33381362c/root-output new file mode 100644 index 0000000..c9db1e6 --- /dev/null +++ b/target/release/build/serde-af0d85b33381362c/root-output @@ -0,0 +1 @@ +/home/simon/.openclaw/workspace/rustVX/target/release/build/serde-af0d85b33381362c/out \ No newline at end of file diff --git a/target/release/build/serde-af0d85b33381362c/stderr b/target/release/build/serde-af0d85b33381362c/stderr new file mode 100644 index 0000000..e69de29 diff --git a/target/release/build/serde_core-9327041b313c07c5/invoked.timestamp b/target/release/build/serde_core-9327041b313c07c5/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/build/serde_core-9327041b313c07c5/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/build/serde_core-9327041b313c07c5/out/private.rs b/target/release/build/serde_core-9327041b313c07c5/out/private.rs new file mode 100644 index 0000000..08f232b --- /dev/null +++ b/target/release/build/serde_core-9327041b313c07c5/out/private.rs @@ -0,0 +1,5 @@ +#[doc(hidden)] +pub mod __private228 { + #[doc(hidden)] + pub use crate::private::*; +} diff --git a/target/release/build/serde_core-9327041b313c07c5/output b/target/release/build/serde_core-9327041b313c07c5/output new file mode 100644 index 0000000..98a6653 --- /dev/null +++ b/target/release/build/serde_core-9327041b313c07c5/output @@ -0,0 +1,11 @@ +cargo:rerun-if-changed=build.rs +cargo:rustc-check-cfg=cfg(if_docsrs_then_no_serde_core) +cargo:rustc-check-cfg=cfg(no_core_cstr) +cargo:rustc-check-cfg=cfg(no_core_error) +cargo:rustc-check-cfg=cfg(no_core_net) +cargo:rustc-check-cfg=cfg(no_core_num_saturating) +cargo:rustc-check-cfg=cfg(no_diagnostic_namespace) +cargo:rustc-check-cfg=cfg(no_serde_derive) +cargo:rustc-check-cfg=cfg(no_std_atomic) +cargo:rustc-check-cfg=cfg(no_std_atomic64) +cargo:rustc-check-cfg=cfg(no_target_has_atomic) diff --git a/target/release/build/serde_core-9327041b313c07c5/root-output b/target/release/build/serde_core-9327041b313c07c5/root-output new file mode 100644 index 0000000..f8831f2 --- /dev/null +++ b/target/release/build/serde_core-9327041b313c07c5/root-output @@ -0,0 +1 @@ +/home/simon/.openclaw/workspace/rustVX/target/release/build/serde_core-9327041b313c07c5/out \ No newline at end of file diff --git a/target/release/build/serde_core-9327041b313c07c5/stderr b/target/release/build/serde_core-9327041b313c07c5/stderr new file mode 100644 index 0000000..e69de29 diff --git a/target/release/build/serde_core-a118d614090ef10e/build-script-build b/target/release/build/serde_core-a118d614090ef10e/build-script-build new file mode 100755 index 0000000..5c94b22 Binary files /dev/null and b/target/release/build/serde_core-a118d614090ef10e/build-script-build differ diff --git a/target/release/build/serde_core-a118d614090ef10e/build_script_build-a118d614090ef10e b/target/release/build/serde_core-a118d614090ef10e/build_script_build-a118d614090ef10e new file mode 100755 index 0000000..5c94b22 Binary files /dev/null and b/target/release/build/serde_core-a118d614090ef10e/build_script_build-a118d614090ef10e differ diff --git a/target/release/build/serde_core-a118d614090ef10e/build_script_build-a118d614090ef10e.d b/target/release/build/serde_core-a118d614090ef10e/build_script_build-a118d614090ef10e.d new file mode 100644 index 0000000..74df5c9 --- /dev/null +++ b/target/release/build/serde_core-a118d614090ef10e/build_script_build-a118d614090ef10e.d @@ -0,0 +1,5 @@ +/home/simon/.openclaw/workspace/rustVX/target/release/build/serde_core-a118d614090ef10e/build_script_build-a118d614090ef10e.d: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/build.rs + +/home/simon/.openclaw/workspace/rustVX/target/release/build/serde_core-a118d614090ef10e/build_script_build-a118d614090ef10e: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/build.rs + +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/build.rs: diff --git a/target/release/build/serde_json-43ecbc11682a3cd0/invoked.timestamp b/target/release/build/serde_json-43ecbc11682a3cd0/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/build/serde_json-43ecbc11682a3cd0/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/build/serde_json-43ecbc11682a3cd0/output b/target/release/build/serde_json-43ecbc11682a3cd0/output new file mode 100644 index 0000000..3201077 --- /dev/null +++ b/target/release/build/serde_json-43ecbc11682a3cd0/output @@ -0,0 +1,3 @@ +cargo:rerun-if-changed=build.rs +cargo:rustc-check-cfg=cfg(fast_arithmetic, values("32", "64")) +cargo:rustc-cfg=fast_arithmetic="64" diff --git a/target/release/build/serde_json-43ecbc11682a3cd0/root-output b/target/release/build/serde_json-43ecbc11682a3cd0/root-output new file mode 100644 index 0000000..06acfa3 --- /dev/null +++ b/target/release/build/serde_json-43ecbc11682a3cd0/root-output @@ -0,0 +1 @@ +/home/simon/.openclaw/workspace/rustVX/target/release/build/serde_json-43ecbc11682a3cd0/out \ No newline at end of file diff --git a/target/release/build/serde_json-43ecbc11682a3cd0/stderr b/target/release/build/serde_json-43ecbc11682a3cd0/stderr new file mode 100644 index 0000000..e69de29 diff --git a/target/release/build/serde_json-c1f9c3dcffe62a42/build-script-build b/target/release/build/serde_json-c1f9c3dcffe62a42/build-script-build new file mode 100755 index 0000000..be3a0ab Binary files /dev/null and b/target/release/build/serde_json-c1f9c3dcffe62a42/build-script-build differ diff --git a/target/release/build/serde_json-c1f9c3dcffe62a42/build_script_build-c1f9c3dcffe62a42 b/target/release/build/serde_json-c1f9c3dcffe62a42/build_script_build-c1f9c3dcffe62a42 new file mode 100755 index 0000000..be3a0ab Binary files /dev/null and b/target/release/build/serde_json-c1f9c3dcffe62a42/build_script_build-c1f9c3dcffe62a42 differ diff --git a/target/release/build/serde_json-c1f9c3dcffe62a42/build_script_build-c1f9c3dcffe62a42.d b/target/release/build/serde_json-c1f9c3dcffe62a42/build_script_build-c1f9c3dcffe62a42.d new file mode 100644 index 0000000..11776a7 --- /dev/null +++ b/target/release/build/serde_json-c1f9c3dcffe62a42/build_script_build-c1f9c3dcffe62a42.d @@ -0,0 +1,5 @@ +/home/simon/.openclaw/workspace/rustVX/target/release/build/serde_json-c1f9c3dcffe62a42/build_script_build-c1f9c3dcffe62a42.d: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.149/build.rs + +/home/simon/.openclaw/workspace/rustVX/target/release/build/serde_json-c1f9c3dcffe62a42/build_script_build-c1f9c3dcffe62a42: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.149/build.rs + +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.149/build.rs: diff --git a/target/release/build/thiserror-8ad750852b6fccaf/build_script_build-8ad750852b6fccaf.d b/target/release/build/thiserror-8ad750852b6fccaf/build_script_build-8ad750852b6fccaf.d index 6110c30..4ec0d8a 100644 --- a/target/release/build/thiserror-8ad750852b6fccaf/build_script_build-8ad750852b6fccaf.d +++ b/target/release/build/thiserror-8ad750852b6fccaf/build_script_build-8ad750852b6fccaf.d @@ -1,5 +1,11 @@ +<<<<<<< HEAD +/home/simon/.openclaw/workspace/rustVX/target/release/build/thiserror-8ad750852b6fccaf/build_script_build-8ad750852b6fccaf.d: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/build.rs + +/home/simon/.openclaw/workspace/rustVX/target/release/build/thiserror-8ad750852b6fccaf/build_script_build-8ad750852b6fccaf: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/build.rs +======= /home/simon/.openclaw/workspace/rustvx/target/release/build/thiserror-8ad750852b6fccaf/build_script_build-8ad750852b6fccaf.d: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/build.rs /home/simon/.openclaw/workspace/rustvx/target/release/build/thiserror-8ad750852b6fccaf/build_script_build-8ad750852b6fccaf: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/build.rs +>>>>>>> origin/master /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/build.rs: diff --git a/target/release/build/thiserror-d4c9c354dea10a78/root-output b/target/release/build/thiserror-d4c9c354dea10a78/root-output index e871498..1e594d7 100644 --- a/target/release/build/thiserror-d4c9c354dea10a78/root-output +++ b/target/release/build/thiserror-d4c9c354dea10a78/root-output @@ -1 +1,5 @@ -/home/simon/.openclaw/workspace/rustvx/target/release/build/thiserror-d4c9c354dea10a78/out \ No newline at end of file +<<<<<<< HEAD +/home/simon/.openclaw/workspace/rustVX/target/release/build/thiserror-d4c9c354dea10a78/out +======= +/home/simon/.openclaw/workspace/rustvx/target/release/build/thiserror-d4c9c354dea10a78/out +>>>>>>> origin/master diff --git a/target/release/build/zerocopy-1544feba59a90042/invoked.timestamp b/target/release/build/zerocopy-1544feba59a90042/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/build/zerocopy-1544feba59a90042/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/build/zerocopy-1544feba59a90042/output b/target/release/build/zerocopy-1544feba59a90042/output new file mode 100644 index 0000000..deda5f6 --- /dev/null +++ b/target/release/build/zerocopy-1544feba59a90042/output @@ -0,0 +1,21 @@ +cargo:rerun-if-changed=build.rs +cargo:rerun-if-changed=Cargo.toml +cargo:rustc-check-cfg=cfg(no_zerocopy_simd_x86_avx12_1_89_0) +cargo:rustc-check-cfg=cfg(rust, values("1.89.0")) +cargo:rustc-check-cfg=cfg(no_zerocopy_core_error_1_81_0) +cargo:rustc-check-cfg=cfg(rust, values("1.81.0")) +cargo:rustc-check-cfg=cfg(no_zerocopy_diagnostic_on_unimplemented_1_78_0) +cargo:rustc-check-cfg=cfg(rust, values("1.78.0")) +cargo:rustc-check-cfg=cfg(no_zerocopy_generic_bounds_in_const_fn_1_61_0) +cargo:rustc-check-cfg=cfg(rust, values("1.61.0")) +cargo:rustc-check-cfg=cfg(no_zerocopy_target_has_atomics_1_60_0) +cargo:rustc-check-cfg=cfg(rust, values("1.60.0")) +cargo:rustc-check-cfg=cfg(no_zerocopy_aarch64_simd_1_59_0) +cargo:rustc-check-cfg=cfg(rust, values("1.59.0")) +cargo:rustc-check-cfg=cfg(no_zerocopy_panic_in_const_and_vec_try_reserve_1_57_0) +cargo:rustc-check-cfg=cfg(rust, values("1.57.0")) +cargo:rustc-check-cfg=cfg(doc_cfg) +cargo:rustc-check-cfg=cfg(kani) +cargo:rustc-check-cfg=cfg(__ZEROCOPY_INTERNAL_USE_ONLY_NIGHTLY_FEATURES_IN_TESTS) +cargo:rustc-check-cfg=cfg(__ZEROCOPY_INTERNAL_USE_ONLY_DEV_MODE) +cargo:rustc-check-cfg=cfg(coverage_nightly) diff --git a/target/release/build/zerocopy-1544feba59a90042/root-output b/target/release/build/zerocopy-1544feba59a90042/root-output new file mode 100644 index 0000000..8b6c2d2 --- /dev/null +++ b/target/release/build/zerocopy-1544feba59a90042/root-output @@ -0,0 +1 @@ +/home/simon/.openclaw/workspace/rustVX/target/release/build/zerocopy-1544feba59a90042/out \ No newline at end of file diff --git a/target/release/build/zerocopy-1544feba59a90042/stderr b/target/release/build/zerocopy-1544feba59a90042/stderr new file mode 100644 index 0000000..e69de29 diff --git a/target/release/build/zerocopy-5777f4c962c1b0bb/build-script-build b/target/release/build/zerocopy-5777f4c962c1b0bb/build-script-build new file mode 100755 index 0000000..2813cd5 Binary files /dev/null and b/target/release/build/zerocopy-5777f4c962c1b0bb/build-script-build differ diff --git a/target/release/build/zerocopy-5777f4c962c1b0bb/build_script_build-5777f4c962c1b0bb b/target/release/build/zerocopy-5777f4c962c1b0bb/build_script_build-5777f4c962c1b0bb new file mode 100755 index 0000000..2813cd5 Binary files /dev/null and b/target/release/build/zerocopy-5777f4c962c1b0bb/build_script_build-5777f4c962c1b0bb differ diff --git a/target/release/build/zerocopy-5777f4c962c1b0bb/build_script_build-5777f4c962c1b0bb.d b/target/release/build/zerocopy-5777f4c962c1b0bb/build_script_build-5777f4c962c1b0bb.d new file mode 100644 index 0000000..f2796fe --- /dev/null +++ b/target/release/build/zerocopy-5777f4c962c1b0bb/build_script_build-5777f4c962c1b0bb.d @@ -0,0 +1,5 @@ +/home/simon/.openclaw/workspace/rustVX/target/release/build/zerocopy-5777f4c962c1b0bb/build_script_build-5777f4c962c1b0bb.d: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/build.rs + +/home/simon/.openclaw/workspace/rustVX/target/release/build/zerocopy-5777f4c962c1b0bb/build_script_build-5777f4c962c1b0bb: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/build.rs + +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/build.rs: diff --git a/target/release/build/zmij-6b72ac5b6722cab2/build-script-build b/target/release/build/zmij-6b72ac5b6722cab2/build-script-build new file mode 100755 index 0000000..a22648f Binary files /dev/null and b/target/release/build/zmij-6b72ac5b6722cab2/build-script-build differ diff --git a/target/release/build/zmij-6b72ac5b6722cab2/build_script_build-6b72ac5b6722cab2 b/target/release/build/zmij-6b72ac5b6722cab2/build_script_build-6b72ac5b6722cab2 new file mode 100755 index 0000000..a22648f Binary files /dev/null and b/target/release/build/zmij-6b72ac5b6722cab2/build_script_build-6b72ac5b6722cab2 differ diff --git a/target/release/build/zmij-6b72ac5b6722cab2/build_script_build-6b72ac5b6722cab2.d b/target/release/build/zmij-6b72ac5b6722cab2/build_script_build-6b72ac5b6722cab2.d new file mode 100644 index 0000000..d6372dc --- /dev/null +++ b/target/release/build/zmij-6b72ac5b6722cab2/build_script_build-6b72ac5b6722cab2.d @@ -0,0 +1,5 @@ +/home/simon/.openclaw/workspace/rustVX/target/release/build/zmij-6b72ac5b6722cab2/build_script_build-6b72ac5b6722cab2.d: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zmij-1.0.21/build.rs + +/home/simon/.openclaw/workspace/rustVX/target/release/build/zmij-6b72ac5b6722cab2/build_script_build-6b72ac5b6722cab2: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zmij-1.0.21/build.rs + +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zmij-1.0.21/build.rs: diff --git a/target/release/build/zmij-851c18a259b7ecf8/invoked.timestamp b/target/release/build/zmij-851c18a259b7ecf8/invoked.timestamp new file mode 100644 index 0000000..e00328d --- /dev/null +++ b/target/release/build/zmij-851c18a259b7ecf8/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/target/release/build/zmij-851c18a259b7ecf8/output b/target/release/build/zmij-851c18a259b7ecf8/output new file mode 100644 index 0000000..c99f958 --- /dev/null +++ b/target/release/build/zmij-851c18a259b7ecf8/output @@ -0,0 +1,3 @@ +cargo:rerun-if-changed=build.rs +cargo:rustc-check-cfg=cfg(exhaustive) +cargo:rustc-check-cfg=cfg(zmij_no_select_unpredictable) diff --git a/target/release/build/zmij-851c18a259b7ecf8/root-output b/target/release/build/zmij-851c18a259b7ecf8/root-output new file mode 100644 index 0000000..ce618ee --- /dev/null +++ b/target/release/build/zmij-851c18a259b7ecf8/root-output @@ -0,0 +1 @@ +/home/simon/.openclaw/workspace/rustVX/target/release/build/zmij-851c18a259b7ecf8/out \ No newline at end of file diff --git a/target/release/build/zmij-851c18a259b7ecf8/stderr b/target/release/build/zmij-851c18a259b7ecf8/stderr new file mode 100644 index 0000000..e69de29 diff --git a/target/release/deps/anes-1c4d1373d9e988af.d b/target/release/deps/anes-1c4d1373d9e988af.d new file mode 100644 index 0000000..9b39bcc --- /dev/null +++ b/target/release/deps/anes-1c4d1373d9e988af.d @@ -0,0 +1,14 @@ +/home/simon/.openclaw/workspace/rustVX/target/release/deps/anes-1c4d1373d9e988af.d: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anes-0.1.6/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anes-0.1.6/src/macros.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anes-0.1.6/src/sequences.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anes-0.1.6/src/sequences/attribute.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anes-0.1.6/src/sequences/buffer.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anes-0.1.6/src/sequences/color.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anes-0.1.6/src/sequences/cursor.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anes-0.1.6/src/sequences/terminal.rs + +/home/simon/.openclaw/workspace/rustVX/target/release/deps/libanes-1c4d1373d9e988af.rlib: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anes-0.1.6/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anes-0.1.6/src/macros.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anes-0.1.6/src/sequences.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anes-0.1.6/src/sequences/attribute.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anes-0.1.6/src/sequences/buffer.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anes-0.1.6/src/sequences/color.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anes-0.1.6/src/sequences/cursor.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anes-0.1.6/src/sequences/terminal.rs + +/home/simon/.openclaw/workspace/rustVX/target/release/deps/libanes-1c4d1373d9e988af.rmeta: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anes-0.1.6/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anes-0.1.6/src/macros.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anes-0.1.6/src/sequences.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anes-0.1.6/src/sequences/attribute.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anes-0.1.6/src/sequences/buffer.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anes-0.1.6/src/sequences/color.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anes-0.1.6/src/sequences/cursor.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anes-0.1.6/src/sequences/terminal.rs + +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anes-0.1.6/src/lib.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anes-0.1.6/src/macros.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anes-0.1.6/src/sequences.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anes-0.1.6/src/sequences/attribute.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anes-0.1.6/src/sequences/buffer.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anes-0.1.6/src/sequences/color.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anes-0.1.6/src/sequences/cursor.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anes-0.1.6/src/sequences/terminal.rs: diff --git a/target/release/deps/anstyle-1335201cfe2bdfb9.d b/target/release/deps/anstyle-1335201cfe2bdfb9.d new file mode 100644 index 0000000..f15bffe --- /dev/null +++ b/target/release/deps/anstyle-1335201cfe2bdfb9.d @@ -0,0 +1,12 @@ +/home/simon/.openclaw/workspace/rustVX/target/release/deps/anstyle-1335201cfe2bdfb9.d: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstyle-1.0.14/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstyle-1.0.14/src/macros.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstyle-1.0.14/src/color.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstyle-1.0.14/src/effect.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstyle-1.0.14/src/reset.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstyle-1.0.14/src/style.rs + +/home/simon/.openclaw/workspace/rustVX/target/release/deps/libanstyle-1335201cfe2bdfb9.rlib: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstyle-1.0.14/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstyle-1.0.14/src/macros.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstyle-1.0.14/src/color.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstyle-1.0.14/src/effect.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstyle-1.0.14/src/reset.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstyle-1.0.14/src/style.rs + +/home/simon/.openclaw/workspace/rustVX/target/release/deps/libanstyle-1335201cfe2bdfb9.rmeta: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstyle-1.0.14/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstyle-1.0.14/src/macros.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstyle-1.0.14/src/color.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstyle-1.0.14/src/effect.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstyle-1.0.14/src/reset.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstyle-1.0.14/src/style.rs + +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstyle-1.0.14/src/lib.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstyle-1.0.14/src/macros.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstyle-1.0.14/src/color.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstyle-1.0.14/src/effect.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstyle-1.0.14/src/reset.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/anstyle-1.0.14/src/style.rs: diff --git a/target/release/deps/arithmetic_tests-e2c72222a53173f9 b/target/release/deps/arithmetic_tests-e2c72222a53173f9 new file mode 100755 index 0000000..089fa67 Binary files /dev/null and b/target/release/deps/arithmetic_tests-e2c72222a53173f9 differ diff --git a/target/release/deps/arithmetic_tests-e2c72222a53173f9.d b/target/release/deps/arithmetic_tests-e2c72222a53173f9.d new file mode 100644 index 0000000..b858939 --- /dev/null +++ b/target/release/deps/arithmetic_tests-e2c72222a53173f9.d @@ -0,0 +1,5 @@ +/home/simon/.openclaw/workspace/rustVX/target/release/deps/arithmetic_tests-e2c72222a53173f9.d: openvx-vision/tests/arithmetic_tests.rs + +/home/simon/.openclaw/workspace/rustVX/target/release/deps/arithmetic_tests-e2c72222a53173f9: openvx-vision/tests/arithmetic_tests.rs + +openvx-vision/tests/arithmetic_tests.rs: diff --git a/target/release/deps/assert_approx_eq-52115f18d0a131bd.d b/target/release/deps/assert_approx_eq-52115f18d0a131bd.d new file mode 100644 index 0000000..f9120ac --- /dev/null +++ b/target/release/deps/assert_approx_eq-52115f18d0a131bd.d @@ -0,0 +1,7 @@ +/home/simon/.openclaw/workspace/rustVX/target/release/deps/assert_approx_eq-52115f18d0a131bd.d: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/assert_approx_eq-1.1.0/src/lib.rs + +/home/simon/.openclaw/workspace/rustVX/target/release/deps/libassert_approx_eq-52115f18d0a131bd.rlib: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/assert_approx_eq-1.1.0/src/lib.rs + +/home/simon/.openclaw/workspace/rustVX/target/release/deps/libassert_approx_eq-52115f18d0a131bd.rmeta: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/assert_approx_eq-1.1.0/src/lib.rs + +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/assert_approx_eq-1.1.0/src/lib.rs: diff --git a/target/release/deps/autocfg-da071fec8bb21226.d b/target/release/deps/autocfg-da071fec8bb21226.d new file mode 100644 index 0000000..10c0209 --- /dev/null +++ b/target/release/deps/autocfg-da071fec8bb21226.d @@ -0,0 +1,10 @@ +/home/simon/.openclaw/workspace/rustVX/target/release/deps/autocfg-da071fec8bb21226.d: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/autocfg-1.5.0/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/autocfg-1.5.0/src/error.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/autocfg-1.5.0/src/rustc.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/autocfg-1.5.0/src/version.rs + +/home/simon/.openclaw/workspace/rustVX/target/release/deps/libautocfg-da071fec8bb21226.rlib: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/autocfg-1.5.0/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/autocfg-1.5.0/src/error.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/autocfg-1.5.0/src/rustc.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/autocfg-1.5.0/src/version.rs + +/home/simon/.openclaw/workspace/rustVX/target/release/deps/libautocfg-da071fec8bb21226.rmeta: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/autocfg-1.5.0/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/autocfg-1.5.0/src/error.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/autocfg-1.5.0/src/rustc.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/autocfg-1.5.0/src/version.rs + +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/autocfg-1.5.0/src/lib.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/autocfg-1.5.0/src/error.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/autocfg-1.5.0/src/rustc.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/autocfg-1.5.0/src/version.rs: diff --git a/target/release/deps/cast-9109d48c055aef1b.d b/target/release/deps/cast-9109d48c055aef1b.d new file mode 100644 index 0000000..b65844d --- /dev/null +++ b/target/release/deps/cast-9109d48c055aef1b.d @@ -0,0 +1,7 @@ +/home/simon/.openclaw/workspace/rustVX/target/release/deps/cast-9109d48c055aef1b.d: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cast-0.3.0/src/lib.rs + +/home/simon/.openclaw/workspace/rustVX/target/release/deps/libcast-9109d48c055aef1b.rlib: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cast-0.3.0/src/lib.rs + +/home/simon/.openclaw/workspace/rustVX/target/release/deps/libcast-9109d48c055aef1b.rmeta: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cast-0.3.0/src/lib.rs + +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cast-0.3.0/src/lib.rs: diff --git a/target/release/deps/cfg_if-d93cbb7a0fc64597.d b/target/release/deps/cfg_if-d93cbb7a0fc64597.d index 404c4fe..1c1c493 100644 --- a/target/release/deps/cfg_if-d93cbb7a0fc64597.d +++ b/target/release/deps/cfg_if-d93cbb7a0fc64597.d @@ -1,7 +1,15 @@ +<<<<<<< HEAD +/home/simon/.openclaw/workspace/rustVX/target/release/deps/cfg_if-d93cbb7a0fc64597.d: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cfg-if-1.0.4/src/lib.rs + +/home/simon/.openclaw/workspace/rustVX/target/release/deps/libcfg_if-d93cbb7a0fc64597.rlib: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cfg-if-1.0.4/src/lib.rs + +/home/simon/.openclaw/workspace/rustVX/target/release/deps/libcfg_if-d93cbb7a0fc64597.rmeta: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cfg-if-1.0.4/src/lib.rs +======= /home/simon/.openclaw/workspace/rustvx/target/release/deps/cfg_if-d93cbb7a0fc64597.d: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cfg-if-1.0.4/src/lib.rs /home/simon/.openclaw/workspace/rustvx/target/release/deps/libcfg_if-d93cbb7a0fc64597.rlib: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cfg-if-1.0.4/src/lib.rs /home/simon/.openclaw/workspace/rustvx/target/release/deps/libcfg_if-d93cbb7a0fc64597.rmeta: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cfg-if-1.0.4/src/lib.rs +>>>>>>> origin/master /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/cfg-if-1.0.4/src/lib.rs: diff --git a/target/release/deps/ciborium-9a2c0196e3efb194.d b/target/release/deps/ciborium-9a2c0196e3efb194.d new file mode 100644 index 0000000..512923a --- /dev/null +++ b/target/release/deps/ciborium-9a2c0196e3efb194.d @@ -0,0 +1,18 @@ +/home/simon/.openclaw/workspace/rustVX/target/release/deps/ciborium-9a2c0196e3efb194.d: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ciborium-0.2.2/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ciborium-0.2.2/src/de/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ciborium-0.2.2/src/de/error.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ciborium-0.2.2/src/ser/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ciborium-0.2.2/src/ser/error.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ciborium-0.2.2/src/tag.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ciborium-0.2.2/src/value/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ciborium-0.2.2/src/value/canonical.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ciborium-0.2.2/src/value/integer.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ciborium-0.2.2/src/value/de.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ciborium-0.2.2/src/value/error.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ciborium-0.2.2/src/value/ser.rs + +/home/simon/.openclaw/workspace/rustVX/target/release/deps/libciborium-9a2c0196e3efb194.rlib: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ciborium-0.2.2/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ciborium-0.2.2/src/de/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ciborium-0.2.2/src/de/error.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ciborium-0.2.2/src/ser/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ciborium-0.2.2/src/ser/error.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ciborium-0.2.2/src/tag.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ciborium-0.2.2/src/value/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ciborium-0.2.2/src/value/canonical.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ciborium-0.2.2/src/value/integer.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ciborium-0.2.2/src/value/de.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ciborium-0.2.2/src/value/error.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ciborium-0.2.2/src/value/ser.rs + +/home/simon/.openclaw/workspace/rustVX/target/release/deps/libciborium-9a2c0196e3efb194.rmeta: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ciborium-0.2.2/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ciborium-0.2.2/src/de/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ciborium-0.2.2/src/de/error.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ciborium-0.2.2/src/ser/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ciborium-0.2.2/src/ser/error.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ciborium-0.2.2/src/tag.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ciborium-0.2.2/src/value/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ciborium-0.2.2/src/value/canonical.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ciborium-0.2.2/src/value/integer.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ciborium-0.2.2/src/value/de.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ciborium-0.2.2/src/value/error.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ciborium-0.2.2/src/value/ser.rs + +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ciborium-0.2.2/src/lib.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ciborium-0.2.2/src/de/mod.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ciborium-0.2.2/src/de/error.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ciborium-0.2.2/src/ser/mod.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ciborium-0.2.2/src/ser/error.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ciborium-0.2.2/src/tag.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ciborium-0.2.2/src/value/mod.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ciborium-0.2.2/src/value/canonical.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ciborium-0.2.2/src/value/integer.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ciborium-0.2.2/src/value/de.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ciborium-0.2.2/src/value/error.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ciborium-0.2.2/src/value/ser.rs: diff --git a/target/release/deps/ciborium_io-7e4258cdc22c9b86.d b/target/release/deps/ciborium_io-7e4258cdc22c9b86.d new file mode 100644 index 0000000..3f1d6ae --- /dev/null +++ b/target/release/deps/ciborium_io-7e4258cdc22c9b86.d @@ -0,0 +1,7 @@ +/home/simon/.openclaw/workspace/rustVX/target/release/deps/ciborium_io-7e4258cdc22c9b86.d: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ciborium-io-0.2.2/src/lib.rs + +/home/simon/.openclaw/workspace/rustVX/target/release/deps/libciborium_io-7e4258cdc22c9b86.rlib: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ciborium-io-0.2.2/src/lib.rs + +/home/simon/.openclaw/workspace/rustVX/target/release/deps/libciborium_io-7e4258cdc22c9b86.rmeta: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ciborium-io-0.2.2/src/lib.rs + +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ciborium-io-0.2.2/src/lib.rs: diff --git a/target/release/deps/ciborium_ll-6a78da664f02b45f.d b/target/release/deps/ciborium_ll-6a78da664f02b45f.d new file mode 100644 index 0000000..a383373 --- /dev/null +++ b/target/release/deps/ciborium_ll-6a78da664f02b45f.d @@ -0,0 +1,11 @@ +/home/simon/.openclaw/workspace/rustVX/target/release/deps/ciborium_ll-6a78da664f02b45f.d: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ciborium-ll-0.2.2/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ciborium-ll-0.2.2/src/dec.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ciborium-ll-0.2.2/src/enc.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ciborium-ll-0.2.2/src/hdr.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ciborium-ll-0.2.2/src/seg.rs + +/home/simon/.openclaw/workspace/rustVX/target/release/deps/libciborium_ll-6a78da664f02b45f.rlib: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ciborium-ll-0.2.2/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ciborium-ll-0.2.2/src/dec.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ciborium-ll-0.2.2/src/enc.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ciborium-ll-0.2.2/src/hdr.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ciborium-ll-0.2.2/src/seg.rs + +/home/simon/.openclaw/workspace/rustVX/target/release/deps/libciborium_ll-6a78da664f02b45f.rmeta: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ciborium-ll-0.2.2/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ciborium-ll-0.2.2/src/dec.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ciborium-ll-0.2.2/src/enc.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ciborium-ll-0.2.2/src/hdr.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ciborium-ll-0.2.2/src/seg.rs + +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ciborium-ll-0.2.2/src/lib.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ciborium-ll-0.2.2/src/dec.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ciborium-ll-0.2.2/src/enc.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ciborium-ll-0.2.2/src/hdr.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/ciborium-ll-0.2.2/src/seg.rs: diff --git a/target/release/deps/clap-1168baf059466741.d b/target/release/deps/clap-1168baf059466741.d new file mode 100644 index 0000000..32d4aa0 --- /dev/null +++ b/target/release/deps/clap-1168baf059466741.d @@ -0,0 +1,9 @@ +/home/simon/.openclaw/workspace/rustVX/target/release/deps/clap-1168baf059466741.d: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.6.0/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.6.0/src/../examples/demo.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.6.0/src/../examples/demo.md + +/home/simon/.openclaw/workspace/rustVX/target/release/deps/libclap-1168baf059466741.rlib: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.6.0/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.6.0/src/../examples/demo.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.6.0/src/../examples/demo.md + +/home/simon/.openclaw/workspace/rustVX/target/release/deps/libclap-1168baf059466741.rmeta: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.6.0/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.6.0/src/../examples/demo.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.6.0/src/../examples/demo.md + +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.6.0/src/lib.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.6.0/src/../examples/demo.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap-4.6.0/src/../examples/demo.md: diff --git a/target/release/deps/clap_builder-c13b905e362998a2.d b/target/release/deps/clap_builder-c13b905e362998a2.d new file mode 100644 index 0000000..820dd7a --- /dev/null +++ b/target/release/deps/clap_builder-c13b905e362998a2.d @@ -0,0 +1,56 @@ +/home/simon/.openclaw/workspace/rustVX/target/release/deps/clap_builder-c13b905e362998a2.d: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/macros.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/derive.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/builder/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/builder/action.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/builder/app_settings.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/builder/arg.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/builder/arg_group.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/builder/arg_predicate.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/builder/arg_settings.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/builder/command.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/builder/ext.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/builder/os_str.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/builder/possible_value.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/builder/range.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/builder/resettable.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/builder/str.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/builder/styled_str.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/builder/value_hint.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/builder/value_parser.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/builder/styling.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/error/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/error/format.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/error/kind.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/parser/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/parser/arg_matcher.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/parser/error.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/parser/matches/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/parser/matches/arg_matches.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/parser/matches/matched_arg.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/parser/matches/value_source.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/parser/parser.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/parser/validator.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/parser/features/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/parser/features/suggestions.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/mkeymap.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/output/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/output/help.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/output/usage.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/output/fmt.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/util/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/util/any_value.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/util/escape.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/util/flat_map.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/util/flat_set.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/util/graph.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/util/id.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/util/str_to_bool.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/util/color.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/../README.md + +/home/simon/.openclaw/workspace/rustVX/target/release/deps/libclap_builder-c13b905e362998a2.rlib: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/macros.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/derive.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/builder/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/builder/action.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/builder/app_settings.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/builder/arg.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/builder/arg_group.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/builder/arg_predicate.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/builder/arg_settings.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/builder/command.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/builder/ext.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/builder/os_str.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/builder/possible_value.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/builder/range.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/builder/resettable.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/builder/str.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/builder/styled_str.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/builder/value_hint.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/builder/value_parser.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/builder/styling.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/error/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/error/format.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/error/kind.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/parser/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/parser/arg_matcher.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/parser/error.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/parser/matches/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/parser/matches/arg_matches.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/parser/matches/matched_arg.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/parser/matches/value_source.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/parser/parser.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/parser/validator.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/parser/features/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/parser/features/suggestions.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/mkeymap.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/output/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/output/help.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/output/usage.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/output/fmt.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/util/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/util/any_value.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/util/escape.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/util/flat_map.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/util/flat_set.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/util/graph.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/util/id.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/util/str_to_bool.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/util/color.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/../README.md + +/home/simon/.openclaw/workspace/rustVX/target/release/deps/libclap_builder-c13b905e362998a2.rmeta: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/macros.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/derive.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/builder/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/builder/action.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/builder/app_settings.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/builder/arg.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/builder/arg_group.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/builder/arg_predicate.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/builder/arg_settings.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/builder/command.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/builder/ext.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/builder/os_str.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/builder/possible_value.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/builder/range.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/builder/resettable.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/builder/str.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/builder/styled_str.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/builder/value_hint.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/builder/value_parser.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/builder/styling.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/error/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/error/format.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/error/kind.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/parser/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/parser/arg_matcher.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/parser/error.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/parser/matches/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/parser/matches/arg_matches.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/parser/matches/matched_arg.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/parser/matches/value_source.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/parser/parser.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/parser/validator.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/parser/features/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/parser/features/suggestions.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/mkeymap.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/output/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/output/help.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/output/usage.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/output/fmt.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/util/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/util/any_value.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/util/escape.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/util/flat_map.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/util/flat_set.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/util/graph.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/util/id.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/util/str_to_bool.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/util/color.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/../README.md + +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/lib.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/macros.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/derive.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/builder/mod.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/builder/action.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/builder/app_settings.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/builder/arg.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/builder/arg_group.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/builder/arg_predicate.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/builder/arg_settings.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/builder/command.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/builder/ext.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/builder/os_str.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/builder/possible_value.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/builder/range.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/builder/resettable.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/builder/str.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/builder/styled_str.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/builder/value_hint.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/builder/value_parser.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/builder/styling.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/error/mod.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/error/format.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/error/kind.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/parser/mod.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/parser/arg_matcher.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/parser/error.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/parser/matches/mod.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/parser/matches/arg_matches.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/parser/matches/matched_arg.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/parser/matches/value_source.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/parser/parser.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/parser/validator.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/parser/features/mod.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/parser/features/suggestions.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/mkeymap.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/output/mod.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/output/help.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/output/usage.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/output/fmt.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/util/mod.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/util/any_value.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/util/escape.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/util/flat_map.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/util/flat_set.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/util/graph.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/util/id.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/util/str_to_bool.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/util/color.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_builder-4.6.0/src/../README.md: diff --git a/target/release/deps/clap_lex-e91b14870d354d9f.d b/target/release/deps/clap_lex-e91b14870d354d9f.d new file mode 100644 index 0000000..8c4f2de --- /dev/null +++ b/target/release/deps/clap_lex-e91b14870d354d9f.d @@ -0,0 +1,8 @@ +/home/simon/.openclaw/workspace/rustVX/target/release/deps/clap_lex-e91b14870d354d9f.d: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_lex-1.1.0/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_lex-1.1.0/src/ext.rs + +/home/simon/.openclaw/workspace/rustVX/target/release/deps/libclap_lex-e91b14870d354d9f.rlib: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_lex-1.1.0/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_lex-1.1.0/src/ext.rs + +/home/simon/.openclaw/workspace/rustVX/target/release/deps/libclap_lex-e91b14870d354d9f.rmeta: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_lex-1.1.0/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_lex-1.1.0/src/ext.rs + +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_lex-1.1.0/src/lib.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/clap_lex-1.1.0/src/ext.rs: diff --git a/target/release/deps/color_tests-372b97db8cb34911 b/target/release/deps/color_tests-372b97db8cb34911 new file mode 100755 index 0000000..e85f610 Binary files /dev/null and b/target/release/deps/color_tests-372b97db8cb34911 differ diff --git a/target/release/deps/color_tests-372b97db8cb34911.d b/target/release/deps/color_tests-372b97db8cb34911.d new file mode 100644 index 0000000..33fb9c7 --- /dev/null +++ b/target/release/deps/color_tests-372b97db8cb34911.d @@ -0,0 +1,5 @@ +/home/simon/.openclaw/workspace/rustVX/target/release/deps/color_tests-372b97db8cb34911.d: openvx-vision/tests/color_tests.rs + +/home/simon/.openclaw/workspace/rustVX/target/release/deps/color_tests-372b97db8cb34911: openvx-vision/tests/color_tests.rs + +openvx-vision/tests/color_tests.rs: diff --git a/target/release/deps/criterion-448e3a7c5d1b8498.d b/target/release/deps/criterion-448e3a7c5d1b8498.d new file mode 100644 index 0000000..16e05e8 --- /dev/null +++ b/target/release/deps/criterion-448e3a7c5d1b8498.d @@ -0,0 +1,67 @@ +/home/simon/.openclaw/workspace/rustVX/target/release/deps/criterion-448e3a7c5d1b8498.d: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/macros_private.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/analysis/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/analysis/compare.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/benchmark.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/benchmark_group.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/async_executor.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/bencher.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/connection.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/error.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/estimate.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/format.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/fs.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/html/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/kde.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/macros.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/measurement.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/plot/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/plot/gnuplot_backend/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/plot/gnuplot_backend/distributions.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/plot/gnuplot_backend/iteration_times.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/plot/gnuplot_backend/pdf.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/plot/gnuplot_backend/regression.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/plot/gnuplot_backend/summary.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/plot/gnuplot_backend/t_test.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/plot/plotters_backend/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/plot/plotters_backend/distributions.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/plot/plotters_backend/iteration_times.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/plot/plotters_backend/pdf.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/plot/plotters_backend/regression.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/plot/plotters_backend/summary.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/plot/plotters_backend/t_test.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/profiler.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/report.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/routine.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/stats/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/stats/bivariate/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/stats/bivariate/bootstrap.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/stats/bivariate/regression.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/stats/bivariate/resamples.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/stats/tuple.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/stats/univariate/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/stats/univariate/bootstrap.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/stats/univariate/percentiles.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/stats/univariate/resamples.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/stats/univariate/sample.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/stats/univariate/kde/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/stats/univariate/kde/kernel.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/stats/univariate/mixed.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/stats/univariate/outliers/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/stats/univariate/outliers/tukey.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/stats/float.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/stats/rand_util.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/html/report_link.html.tt /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/html/index.html.tt /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/html/benchmark_report.html.tt /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/html/summary_report.html.tt + +/home/simon/.openclaw/workspace/rustVX/target/release/deps/libcriterion-448e3a7c5d1b8498.rlib: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/macros_private.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/analysis/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/analysis/compare.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/benchmark.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/benchmark_group.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/async_executor.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/bencher.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/connection.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/error.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/estimate.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/format.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/fs.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/html/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/kde.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/macros.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/measurement.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/plot/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/plot/gnuplot_backend/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/plot/gnuplot_backend/distributions.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/plot/gnuplot_backend/iteration_times.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/plot/gnuplot_backend/pdf.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/plot/gnuplot_backend/regression.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/plot/gnuplot_backend/summary.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/plot/gnuplot_backend/t_test.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/plot/plotters_backend/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/plot/plotters_backend/distributions.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/plot/plotters_backend/iteration_times.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/plot/plotters_backend/pdf.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/plot/plotters_backend/regression.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/plot/plotters_backend/summary.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/plot/plotters_backend/t_test.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/profiler.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/report.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/routine.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/stats/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/stats/bivariate/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/stats/bivariate/bootstrap.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/stats/bivariate/regression.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/stats/bivariate/resamples.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/stats/tuple.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/stats/univariate/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/stats/univariate/bootstrap.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/stats/univariate/percentiles.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/stats/univariate/resamples.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/stats/univariate/sample.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/stats/univariate/kde/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/stats/univariate/kde/kernel.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/stats/univariate/mixed.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/stats/univariate/outliers/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/stats/univariate/outliers/tukey.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/stats/float.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/stats/rand_util.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/html/report_link.html.tt /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/html/index.html.tt /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/html/benchmark_report.html.tt /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/html/summary_report.html.tt + +/home/simon/.openclaw/workspace/rustVX/target/release/deps/libcriterion-448e3a7c5d1b8498.rmeta: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/macros_private.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/analysis/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/analysis/compare.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/benchmark.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/benchmark_group.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/async_executor.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/bencher.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/connection.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/error.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/estimate.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/format.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/fs.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/html/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/kde.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/macros.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/measurement.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/plot/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/plot/gnuplot_backend/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/plot/gnuplot_backend/distributions.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/plot/gnuplot_backend/iteration_times.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/plot/gnuplot_backend/pdf.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/plot/gnuplot_backend/regression.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/plot/gnuplot_backend/summary.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/plot/gnuplot_backend/t_test.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/plot/plotters_backend/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/plot/plotters_backend/distributions.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/plot/plotters_backend/iteration_times.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/plot/plotters_backend/pdf.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/plot/plotters_backend/regression.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/plot/plotters_backend/summary.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/plot/plotters_backend/t_test.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/profiler.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/report.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/routine.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/stats/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/stats/bivariate/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/stats/bivariate/bootstrap.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/stats/bivariate/regression.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/stats/bivariate/resamples.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/stats/tuple.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/stats/univariate/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/stats/univariate/bootstrap.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/stats/univariate/percentiles.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/stats/univariate/resamples.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/stats/univariate/sample.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/stats/univariate/kde/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/stats/univariate/kde/kernel.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/stats/univariate/mixed.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/stats/univariate/outliers/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/stats/univariate/outliers/tukey.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/stats/float.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/stats/rand_util.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/html/report_link.html.tt /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/html/index.html.tt /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/html/benchmark_report.html.tt /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/html/summary_report.html.tt + +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/lib.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/macros_private.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/analysis/mod.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/analysis/compare.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/benchmark.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/benchmark_group.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/async_executor.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/bencher.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/connection.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/error.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/estimate.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/format.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/fs.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/html/mod.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/kde.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/macros.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/measurement.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/plot/mod.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/plot/gnuplot_backend/mod.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/plot/gnuplot_backend/distributions.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/plot/gnuplot_backend/iteration_times.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/plot/gnuplot_backend/pdf.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/plot/gnuplot_backend/regression.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/plot/gnuplot_backend/summary.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/plot/gnuplot_backend/t_test.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/plot/plotters_backend/mod.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/plot/plotters_backend/distributions.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/plot/plotters_backend/iteration_times.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/plot/plotters_backend/pdf.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/plot/plotters_backend/regression.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/plot/plotters_backend/summary.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/plot/plotters_backend/t_test.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/profiler.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/report.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/routine.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/stats/mod.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/stats/bivariate/mod.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/stats/bivariate/bootstrap.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/stats/bivariate/regression.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/stats/bivariate/resamples.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/stats/tuple.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/stats/univariate/mod.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/stats/univariate/bootstrap.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/stats/univariate/percentiles.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/stats/univariate/resamples.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/stats/univariate/sample.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/stats/univariate/kde/mod.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/stats/univariate/kde/kernel.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/stats/univariate/mixed.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/stats/univariate/outliers/mod.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/stats/univariate/outliers/tukey.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/stats/float.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/stats/rand_util.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/html/report_link.html.tt: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/html/index.html.tt: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/html/benchmark_report.html.tt: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-0.5.1/src/html/summary_report.html.tt: + +# env-dep:CARGO_PKG_VERSION_MAJOR=0 +# env-dep:CARGO_PKG_VERSION_MINOR=5 +# env-dep:CARGO_PKG_VERSION_PATCH=1 diff --git a/target/release/deps/criterion_plot-780ebee1178c6613.d b/target/release/deps/criterion_plot-780ebee1178c6613.d new file mode 100644 index 0000000..bfabefa --- /dev/null +++ b/target/release/deps/criterion_plot-780ebee1178c6613.d @@ -0,0 +1,20 @@ +/home/simon/.openclaw/workspace/rustVX/target/release/deps/criterion_plot-780ebee1178c6613.d: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-plot-0.5.0/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-plot-0.5.0/src/data.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-plot-0.5.0/src/display.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-plot-0.5.0/src/map.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-plot-0.5.0/src/axis.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-plot-0.5.0/src/candlestick.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-plot-0.5.0/src/curve.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-plot-0.5.0/src/errorbar.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-plot-0.5.0/src/filledcurve.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-plot-0.5.0/src/grid.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-plot-0.5.0/src/key.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-plot-0.5.0/src/prelude.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-plot-0.5.0/src/proxy.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-plot-0.5.0/src/traits.rs + +/home/simon/.openclaw/workspace/rustVX/target/release/deps/libcriterion_plot-780ebee1178c6613.rlib: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-plot-0.5.0/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-plot-0.5.0/src/data.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-plot-0.5.0/src/display.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-plot-0.5.0/src/map.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-plot-0.5.0/src/axis.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-plot-0.5.0/src/candlestick.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-plot-0.5.0/src/curve.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-plot-0.5.0/src/errorbar.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-plot-0.5.0/src/filledcurve.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-plot-0.5.0/src/grid.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-plot-0.5.0/src/key.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-plot-0.5.0/src/prelude.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-plot-0.5.0/src/proxy.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-plot-0.5.0/src/traits.rs + +/home/simon/.openclaw/workspace/rustVX/target/release/deps/libcriterion_plot-780ebee1178c6613.rmeta: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-plot-0.5.0/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-plot-0.5.0/src/data.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-plot-0.5.0/src/display.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-plot-0.5.0/src/map.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-plot-0.5.0/src/axis.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-plot-0.5.0/src/candlestick.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-plot-0.5.0/src/curve.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-plot-0.5.0/src/errorbar.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-plot-0.5.0/src/filledcurve.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-plot-0.5.0/src/grid.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-plot-0.5.0/src/key.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-plot-0.5.0/src/prelude.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-plot-0.5.0/src/proxy.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-plot-0.5.0/src/traits.rs + +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-plot-0.5.0/src/lib.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-plot-0.5.0/src/data.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-plot-0.5.0/src/display.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-plot-0.5.0/src/map.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-plot-0.5.0/src/axis.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-plot-0.5.0/src/candlestick.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-plot-0.5.0/src/curve.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-plot-0.5.0/src/errorbar.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-plot-0.5.0/src/filledcurve.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-plot-0.5.0/src/grid.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-plot-0.5.0/src/key.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-plot-0.5.0/src/prelude.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-plot-0.5.0/src/proxy.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/criterion-plot-0.5.0/src/traits.rs: diff --git a/target/release/deps/crossbeam_deque-46c4cb86b0f94fcd.d b/target/release/deps/crossbeam_deque-46c4cb86b0f94fcd.d new file mode 100644 index 0000000..617973b --- /dev/null +++ b/target/release/deps/crossbeam_deque-46c4cb86b0f94fcd.d @@ -0,0 +1,8 @@ +/home/simon/.openclaw/workspace/rustVX/target/release/deps/crossbeam_deque-46c4cb86b0f94fcd.d: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-deque-0.8.6/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-deque-0.8.6/src/deque.rs + +/home/simon/.openclaw/workspace/rustVX/target/release/deps/libcrossbeam_deque-46c4cb86b0f94fcd.rlib: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-deque-0.8.6/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-deque-0.8.6/src/deque.rs + +/home/simon/.openclaw/workspace/rustVX/target/release/deps/libcrossbeam_deque-46c4cb86b0f94fcd.rmeta: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-deque-0.8.6/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-deque-0.8.6/src/deque.rs + +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-deque-0.8.6/src/lib.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-deque-0.8.6/src/deque.rs: diff --git a/target/release/deps/crossbeam_epoch-095a44de847a57a3.d b/target/release/deps/crossbeam_epoch-095a44de847a57a3.d new file mode 100644 index 0000000..3d0e977 --- /dev/null +++ b/target/release/deps/crossbeam_epoch-095a44de847a57a3.d @@ -0,0 +1,18 @@ +/home/simon/.openclaw/workspace/rustVX/target/release/deps/crossbeam_epoch-095a44de847a57a3.d: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-epoch-0.9.18/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-epoch-0.9.18/src/atomic.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-epoch-0.9.18/src/collector.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-epoch-0.9.18/src/deferred.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-epoch-0.9.18/src/epoch.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-epoch-0.9.18/src/guard.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-epoch-0.9.18/src/internal.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-epoch-0.9.18/src/sync/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-epoch-0.9.18/src/sync/list.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-epoch-0.9.18/src/sync/once_lock.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-epoch-0.9.18/src/sync/queue.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-epoch-0.9.18/src/default.rs + +/home/simon/.openclaw/workspace/rustVX/target/release/deps/libcrossbeam_epoch-095a44de847a57a3.rlib: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-epoch-0.9.18/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-epoch-0.9.18/src/atomic.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-epoch-0.9.18/src/collector.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-epoch-0.9.18/src/deferred.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-epoch-0.9.18/src/epoch.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-epoch-0.9.18/src/guard.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-epoch-0.9.18/src/internal.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-epoch-0.9.18/src/sync/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-epoch-0.9.18/src/sync/list.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-epoch-0.9.18/src/sync/once_lock.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-epoch-0.9.18/src/sync/queue.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-epoch-0.9.18/src/default.rs + +/home/simon/.openclaw/workspace/rustVX/target/release/deps/libcrossbeam_epoch-095a44de847a57a3.rmeta: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-epoch-0.9.18/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-epoch-0.9.18/src/atomic.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-epoch-0.9.18/src/collector.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-epoch-0.9.18/src/deferred.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-epoch-0.9.18/src/epoch.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-epoch-0.9.18/src/guard.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-epoch-0.9.18/src/internal.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-epoch-0.9.18/src/sync/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-epoch-0.9.18/src/sync/list.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-epoch-0.9.18/src/sync/once_lock.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-epoch-0.9.18/src/sync/queue.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-epoch-0.9.18/src/default.rs + +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-epoch-0.9.18/src/lib.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-epoch-0.9.18/src/atomic.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-epoch-0.9.18/src/collector.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-epoch-0.9.18/src/deferred.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-epoch-0.9.18/src/epoch.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-epoch-0.9.18/src/guard.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-epoch-0.9.18/src/internal.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-epoch-0.9.18/src/sync/mod.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-epoch-0.9.18/src/sync/list.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-epoch-0.9.18/src/sync/once_lock.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-epoch-0.9.18/src/sync/queue.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-epoch-0.9.18/src/default.rs: diff --git a/target/release/deps/crossbeam_utils-db0e56bb60b4920d.d b/target/release/deps/crossbeam_utils-db0e56bb60b4920d.d new file mode 100644 index 0000000..8b10e19 --- /dev/null +++ b/target/release/deps/crossbeam_utils-db0e56bb60b4920d.d @@ -0,0 +1,19 @@ +/home/simon/.openclaw/workspace/rustVX/target/release/deps/crossbeam_utils-db0e56bb60b4920d.d: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-utils-0.8.21/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-utils-0.8.21/src/atomic/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-utils-0.8.21/src/atomic/seq_lock.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-utils-0.8.21/src/atomic/atomic_cell.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-utils-0.8.21/src/atomic/consume.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-utils-0.8.21/src/cache_padded.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-utils-0.8.21/src/backoff.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-utils-0.8.21/src/sync/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-utils-0.8.21/src/sync/once_lock.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-utils-0.8.21/src/sync/parker.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-utils-0.8.21/src/sync/sharded_lock.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-utils-0.8.21/src/sync/wait_group.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-utils-0.8.21/src/thread.rs + +/home/simon/.openclaw/workspace/rustVX/target/release/deps/libcrossbeam_utils-db0e56bb60b4920d.rlib: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-utils-0.8.21/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-utils-0.8.21/src/atomic/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-utils-0.8.21/src/atomic/seq_lock.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-utils-0.8.21/src/atomic/atomic_cell.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-utils-0.8.21/src/atomic/consume.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-utils-0.8.21/src/cache_padded.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-utils-0.8.21/src/backoff.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-utils-0.8.21/src/sync/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-utils-0.8.21/src/sync/once_lock.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-utils-0.8.21/src/sync/parker.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-utils-0.8.21/src/sync/sharded_lock.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-utils-0.8.21/src/sync/wait_group.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-utils-0.8.21/src/thread.rs + +/home/simon/.openclaw/workspace/rustVX/target/release/deps/libcrossbeam_utils-db0e56bb60b4920d.rmeta: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-utils-0.8.21/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-utils-0.8.21/src/atomic/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-utils-0.8.21/src/atomic/seq_lock.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-utils-0.8.21/src/atomic/atomic_cell.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-utils-0.8.21/src/atomic/consume.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-utils-0.8.21/src/cache_padded.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-utils-0.8.21/src/backoff.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-utils-0.8.21/src/sync/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-utils-0.8.21/src/sync/once_lock.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-utils-0.8.21/src/sync/parker.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-utils-0.8.21/src/sync/sharded_lock.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-utils-0.8.21/src/sync/wait_group.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-utils-0.8.21/src/thread.rs + +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-utils-0.8.21/src/lib.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-utils-0.8.21/src/atomic/mod.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-utils-0.8.21/src/atomic/seq_lock.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-utils-0.8.21/src/atomic/atomic_cell.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-utils-0.8.21/src/atomic/consume.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-utils-0.8.21/src/cache_padded.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-utils-0.8.21/src/backoff.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-utils-0.8.21/src/sync/mod.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-utils-0.8.21/src/sync/once_lock.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-utils-0.8.21/src/sync/parker.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-utils-0.8.21/src/sync/sharded_lock.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-utils-0.8.21/src/sync/wait_group.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/crossbeam-utils-0.8.21/src/thread.rs: diff --git a/target/release/deps/either-b001f79174e3308b.d b/target/release/deps/either-b001f79174e3308b.d new file mode 100644 index 0000000..cd561c8 --- /dev/null +++ b/target/release/deps/either-b001f79174e3308b.d @@ -0,0 +1,9 @@ +/home/simon/.openclaw/workspace/rustVX/target/release/deps/either-b001f79174e3308b.d: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/either-1.15.0/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/either-1.15.0/src/iterator.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/either-1.15.0/src/into_either.rs + +/home/simon/.openclaw/workspace/rustVX/target/release/deps/libeither-b001f79174e3308b.rlib: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/either-1.15.0/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/either-1.15.0/src/iterator.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/either-1.15.0/src/into_either.rs + +/home/simon/.openclaw/workspace/rustVX/target/release/deps/libeither-b001f79174e3308b.rmeta: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/either-1.15.0/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/either-1.15.0/src/iterator.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/either-1.15.0/src/into_either.rs + +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/either-1.15.0/src/lib.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/either-1.15.0/src/iterator.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/either-1.15.0/src/into_either.rs: diff --git a/target/release/deps/equivalent-a33f90f0e1324044.d b/target/release/deps/equivalent-a33f90f0e1324044.d index 8edfbfb..f844843 100644 --- a/target/release/deps/equivalent-a33f90f0e1324044.d +++ b/target/release/deps/equivalent-a33f90f0e1324044.d @@ -1,7 +1,15 @@ +<<<<<<< HEAD +/home/simon/.openclaw/workspace/rustVX/target/release/deps/equivalent-a33f90f0e1324044.d: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/equivalent-1.0.2/src/lib.rs + +/home/simon/.openclaw/workspace/rustVX/target/release/deps/libequivalent-a33f90f0e1324044.rlib: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/equivalent-1.0.2/src/lib.rs + +/home/simon/.openclaw/workspace/rustVX/target/release/deps/libequivalent-a33f90f0e1324044.rmeta: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/equivalent-1.0.2/src/lib.rs +======= /home/simon/.openclaw/workspace/rustvx/target/release/deps/equivalent-a33f90f0e1324044.d: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/equivalent-1.0.2/src/lib.rs /home/simon/.openclaw/workspace/rustvx/target/release/deps/libequivalent-a33f90f0e1324044.rlib: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/equivalent-1.0.2/src/lib.rs /home/simon/.openclaw/workspace/rustvx/target/release/deps/libequivalent-a33f90f0e1324044.rmeta: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/equivalent-1.0.2/src/lib.rs +>>>>>>> origin/master /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/equivalent-1.0.2/src/lib.rs: diff --git a/target/release/deps/feature_tests-ebccfbaa70cdbdf5 b/target/release/deps/feature_tests-ebccfbaa70cdbdf5 new file mode 100755 index 0000000..ca6438e Binary files /dev/null and b/target/release/deps/feature_tests-ebccfbaa70cdbdf5 differ diff --git a/target/release/deps/feature_tests-ebccfbaa70cdbdf5.d b/target/release/deps/feature_tests-ebccfbaa70cdbdf5.d new file mode 100644 index 0000000..44ca84f --- /dev/null +++ b/target/release/deps/feature_tests-ebccfbaa70cdbdf5.d @@ -0,0 +1,5 @@ +/home/simon/.openclaw/workspace/rustVX/target/release/deps/feature_tests-ebccfbaa70cdbdf5.d: openvx-vision/tests/feature_tests.rs + +/home/simon/.openclaw/workspace/rustVX/target/release/deps/feature_tests-ebccfbaa70cdbdf5: openvx-vision/tests/feature_tests.rs + +openvx-vision/tests/feature_tests.rs: diff --git a/target/release/deps/filter_tests-ae9978565aaaade0 b/target/release/deps/filter_tests-ae9978565aaaade0 new file mode 100755 index 0000000..e09fbb5 Binary files /dev/null and b/target/release/deps/filter_tests-ae9978565aaaade0 differ diff --git a/target/release/deps/filter_tests-ae9978565aaaade0.d b/target/release/deps/filter_tests-ae9978565aaaade0.d new file mode 100644 index 0000000..7fc4ac2 --- /dev/null +++ b/target/release/deps/filter_tests-ae9978565aaaade0.d @@ -0,0 +1,5 @@ +/home/simon/.openclaw/workspace/rustVX/target/release/deps/filter_tests-ae9978565aaaade0.d: openvx-vision/tests/filter_tests.rs + +/home/simon/.openclaw/workspace/rustVX/target/release/deps/filter_tests-ae9978565aaaade0: openvx-vision/tests/filter_tests.rs + +openvx-vision/tests/filter_tests.rs: diff --git a/target/release/deps/fixedbitset-aa39c9c0ba72742c.d b/target/release/deps/fixedbitset-aa39c9c0ba72742c.d index 6874470..d3b0826 100644 --- a/target/release/deps/fixedbitset-aa39c9c0ba72742c.d +++ b/target/release/deps/fixedbitset-aa39c9c0ba72742c.d @@ -1,8 +1,16 @@ +<<<<<<< HEAD +/home/simon/.openclaw/workspace/rustVX/target/release/deps/fixedbitset-aa39c9c0ba72742c.d: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/fixedbitset-0.4.2/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/fixedbitset-0.4.2/src/range.rs + +/home/simon/.openclaw/workspace/rustVX/target/release/deps/libfixedbitset-aa39c9c0ba72742c.rlib: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/fixedbitset-0.4.2/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/fixedbitset-0.4.2/src/range.rs + +/home/simon/.openclaw/workspace/rustVX/target/release/deps/libfixedbitset-aa39c9c0ba72742c.rmeta: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/fixedbitset-0.4.2/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/fixedbitset-0.4.2/src/range.rs +======= /home/simon/.openclaw/workspace/rustvx/target/release/deps/fixedbitset-aa39c9c0ba72742c.d: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/fixedbitset-0.4.2/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/fixedbitset-0.4.2/src/range.rs /home/simon/.openclaw/workspace/rustvx/target/release/deps/libfixedbitset-aa39c9c0ba72742c.rlib: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/fixedbitset-0.4.2/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/fixedbitset-0.4.2/src/range.rs /home/simon/.openclaw/workspace/rustvx/target/release/deps/libfixedbitset-aa39c9c0ba72742c.rmeta: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/fixedbitset-0.4.2/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/fixedbitset-0.4.2/src/range.rs +>>>>>>> origin/master /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/fixedbitset-0.4.2/src/lib.rs: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/fixedbitset-0.4.2/src/range.rs: diff --git a/target/release/deps/geometric_tests-77e9934effe120be b/target/release/deps/geometric_tests-77e9934effe120be new file mode 100755 index 0000000..65c5c8e Binary files /dev/null and b/target/release/deps/geometric_tests-77e9934effe120be differ diff --git a/target/release/deps/geometric_tests-77e9934effe120be.d b/target/release/deps/geometric_tests-77e9934effe120be.d new file mode 100644 index 0000000..9756b31 --- /dev/null +++ b/target/release/deps/geometric_tests-77e9934effe120be.d @@ -0,0 +1,5 @@ +/home/simon/.openclaw/workspace/rustVX/target/release/deps/geometric_tests-77e9934effe120be.d: openvx-vision/tests/geometric_tests.rs + +/home/simon/.openclaw/workspace/rustVX/target/release/deps/geometric_tests-77e9934effe120be: openvx-vision/tests/geometric_tests.rs + +openvx-vision/tests/geometric_tests.rs: diff --git a/target/release/deps/gradient_tests-bf01e5aa2e4ef8e3 b/target/release/deps/gradient_tests-bf01e5aa2e4ef8e3 new file mode 100755 index 0000000..cc6d736 Binary files /dev/null and b/target/release/deps/gradient_tests-bf01e5aa2e4ef8e3 differ diff --git a/target/release/deps/gradient_tests-bf01e5aa2e4ef8e3.d b/target/release/deps/gradient_tests-bf01e5aa2e4ef8e3.d new file mode 100644 index 0000000..c7143f3 --- /dev/null +++ b/target/release/deps/gradient_tests-bf01e5aa2e4ef8e3.d @@ -0,0 +1,5 @@ +/home/simon/.openclaw/workspace/rustVX/target/release/deps/gradient_tests-bf01e5aa2e4ef8e3.d: openvx-vision/tests/gradient_tests.rs + +/home/simon/.openclaw/workspace/rustVX/target/release/deps/gradient_tests-bf01e5aa2e4ef8e3: openvx-vision/tests/gradient_tests.rs + +openvx-vision/tests/gradient_tests.rs: diff --git a/target/release/deps/half-3b7c5ea86382d0e1.d b/target/release/deps/half-3b7c5ea86382d0e1.d new file mode 100644 index 0000000..ea98082 --- /dev/null +++ b/target/release/deps/half-3b7c5ea86382d0e1.d @@ -0,0 +1,14 @@ +/home/simon/.openclaw/workspace/rustVX/target/release/deps/half-3b7c5ea86382d0e1.d: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/half-2.7.1/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/half-2.7.1/src/bfloat.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/half-2.7.1/src/bfloat/convert.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/half-2.7.1/src/binary16.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/half-2.7.1/src/binary16/arch.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/half-2.7.1/src/binary16/arch/x86.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/half-2.7.1/src/leading_zeros.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/half-2.7.1/src/slice.rs + +/home/simon/.openclaw/workspace/rustVX/target/release/deps/libhalf-3b7c5ea86382d0e1.rlib: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/half-2.7.1/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/half-2.7.1/src/bfloat.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/half-2.7.1/src/bfloat/convert.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/half-2.7.1/src/binary16.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/half-2.7.1/src/binary16/arch.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/half-2.7.1/src/binary16/arch/x86.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/half-2.7.1/src/leading_zeros.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/half-2.7.1/src/slice.rs + +/home/simon/.openclaw/workspace/rustVX/target/release/deps/libhalf-3b7c5ea86382d0e1.rmeta: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/half-2.7.1/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/half-2.7.1/src/bfloat.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/half-2.7.1/src/bfloat/convert.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/half-2.7.1/src/binary16.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/half-2.7.1/src/binary16/arch.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/half-2.7.1/src/binary16/arch/x86.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/half-2.7.1/src/leading_zeros.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/half-2.7.1/src/slice.rs + +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/half-2.7.1/src/lib.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/half-2.7.1/src/bfloat.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/half-2.7.1/src/bfloat/convert.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/half-2.7.1/src/binary16.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/half-2.7.1/src/binary16/arch.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/half-2.7.1/src/binary16/arch/x86.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/half-2.7.1/src/leading_zeros.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/half-2.7.1/src/slice.rs: diff --git a/target/release/deps/hashbrown-d86f3978847d07e5.d b/target/release/deps/hashbrown-d86f3978847d07e5.d index 1c8f0b8..ff9f297 100644 --- a/target/release/deps/hashbrown-d86f3978847d07e5.d +++ b/target/release/deps/hashbrown-d86f3978847d07e5.d @@ -1,8 +1,16 @@ +<<<<<<< HEAD +/home/simon/.openclaw/workspace/rustVX/target/release/deps/hashbrown-d86f3978847d07e5.d: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/macros.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/control/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/control/bitmask.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/control/group/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/control/tag.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/hasher.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/raw/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/raw/alloc.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/util.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/external_trait_impls/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/map.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/scopeguard.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/set.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/table.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/control/group/sse2.rs + +/home/simon/.openclaw/workspace/rustVX/target/release/deps/libhashbrown-d86f3978847d07e5.rlib: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/macros.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/control/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/control/bitmask.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/control/group/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/control/tag.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/hasher.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/raw/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/raw/alloc.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/util.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/external_trait_impls/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/map.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/scopeguard.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/set.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/table.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/control/group/sse2.rs + +/home/simon/.openclaw/workspace/rustVX/target/release/deps/libhashbrown-d86f3978847d07e5.rmeta: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/macros.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/control/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/control/bitmask.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/control/group/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/control/tag.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/hasher.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/raw/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/raw/alloc.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/util.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/external_trait_impls/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/map.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/scopeguard.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/set.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/table.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/control/group/sse2.rs +======= /home/simon/.openclaw/workspace/rustvx/target/release/deps/hashbrown-d86f3978847d07e5.d: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/macros.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/control/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/control/bitmask.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/control/group/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/control/tag.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/hasher.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/raw/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/raw/alloc.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/util.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/external_trait_impls/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/map.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/scopeguard.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/set.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/table.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/control/group/sse2.rs /home/simon/.openclaw/workspace/rustvx/target/release/deps/libhashbrown-d86f3978847d07e5.rlib: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/macros.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/control/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/control/bitmask.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/control/group/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/control/tag.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/hasher.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/raw/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/raw/alloc.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/util.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/external_trait_impls/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/map.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/scopeguard.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/set.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/table.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/control/group/sse2.rs /home/simon/.openclaw/workspace/rustvx/target/release/deps/libhashbrown-d86f3978847d07e5.rmeta: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/macros.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/control/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/control/bitmask.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/control/group/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/control/tag.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/hasher.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/raw/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/raw/alloc.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/util.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/external_trait_impls/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/map.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/scopeguard.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/set.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/table.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/control/group/sse2.rs +>>>>>>> origin/master /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/lib.rs: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/hashbrown-0.16.1/src/macros.rs: diff --git a/target/release/deps/indexmap-19b61bf9708d93db.d b/target/release/deps/indexmap-19b61bf9708d93db.d new file mode 100644 index 0000000..d119ff9 --- /dev/null +++ b/target/release/deps/indexmap-19b61bf9708d93db.d @@ -0,0 +1,23 @@ +/home/simon/.openclaw/workspace/rustVX/target/release/deps/indexmap-19b61bf9708d93db.d: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/arbitrary.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/inner.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/inner/entry.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/inner/extract.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/macros.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/util.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/map.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/map/entry.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/map/iter.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/map/mutable.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/map/slice.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/map/raw_entry_v1.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/set.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/set/iter.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/set/mutable.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/set/slice.rs + +/home/simon/.openclaw/workspace/rustVX/target/release/deps/libindexmap-19b61bf9708d93db.rlib: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/arbitrary.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/inner.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/inner/entry.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/inner/extract.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/macros.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/util.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/map.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/map/entry.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/map/iter.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/map/mutable.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/map/slice.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/map/raw_entry_v1.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/set.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/set/iter.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/set/mutable.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/set/slice.rs + +/home/simon/.openclaw/workspace/rustVX/target/release/deps/libindexmap-19b61bf9708d93db.rmeta: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/arbitrary.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/inner.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/inner/entry.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/inner/extract.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/macros.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/util.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/map.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/map/entry.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/map/iter.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/map/mutable.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/map/slice.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/map/raw_entry_v1.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/set.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/set/iter.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/set/mutable.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/set/slice.rs + +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/lib.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/arbitrary.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/inner.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/inner/entry.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/inner/extract.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/macros.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/util.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/map.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/map/entry.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/map/iter.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/map/mutable.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/map/slice.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/map/raw_entry_v1.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/set.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/set/iter.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/set/mutable.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/indexmap-2.13.0/src/set/slice.rs: diff --git a/target/release/deps/is_terminal-3ffc5c46504b7b01.d b/target/release/deps/is_terminal-3ffc5c46504b7b01.d new file mode 100644 index 0000000..013c67f --- /dev/null +++ b/target/release/deps/is_terminal-3ffc5c46504b7b01.d @@ -0,0 +1,7 @@ +/home/simon/.openclaw/workspace/rustVX/target/release/deps/is_terminal-3ffc5c46504b7b01.d: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/is-terminal-0.4.17/src/lib.rs + +/home/simon/.openclaw/workspace/rustVX/target/release/deps/libis_terminal-3ffc5c46504b7b01.rlib: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/is-terminal-0.4.17/src/lib.rs + +/home/simon/.openclaw/workspace/rustVX/target/release/deps/libis_terminal-3ffc5c46504b7b01.rmeta: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/is-terminal-0.4.17/src/lib.rs + +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/is-terminal-0.4.17/src/lib.rs: diff --git a/target/release/deps/itertools-43b1aade48ea646f.d b/target/release/deps/itertools-43b1aade48ea646f.d new file mode 100644 index 0000000..e4a538a --- /dev/null +++ b/target/release/deps/itertools-43b1aade48ea646f.d @@ -0,0 +1,53 @@ +/home/simon/.openclaw/workspace/rustVX/target/release/deps/itertools-43b1aade48ea646f.d: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/impl_macros.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/adaptors/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/adaptors/coalesce.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/adaptors/map.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/adaptors/multi_product.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/either_or_both.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/free.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/concat_impl.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/cons_tuples_impl.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/combinations.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/combinations_with_replacement.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/exactly_one_err.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/diff.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/flatten_ok.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/extrema_set.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/format.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/grouping_map.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/group_map.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/groupbylazy.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/intersperse.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/k_smallest.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/kmerge_impl.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/lazy_buffer.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/merge_join.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/minmax.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/multipeek_impl.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/pad_tail.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/peek_nth.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/peeking_take_while.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/permutations.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/powerset.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/process_results_impl.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/put_back_n_impl.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/rciter_impl.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/repeatn.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/size_hint.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/sources.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/tee.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/tuple_impl.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/duplicates_impl.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/unique_impl.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/unziptuple.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/with_position.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/zip_eq_impl.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/zip_longest.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/ziptuple.rs + +/home/simon/.openclaw/workspace/rustVX/target/release/deps/libitertools-43b1aade48ea646f.rlib: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/impl_macros.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/adaptors/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/adaptors/coalesce.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/adaptors/map.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/adaptors/multi_product.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/either_or_both.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/free.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/concat_impl.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/cons_tuples_impl.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/combinations.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/combinations_with_replacement.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/exactly_one_err.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/diff.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/flatten_ok.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/extrema_set.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/format.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/grouping_map.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/group_map.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/groupbylazy.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/intersperse.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/k_smallest.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/kmerge_impl.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/lazy_buffer.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/merge_join.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/minmax.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/multipeek_impl.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/pad_tail.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/peek_nth.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/peeking_take_while.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/permutations.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/powerset.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/process_results_impl.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/put_back_n_impl.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/rciter_impl.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/repeatn.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/size_hint.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/sources.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/tee.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/tuple_impl.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/duplicates_impl.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/unique_impl.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/unziptuple.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/with_position.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/zip_eq_impl.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/zip_longest.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/ziptuple.rs + +/home/simon/.openclaw/workspace/rustVX/target/release/deps/libitertools-43b1aade48ea646f.rmeta: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/impl_macros.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/adaptors/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/adaptors/coalesce.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/adaptors/map.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/adaptors/multi_product.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/either_or_both.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/free.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/concat_impl.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/cons_tuples_impl.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/combinations.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/combinations_with_replacement.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/exactly_one_err.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/diff.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/flatten_ok.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/extrema_set.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/format.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/grouping_map.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/group_map.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/groupbylazy.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/intersperse.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/k_smallest.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/kmerge_impl.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/lazy_buffer.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/merge_join.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/minmax.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/multipeek_impl.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/pad_tail.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/peek_nth.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/peeking_take_while.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/permutations.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/powerset.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/process_results_impl.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/put_back_n_impl.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/rciter_impl.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/repeatn.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/size_hint.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/sources.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/tee.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/tuple_impl.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/duplicates_impl.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/unique_impl.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/unziptuple.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/with_position.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/zip_eq_impl.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/zip_longest.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/ziptuple.rs + +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/lib.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/impl_macros.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/adaptors/mod.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/adaptors/coalesce.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/adaptors/map.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/adaptors/multi_product.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/either_or_both.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/free.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/concat_impl.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/cons_tuples_impl.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/combinations.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/combinations_with_replacement.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/exactly_one_err.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/diff.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/flatten_ok.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/extrema_set.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/format.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/grouping_map.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/group_map.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/groupbylazy.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/intersperse.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/k_smallest.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/kmerge_impl.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/lazy_buffer.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/merge_join.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/minmax.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/multipeek_impl.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/pad_tail.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/peek_nth.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/peeking_take_while.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/permutations.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/powerset.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/process_results_impl.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/put_back_n_impl.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/rciter_impl.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/repeatn.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/size_hint.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/sources.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/tee.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/tuple_impl.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/duplicates_impl.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/unique_impl.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/unziptuple.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/with_position.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/zip_eq_impl.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/zip_longest.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itertools-0.10.5/src/ziptuple.rs: diff --git a/target/release/deps/itoa-a082cc022f711fd0.d b/target/release/deps/itoa-a082cc022f711fd0.d new file mode 100644 index 0000000..a59d157 --- /dev/null +++ b/target/release/deps/itoa-a082cc022f711fd0.d @@ -0,0 +1,8 @@ +/home/simon/.openclaw/workspace/rustVX/target/release/deps/itoa-a082cc022f711fd0.d: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itoa-1.0.18/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itoa-1.0.18/src/u128_ext.rs + +/home/simon/.openclaw/workspace/rustVX/target/release/deps/libitoa-a082cc022f711fd0.rlib: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itoa-1.0.18/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itoa-1.0.18/src/u128_ext.rs + +/home/simon/.openclaw/workspace/rustVX/target/release/deps/libitoa-a082cc022f711fd0.rmeta: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itoa-1.0.18/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itoa-1.0.18/src/u128_ext.rs + +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itoa-1.0.18/src/lib.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/itoa-1.0.18/src/u128_ext.rs: diff --git a/target/release/deps/libanes-1c4d1373d9e988af.rlib b/target/release/deps/libanes-1c4d1373d9e988af.rlib new file mode 100644 index 0000000..9fffa8d Binary files /dev/null and b/target/release/deps/libanes-1c4d1373d9e988af.rlib differ diff --git a/target/release/deps/libanes-1c4d1373d9e988af.rmeta b/target/release/deps/libanes-1c4d1373d9e988af.rmeta new file mode 100644 index 0000000..10e3ef3 Binary files /dev/null and b/target/release/deps/libanes-1c4d1373d9e988af.rmeta differ diff --git a/target/release/deps/libanstyle-1335201cfe2bdfb9.rlib b/target/release/deps/libanstyle-1335201cfe2bdfb9.rlib new file mode 100644 index 0000000..33fb9b2 Binary files /dev/null and b/target/release/deps/libanstyle-1335201cfe2bdfb9.rlib differ diff --git a/target/release/deps/libanstyle-1335201cfe2bdfb9.rmeta b/target/release/deps/libanstyle-1335201cfe2bdfb9.rmeta new file mode 100644 index 0000000..c01e323 Binary files /dev/null and b/target/release/deps/libanstyle-1335201cfe2bdfb9.rmeta differ diff --git a/target/release/deps/libassert_approx_eq-52115f18d0a131bd.rlib b/target/release/deps/libassert_approx_eq-52115f18d0a131bd.rlib new file mode 100644 index 0000000..6327e0e Binary files /dev/null and b/target/release/deps/libassert_approx_eq-52115f18d0a131bd.rlib differ diff --git a/target/release/deps/libassert_approx_eq-52115f18d0a131bd.rmeta b/target/release/deps/libassert_approx_eq-52115f18d0a131bd.rmeta new file mode 100644 index 0000000..8e2b697 Binary files /dev/null and b/target/release/deps/libassert_approx_eq-52115f18d0a131bd.rmeta differ diff --git a/target/release/deps/libautocfg-da071fec8bb21226.rlib b/target/release/deps/libautocfg-da071fec8bb21226.rlib new file mode 100644 index 0000000..2e0a837 Binary files /dev/null and b/target/release/deps/libautocfg-da071fec8bb21226.rlib differ diff --git a/target/release/deps/libautocfg-da071fec8bb21226.rmeta b/target/release/deps/libautocfg-da071fec8bb21226.rmeta new file mode 100644 index 0000000..1356982 Binary files /dev/null and b/target/release/deps/libautocfg-da071fec8bb21226.rmeta differ diff --git a/target/release/deps/libc-ef3a64e19ced48a1.d b/target/release/deps/libc-ef3a64e19ced48a1.d index 91a4176..cd9c597 100644 --- a/target/release/deps/libc-ef3a64e19ced48a1.d +++ b/target/release/deps/libc-ef3a64e19ced48a1.d @@ -1,8 +1,16 @@ +<<<<<<< HEAD +/home/simon/.openclaw/workspace/rustVX/target/release/deps/libc-ef3a64e19ced48a1.d: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/macros.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/common/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/common/linux_like/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/common/linux_like/pthread.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/common/posix/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/common/posix/pthread.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/common/posix/unistd.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/linux_uapi/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/linux_uapi/linux/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/linux_uapi/linux/can.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/linux_uapi/linux/can/bcm.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/linux_uapi/linux/can/error.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/linux_uapi/linux/can/j1939.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/linux_uapi/linux/can/raw.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/linux_uapi/linux/keyctl.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/linux_uapi/linux/membarrier.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/linux_uapi/linux/netlink.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/linux_uapi/linux/pidfd.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/glibc/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/glibc/posix/unistd.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/glibc/sysdeps/nptl/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/glibc/sysdeps/nptl/pthread.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/glibc/sysdeps/unix/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/glibc/sysdeps/unix/linux/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/glibc/sysdeps/unix/linux/net/route.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/primitives.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/unix/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/unix/linux_like/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/unix/linux_like/linux/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/unix/linux_like/linux/arch/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/unix/linux_like/linux_l4re_shared.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/unix/linux_like/linux/gnu/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/unix/linux_like/linux/gnu/b64/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/unix/linux_like/linux/gnu/b64/x86_64/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/unix/linux_like/linux/gnu/b64/x86_64/not_x32.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/unix/linux_like/linux/arch/generic/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/types.rs + +/home/simon/.openclaw/workspace/rustVX/target/release/deps/liblibc-ef3a64e19ced48a1.rlib: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/macros.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/common/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/common/linux_like/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/common/linux_like/pthread.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/common/posix/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/common/posix/pthread.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/common/posix/unistd.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/linux_uapi/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/linux_uapi/linux/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/linux_uapi/linux/can.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/linux_uapi/linux/can/bcm.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/linux_uapi/linux/can/error.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/linux_uapi/linux/can/j1939.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/linux_uapi/linux/can/raw.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/linux_uapi/linux/keyctl.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/linux_uapi/linux/membarrier.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/linux_uapi/linux/netlink.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/linux_uapi/linux/pidfd.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/glibc/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/glibc/posix/unistd.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/glibc/sysdeps/nptl/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/glibc/sysdeps/nptl/pthread.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/glibc/sysdeps/unix/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/glibc/sysdeps/unix/linux/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/glibc/sysdeps/unix/linux/net/route.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/primitives.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/unix/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/unix/linux_like/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/unix/linux_like/linux/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/unix/linux_like/linux/arch/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/unix/linux_like/linux_l4re_shared.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/unix/linux_like/linux/gnu/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/unix/linux_like/linux/gnu/b64/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/unix/linux_like/linux/gnu/b64/x86_64/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/unix/linux_like/linux/gnu/b64/x86_64/not_x32.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/unix/linux_like/linux/arch/generic/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/types.rs + +/home/simon/.openclaw/workspace/rustVX/target/release/deps/liblibc-ef3a64e19ced48a1.rmeta: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/macros.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/common/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/common/linux_like/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/common/linux_like/pthread.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/common/posix/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/common/posix/pthread.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/common/posix/unistd.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/linux_uapi/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/linux_uapi/linux/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/linux_uapi/linux/can.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/linux_uapi/linux/can/bcm.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/linux_uapi/linux/can/error.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/linux_uapi/linux/can/j1939.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/linux_uapi/linux/can/raw.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/linux_uapi/linux/keyctl.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/linux_uapi/linux/membarrier.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/linux_uapi/linux/netlink.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/linux_uapi/linux/pidfd.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/glibc/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/glibc/posix/unistd.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/glibc/sysdeps/nptl/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/glibc/sysdeps/nptl/pthread.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/glibc/sysdeps/unix/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/glibc/sysdeps/unix/linux/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/glibc/sysdeps/unix/linux/net/route.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/primitives.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/unix/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/unix/linux_like/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/unix/linux_like/linux/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/unix/linux_like/linux/arch/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/unix/linux_like/linux_l4re_shared.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/unix/linux_like/linux/gnu/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/unix/linux_like/linux/gnu/b64/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/unix/linux_like/linux/gnu/b64/x86_64/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/unix/linux_like/linux/gnu/b64/x86_64/not_x32.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/unix/linux_like/linux/arch/generic/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/types.rs +======= /home/simon/.openclaw/workspace/rustvx/target/release/deps/libc-ef3a64e19ced48a1.d: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/macros.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/common/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/common/linux_like/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/common/linux_like/pthread.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/common/posix/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/common/posix/pthread.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/common/posix/unistd.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/linux_uapi/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/linux_uapi/linux/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/linux_uapi/linux/can.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/linux_uapi/linux/can/bcm.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/linux_uapi/linux/can/error.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/linux_uapi/linux/can/j1939.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/linux_uapi/linux/can/raw.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/linux_uapi/linux/keyctl.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/linux_uapi/linux/membarrier.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/linux_uapi/linux/netlink.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/linux_uapi/linux/pidfd.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/glibc/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/glibc/posix/unistd.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/glibc/sysdeps/nptl/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/glibc/sysdeps/nptl/pthread.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/glibc/sysdeps/unix/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/glibc/sysdeps/unix/linux/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/glibc/sysdeps/unix/linux/net/route.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/primitives.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/unix/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/unix/linux_like/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/unix/linux_like/linux/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/unix/linux_like/linux/arch/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/unix/linux_like/linux_l4re_shared.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/unix/linux_like/linux/gnu/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/unix/linux_like/linux/gnu/b64/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/unix/linux_like/linux/gnu/b64/x86_64/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/unix/linux_like/linux/gnu/b64/x86_64/not_x32.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/unix/linux_like/linux/arch/generic/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/types.rs /home/simon/.openclaw/workspace/rustvx/target/release/deps/liblibc-ef3a64e19ced48a1.rlib: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/macros.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/common/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/common/linux_like/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/common/linux_like/pthread.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/common/posix/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/common/posix/pthread.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/common/posix/unistd.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/linux_uapi/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/linux_uapi/linux/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/linux_uapi/linux/can.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/linux_uapi/linux/can/bcm.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/linux_uapi/linux/can/error.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/linux_uapi/linux/can/j1939.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/linux_uapi/linux/can/raw.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/linux_uapi/linux/keyctl.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/linux_uapi/linux/membarrier.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/linux_uapi/linux/netlink.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/linux_uapi/linux/pidfd.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/glibc/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/glibc/posix/unistd.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/glibc/sysdeps/nptl/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/glibc/sysdeps/nptl/pthread.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/glibc/sysdeps/unix/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/glibc/sysdeps/unix/linux/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/glibc/sysdeps/unix/linux/net/route.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/primitives.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/unix/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/unix/linux_like/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/unix/linux_like/linux/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/unix/linux_like/linux/arch/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/unix/linux_like/linux_l4re_shared.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/unix/linux_like/linux/gnu/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/unix/linux_like/linux/gnu/b64/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/unix/linux_like/linux/gnu/b64/x86_64/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/unix/linux_like/linux/gnu/b64/x86_64/not_x32.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/unix/linux_like/linux/arch/generic/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/types.rs /home/simon/.openclaw/workspace/rustvx/target/release/deps/liblibc-ef3a64e19ced48a1.rmeta: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/macros.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/common/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/common/linux_like/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/common/linux_like/pthread.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/common/posix/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/common/posix/pthread.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/common/posix/unistd.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/linux_uapi/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/linux_uapi/linux/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/linux_uapi/linux/can.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/linux_uapi/linux/can/bcm.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/linux_uapi/linux/can/error.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/linux_uapi/linux/can/j1939.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/linux_uapi/linux/can/raw.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/linux_uapi/linux/keyctl.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/linux_uapi/linux/membarrier.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/linux_uapi/linux/netlink.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/linux_uapi/linux/pidfd.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/glibc/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/glibc/posix/unistd.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/glibc/sysdeps/nptl/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/glibc/sysdeps/nptl/pthread.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/glibc/sysdeps/unix/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/glibc/sysdeps/unix/linux/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/new/glibc/sysdeps/unix/linux/net/route.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/primitives.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/unix/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/unix/linux_like/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/unix/linux_like/linux/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/unix/linux_like/linux/arch/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/unix/linux_like/linux_l4re_shared.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/unix/linux_like/linux/gnu/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/unix/linux_like/linux/gnu/b64/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/unix/linux_like/linux/gnu/b64/x86_64/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/unix/linux_like/linux/gnu/b64/x86_64/not_x32.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/unix/linux_like/linux/arch/generic/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/types.rs +>>>>>>> origin/master /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/lib.rs: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/libc-0.2.183/src/macros.rs: diff --git a/target/release/deps/libcast-9109d48c055aef1b.rlib b/target/release/deps/libcast-9109d48c055aef1b.rlib new file mode 100644 index 0000000..f7ff0f2 Binary files /dev/null and b/target/release/deps/libcast-9109d48c055aef1b.rlib differ diff --git a/target/release/deps/libcast-9109d48c055aef1b.rmeta b/target/release/deps/libcast-9109d48c055aef1b.rmeta new file mode 100644 index 0000000..53d6a7b Binary files /dev/null and b/target/release/deps/libcast-9109d48c055aef1b.rmeta differ diff --git a/target/release/deps/libciborium-9a2c0196e3efb194.rlib b/target/release/deps/libciborium-9a2c0196e3efb194.rlib new file mode 100644 index 0000000..bb75d6c Binary files /dev/null and b/target/release/deps/libciborium-9a2c0196e3efb194.rlib differ diff --git a/target/release/deps/libciborium-9a2c0196e3efb194.rmeta b/target/release/deps/libciborium-9a2c0196e3efb194.rmeta new file mode 100644 index 0000000..7482b37 Binary files /dev/null and b/target/release/deps/libciborium-9a2c0196e3efb194.rmeta differ diff --git a/target/release/deps/libciborium_io-7e4258cdc22c9b86.rlib b/target/release/deps/libciborium_io-7e4258cdc22c9b86.rlib new file mode 100644 index 0000000..712550e Binary files /dev/null and b/target/release/deps/libciborium_io-7e4258cdc22c9b86.rlib differ diff --git a/target/release/deps/libciborium_io-7e4258cdc22c9b86.rmeta b/target/release/deps/libciborium_io-7e4258cdc22c9b86.rmeta new file mode 100644 index 0000000..67bb8e3 Binary files /dev/null and b/target/release/deps/libciborium_io-7e4258cdc22c9b86.rmeta differ diff --git a/target/release/deps/libciborium_ll-6a78da664f02b45f.rlib b/target/release/deps/libciborium_ll-6a78da664f02b45f.rlib new file mode 100644 index 0000000..a6c9a26 Binary files /dev/null and b/target/release/deps/libciborium_ll-6a78da664f02b45f.rlib differ diff --git a/target/release/deps/libciborium_ll-6a78da664f02b45f.rmeta b/target/release/deps/libciborium_ll-6a78da664f02b45f.rmeta new file mode 100644 index 0000000..f09487b Binary files /dev/null and b/target/release/deps/libciborium_ll-6a78da664f02b45f.rmeta differ diff --git a/target/release/deps/libclap-1168baf059466741.rlib b/target/release/deps/libclap-1168baf059466741.rlib new file mode 100644 index 0000000..84c87ee Binary files /dev/null and b/target/release/deps/libclap-1168baf059466741.rlib differ diff --git a/target/release/deps/libclap-1168baf059466741.rmeta b/target/release/deps/libclap-1168baf059466741.rmeta new file mode 100644 index 0000000..f2d3a9e Binary files /dev/null and b/target/release/deps/libclap-1168baf059466741.rmeta differ diff --git a/target/release/deps/libclap_builder-c13b905e362998a2.rlib b/target/release/deps/libclap_builder-c13b905e362998a2.rlib new file mode 100644 index 0000000..9859178 Binary files /dev/null and b/target/release/deps/libclap_builder-c13b905e362998a2.rlib differ diff --git a/target/release/deps/libclap_builder-c13b905e362998a2.rmeta b/target/release/deps/libclap_builder-c13b905e362998a2.rmeta new file mode 100644 index 0000000..9eaa5ef Binary files /dev/null and b/target/release/deps/libclap_builder-c13b905e362998a2.rmeta differ diff --git a/target/release/deps/libclap_lex-e91b14870d354d9f.rlib b/target/release/deps/libclap_lex-e91b14870d354d9f.rlib new file mode 100644 index 0000000..bbf30d0 Binary files /dev/null and b/target/release/deps/libclap_lex-e91b14870d354d9f.rlib differ diff --git a/target/release/deps/libclap_lex-e91b14870d354d9f.rmeta b/target/release/deps/libclap_lex-e91b14870d354d9f.rmeta new file mode 100644 index 0000000..904fff2 Binary files /dev/null and b/target/release/deps/libclap_lex-e91b14870d354d9f.rmeta differ diff --git a/target/release/deps/libcriterion-448e3a7c5d1b8498.rlib b/target/release/deps/libcriterion-448e3a7c5d1b8498.rlib new file mode 100644 index 0000000..b797c29 Binary files /dev/null and b/target/release/deps/libcriterion-448e3a7c5d1b8498.rlib differ diff --git a/target/release/deps/libcriterion-448e3a7c5d1b8498.rmeta b/target/release/deps/libcriterion-448e3a7c5d1b8498.rmeta new file mode 100644 index 0000000..62f2aa3 Binary files /dev/null and b/target/release/deps/libcriterion-448e3a7c5d1b8498.rmeta differ diff --git a/target/release/deps/libcriterion_plot-780ebee1178c6613.rlib b/target/release/deps/libcriterion_plot-780ebee1178c6613.rlib new file mode 100644 index 0000000..835c528 Binary files /dev/null and b/target/release/deps/libcriterion_plot-780ebee1178c6613.rlib differ diff --git a/target/release/deps/libcriterion_plot-780ebee1178c6613.rmeta b/target/release/deps/libcriterion_plot-780ebee1178c6613.rmeta new file mode 100644 index 0000000..3a0072b Binary files /dev/null and b/target/release/deps/libcriterion_plot-780ebee1178c6613.rmeta differ diff --git a/target/release/deps/libcrossbeam_deque-46c4cb86b0f94fcd.rlib b/target/release/deps/libcrossbeam_deque-46c4cb86b0f94fcd.rlib new file mode 100644 index 0000000..014b965 Binary files /dev/null and b/target/release/deps/libcrossbeam_deque-46c4cb86b0f94fcd.rlib differ diff --git a/target/release/deps/libcrossbeam_deque-46c4cb86b0f94fcd.rmeta b/target/release/deps/libcrossbeam_deque-46c4cb86b0f94fcd.rmeta new file mode 100644 index 0000000..0feeeec Binary files /dev/null and b/target/release/deps/libcrossbeam_deque-46c4cb86b0f94fcd.rmeta differ diff --git a/target/release/deps/libcrossbeam_epoch-095a44de847a57a3.rlib b/target/release/deps/libcrossbeam_epoch-095a44de847a57a3.rlib new file mode 100644 index 0000000..9c9434d Binary files /dev/null and b/target/release/deps/libcrossbeam_epoch-095a44de847a57a3.rlib differ diff --git a/target/release/deps/libcrossbeam_epoch-095a44de847a57a3.rmeta b/target/release/deps/libcrossbeam_epoch-095a44de847a57a3.rmeta new file mode 100644 index 0000000..4bb540d Binary files /dev/null and b/target/release/deps/libcrossbeam_epoch-095a44de847a57a3.rmeta differ diff --git a/target/release/deps/libcrossbeam_utils-db0e56bb60b4920d.rlib b/target/release/deps/libcrossbeam_utils-db0e56bb60b4920d.rlib new file mode 100644 index 0000000..3222eed Binary files /dev/null and b/target/release/deps/libcrossbeam_utils-db0e56bb60b4920d.rlib differ diff --git a/target/release/deps/libcrossbeam_utils-db0e56bb60b4920d.rmeta b/target/release/deps/libcrossbeam_utils-db0e56bb60b4920d.rmeta new file mode 100644 index 0000000..b7f000e Binary files /dev/null and b/target/release/deps/libcrossbeam_utils-db0e56bb60b4920d.rmeta differ diff --git a/target/release/deps/libeither-b001f79174e3308b.rlib b/target/release/deps/libeither-b001f79174e3308b.rlib new file mode 100644 index 0000000..bcd34c0 Binary files /dev/null and b/target/release/deps/libeither-b001f79174e3308b.rlib differ diff --git a/target/release/deps/libeither-b001f79174e3308b.rmeta b/target/release/deps/libeither-b001f79174e3308b.rmeta new file mode 100644 index 0000000..0f7b9d9 Binary files /dev/null and b/target/release/deps/libeither-b001f79174e3308b.rmeta differ diff --git a/target/release/deps/libhalf-3b7c5ea86382d0e1.rlib b/target/release/deps/libhalf-3b7c5ea86382d0e1.rlib new file mode 100644 index 0000000..c2657b1 Binary files /dev/null and b/target/release/deps/libhalf-3b7c5ea86382d0e1.rlib differ diff --git a/target/release/deps/libhalf-3b7c5ea86382d0e1.rmeta b/target/release/deps/libhalf-3b7c5ea86382d0e1.rmeta new file mode 100644 index 0000000..77f644b Binary files /dev/null and b/target/release/deps/libhalf-3b7c5ea86382d0e1.rmeta differ diff --git a/target/release/deps/libindexmap-19b61bf9708d93db.rlib b/target/release/deps/libindexmap-19b61bf9708d93db.rlib new file mode 100644 index 0000000..7275d26 Binary files /dev/null and b/target/release/deps/libindexmap-19b61bf9708d93db.rlib differ diff --git a/target/release/deps/libindexmap-19b61bf9708d93db.rmeta b/target/release/deps/libindexmap-19b61bf9708d93db.rmeta new file mode 100644 index 0000000..90068f4 Binary files /dev/null and b/target/release/deps/libindexmap-19b61bf9708d93db.rmeta differ diff --git a/target/release/deps/libis_terminal-3ffc5c46504b7b01.rlib b/target/release/deps/libis_terminal-3ffc5c46504b7b01.rlib new file mode 100644 index 0000000..7f91ae9 Binary files /dev/null and b/target/release/deps/libis_terminal-3ffc5c46504b7b01.rlib differ diff --git a/target/release/deps/libis_terminal-3ffc5c46504b7b01.rmeta b/target/release/deps/libis_terminal-3ffc5c46504b7b01.rmeta new file mode 100644 index 0000000..53b5661 Binary files /dev/null and b/target/release/deps/libis_terminal-3ffc5c46504b7b01.rmeta differ diff --git a/target/release/deps/libitertools-43b1aade48ea646f.rlib b/target/release/deps/libitertools-43b1aade48ea646f.rlib new file mode 100644 index 0000000..f2eab33 Binary files /dev/null and b/target/release/deps/libitertools-43b1aade48ea646f.rlib differ diff --git a/target/release/deps/libitertools-43b1aade48ea646f.rmeta b/target/release/deps/libitertools-43b1aade48ea646f.rmeta new file mode 100644 index 0000000..6e83dc8 Binary files /dev/null and b/target/release/deps/libitertools-43b1aade48ea646f.rmeta differ diff --git a/target/release/deps/libitoa-a082cc022f711fd0.rlib b/target/release/deps/libitoa-a082cc022f711fd0.rlib new file mode 100644 index 0000000..ac6873f Binary files /dev/null and b/target/release/deps/libitoa-a082cc022f711fd0.rlib differ diff --git a/target/release/deps/libitoa-a082cc022f711fd0.rmeta b/target/release/deps/libitoa-a082cc022f711fd0.rmeta new file mode 100644 index 0000000..6d4f074 Binary files /dev/null and b/target/release/deps/libitoa-a082cc022f711fd0.rmeta differ diff --git a/target/release/deps/libmemchr-fc42ddedcb567bdb.rlib b/target/release/deps/libmemchr-fc42ddedcb567bdb.rlib new file mode 100644 index 0000000..bed5185 Binary files /dev/null and b/target/release/deps/libmemchr-fc42ddedcb567bdb.rlib differ diff --git a/target/release/deps/libmemchr-fc42ddedcb567bdb.rmeta b/target/release/deps/libmemchr-fc42ddedcb567bdb.rmeta new file mode 100644 index 0000000..a09a6cb Binary files /dev/null and b/target/release/deps/libmemchr-fc42ddedcb567bdb.rmeta differ diff --git a/target/release/deps/libnum_traits-b12829f3a5a2fac8.rlib b/target/release/deps/libnum_traits-b12829f3a5a2fac8.rlib new file mode 100644 index 0000000..a21f971 Binary files /dev/null and b/target/release/deps/libnum_traits-b12829f3a5a2fac8.rlib differ diff --git a/target/release/deps/libnum_traits-b12829f3a5a2fac8.rmeta b/target/release/deps/libnum_traits-b12829f3a5a2fac8.rmeta new file mode 100644 index 0000000..5d6e572 Binary files /dev/null and b/target/release/deps/libnum_traits-b12829f3a5a2fac8.rmeta differ diff --git a/target/release/deps/liboorandom-9a3fc14511e7c650.rlib b/target/release/deps/liboorandom-9a3fc14511e7c650.rlib new file mode 100644 index 0000000..73c697b Binary files /dev/null and b/target/release/deps/liboorandom-9a3fc14511e7c650.rlib differ diff --git a/target/release/deps/liboorandom-9a3fc14511e7c650.rmeta b/target/release/deps/liboorandom-9a3fc14511e7c650.rmeta new file mode 100644 index 0000000..395a8f6 Binary files /dev/null and b/target/release/deps/liboorandom-9a3fc14511e7c650.rmeta differ diff --git a/target/release/deps/libopenvx_buffer-128223b2e1f63b9d.rlib b/target/release/deps/libopenvx_buffer-128223b2e1f63b9d.rlib new file mode 100644 index 0000000..f0b30e9 Binary files /dev/null and b/target/release/deps/libopenvx_buffer-128223b2e1f63b9d.rlib differ diff --git a/target/release/deps/libopenvx_buffer-128223b2e1f63b9d.rmeta b/target/release/deps/libopenvx_buffer-128223b2e1f63b9d.rmeta new file mode 100644 index 0000000..705a1b6 Binary files /dev/null and b/target/release/deps/libopenvx_buffer-128223b2e1f63b9d.rmeta differ diff --git a/target/release/deps/libopenvx_buffer-4e6847c1bb1f920a.rlib b/target/release/deps/libopenvx_buffer-4e6847c1bb1f920a.rlib new file mode 100644 index 0000000..bed0745 Binary files /dev/null and b/target/release/deps/libopenvx_buffer-4e6847c1bb1f920a.rlib differ diff --git a/target/release/deps/libopenvx_buffer-4e6847c1bb1f920a.rmeta b/target/release/deps/libopenvx_buffer-4e6847c1bb1f920a.rmeta new file mode 100644 index 0000000..1f093ff Binary files /dev/null and b/target/release/deps/libopenvx_buffer-4e6847c1bb1f920a.rmeta differ diff --git a/target/release/deps/libopenvx_core.a b/target/release/deps/libopenvx_core.a index d47fadb..0fe46f0 100644 Binary files a/target/release/deps/libopenvx_core.a and b/target/release/deps/libopenvx_core.a differ diff --git a/target/release/deps/libopenvx_core.rlib b/target/release/deps/libopenvx_core.rlib index 9ebea07..ff27264 100644 Binary files a/target/release/deps/libopenvx_core.rlib and b/target/release/deps/libopenvx_core.rlib differ diff --git a/target/release/deps/libopenvx_core.so b/target/release/deps/libopenvx_core.so index 376b5eb..f951ced 100755 Binary files a/target/release/deps/libopenvx_core.so and b/target/release/deps/libopenvx_core.so differ diff --git a/target/release/deps/libopenvx_ffi.a b/target/release/deps/libopenvx_ffi.a index deb31ee..d492dd5 100644 Binary files a/target/release/deps/libopenvx_ffi.a and b/target/release/deps/libopenvx_ffi.a differ diff --git a/target/release/deps/libopenvx_ffi.so b/target/release/deps/libopenvx_ffi.so index c7b193f..30774f0 100755 Binary files a/target/release/deps/libopenvx_ffi.so and b/target/release/deps/libopenvx_ffi.so differ diff --git a/target/release/deps/libopenvx_image-7a19fbb83bd6b514.rlib b/target/release/deps/libopenvx_image-7a19fbb83bd6b514.rlib new file mode 100644 index 0000000..f658cca Binary files /dev/null and b/target/release/deps/libopenvx_image-7a19fbb83bd6b514.rlib differ diff --git a/target/release/deps/libopenvx_image-7a19fbb83bd6b514.rmeta b/target/release/deps/libopenvx_image-7a19fbb83bd6b514.rmeta new file mode 100644 index 0000000..ff5bbfe Binary files /dev/null and b/target/release/deps/libopenvx_image-7a19fbb83bd6b514.rmeta differ diff --git a/target/release/deps/libopenvx_image-f36425eb72d49a8f.rlib b/target/release/deps/libopenvx_image-f36425eb72d49a8f.rlib new file mode 100644 index 0000000..3b331cf Binary files /dev/null and b/target/release/deps/libopenvx_image-f36425eb72d49a8f.rlib differ diff --git a/target/release/deps/libopenvx_image-f36425eb72d49a8f.rmeta b/target/release/deps/libopenvx_image-f36425eb72d49a8f.rmeta new file mode 100644 index 0000000..38b508a Binary files /dev/null and b/target/release/deps/libopenvx_image-f36425eb72d49a8f.rmeta differ diff --git a/target/release/deps/libopenvx_vision-1de156f7df597497.rlib b/target/release/deps/libopenvx_vision-1de156f7df597497.rlib new file mode 100644 index 0000000..d2b575f Binary files /dev/null and b/target/release/deps/libopenvx_vision-1de156f7df597497.rlib differ diff --git a/target/release/deps/libopenvx_vision-1de156f7df597497.rmeta b/target/release/deps/libopenvx_vision-1de156f7df597497.rmeta new file mode 100644 index 0000000..fca7656 Binary files /dev/null and b/target/release/deps/libopenvx_vision-1de156f7df597497.rmeta differ diff --git a/target/release/deps/libopenvx_vision-fa003c9243f70d93.rlib b/target/release/deps/libopenvx_vision-fa003c9243f70d93.rlib new file mode 100644 index 0000000..29374fe Binary files /dev/null and b/target/release/deps/libopenvx_vision-fa003c9243f70d93.rlib differ diff --git a/target/release/deps/libopenvx_vision-fa003c9243f70d93.rmeta b/target/release/deps/libopenvx_vision-fa003c9243f70d93.rmeta new file mode 100644 index 0000000..727253b Binary files /dev/null and b/target/release/deps/libopenvx_vision-fa003c9243f70d93.rmeta differ diff --git a/target/release/deps/libpetgraph-75e305f69b0d8fc3.rlib b/target/release/deps/libpetgraph-75e305f69b0d8fc3.rlib new file mode 100644 index 0000000..6f04fba Binary files /dev/null and b/target/release/deps/libpetgraph-75e305f69b0d8fc3.rlib differ diff --git a/target/release/deps/libpetgraph-75e305f69b0d8fc3.rmeta b/target/release/deps/libpetgraph-75e305f69b0d8fc3.rmeta new file mode 100644 index 0000000..41e1885 Binary files /dev/null and b/target/release/deps/libpetgraph-75e305f69b0d8fc3.rmeta differ diff --git a/target/release/deps/libplotters-75403225b266a9e5.rlib b/target/release/deps/libplotters-75403225b266a9e5.rlib new file mode 100644 index 0000000..96a69a6 Binary files /dev/null and b/target/release/deps/libplotters-75403225b266a9e5.rlib differ diff --git a/target/release/deps/libplotters-75403225b266a9e5.rmeta b/target/release/deps/libplotters-75403225b266a9e5.rmeta new file mode 100644 index 0000000..0ca3d12 Binary files /dev/null and b/target/release/deps/libplotters-75403225b266a9e5.rmeta differ diff --git a/target/release/deps/libplotters_backend-edf975c5351467da.rlib b/target/release/deps/libplotters_backend-edf975c5351467da.rlib new file mode 100644 index 0000000..e925027 Binary files /dev/null and b/target/release/deps/libplotters_backend-edf975c5351467da.rlib differ diff --git a/target/release/deps/libplotters_backend-edf975c5351467da.rmeta b/target/release/deps/libplotters_backend-edf975c5351467da.rmeta new file mode 100644 index 0000000..9cf3ff0 Binary files /dev/null and b/target/release/deps/libplotters_backend-edf975c5351467da.rmeta differ diff --git a/target/release/deps/libplotters_svg-d8189738bdf2cfac.rlib b/target/release/deps/libplotters_svg-d8189738bdf2cfac.rlib new file mode 100644 index 0000000..90c0934 Binary files /dev/null and b/target/release/deps/libplotters_svg-d8189738bdf2cfac.rlib differ diff --git a/target/release/deps/libplotters_svg-d8189738bdf2cfac.rmeta b/target/release/deps/libplotters_svg-d8189738bdf2cfac.rmeta new file mode 100644 index 0000000..2e69931 Binary files /dev/null and b/target/release/deps/libplotters_svg-d8189738bdf2cfac.rmeta differ diff --git a/target/release/deps/librayon-ef538e4aeb428f43.rlib b/target/release/deps/librayon-ef538e4aeb428f43.rlib new file mode 100644 index 0000000..fdb0782 Binary files /dev/null and b/target/release/deps/librayon-ef538e4aeb428f43.rlib differ diff --git a/target/release/deps/librayon-ef538e4aeb428f43.rmeta b/target/release/deps/librayon-ef538e4aeb428f43.rmeta new file mode 100644 index 0000000..9ccbae3 Binary files /dev/null and b/target/release/deps/librayon-ef538e4aeb428f43.rmeta differ diff --git a/target/release/deps/librayon_core-5a375d021037a2b6.rlib b/target/release/deps/librayon_core-5a375d021037a2b6.rlib new file mode 100644 index 0000000..0a27ceb Binary files /dev/null and b/target/release/deps/librayon_core-5a375d021037a2b6.rlib differ diff --git a/target/release/deps/librayon_core-5a375d021037a2b6.rmeta b/target/release/deps/librayon_core-5a375d021037a2b6.rmeta new file mode 100644 index 0000000..2bdb0bd Binary files /dev/null and b/target/release/deps/librayon_core-5a375d021037a2b6.rmeta differ diff --git a/target/release/deps/libregex-f95dd342f35f01a5.rlib b/target/release/deps/libregex-f95dd342f35f01a5.rlib new file mode 100644 index 0000000..1a0ed3d Binary files /dev/null and b/target/release/deps/libregex-f95dd342f35f01a5.rlib differ diff --git a/target/release/deps/libregex-f95dd342f35f01a5.rmeta b/target/release/deps/libregex-f95dd342f35f01a5.rmeta new file mode 100644 index 0000000..0a33a38 Binary files /dev/null and b/target/release/deps/libregex-f95dd342f35f01a5.rmeta differ diff --git a/target/release/deps/libregex_automata-377dae046e8013f7.rlib b/target/release/deps/libregex_automata-377dae046e8013f7.rlib new file mode 100644 index 0000000..df6e18b Binary files /dev/null and b/target/release/deps/libregex_automata-377dae046e8013f7.rlib differ diff --git a/target/release/deps/libregex_automata-377dae046e8013f7.rmeta b/target/release/deps/libregex_automata-377dae046e8013f7.rmeta new file mode 100644 index 0000000..6a3c9e0 Binary files /dev/null and b/target/release/deps/libregex_automata-377dae046e8013f7.rmeta differ diff --git a/target/release/deps/libregex_syntax-93a683800cc09f4c.rlib b/target/release/deps/libregex_syntax-93a683800cc09f4c.rlib new file mode 100644 index 0000000..221c8eb Binary files /dev/null and b/target/release/deps/libregex_syntax-93a683800cc09f4c.rlib differ diff --git a/target/release/deps/libregex_syntax-93a683800cc09f4c.rmeta b/target/release/deps/libregex_syntax-93a683800cc09f4c.rmeta new file mode 100644 index 0000000..6237ca6 Binary files /dev/null and b/target/release/deps/libregex_syntax-93a683800cc09f4c.rmeta differ diff --git a/target/release/deps/libsame_file-64e531aa09097702.rlib b/target/release/deps/libsame_file-64e531aa09097702.rlib new file mode 100644 index 0000000..7169ed2 Binary files /dev/null and b/target/release/deps/libsame_file-64e531aa09097702.rlib differ diff --git a/target/release/deps/libsame_file-64e531aa09097702.rmeta b/target/release/deps/libsame_file-64e531aa09097702.rmeta new file mode 100644 index 0000000..714b158 Binary files /dev/null and b/target/release/deps/libsame_file-64e531aa09097702.rmeta differ diff --git a/target/release/deps/libserde-c8a3a5ede2ff5100.rlib b/target/release/deps/libserde-c8a3a5ede2ff5100.rlib new file mode 100644 index 0000000..159d0fb Binary files /dev/null and b/target/release/deps/libserde-c8a3a5ede2ff5100.rlib differ diff --git a/target/release/deps/libserde-c8a3a5ede2ff5100.rmeta b/target/release/deps/libserde-c8a3a5ede2ff5100.rmeta new file mode 100644 index 0000000..f257666 Binary files /dev/null and b/target/release/deps/libserde-c8a3a5ede2ff5100.rmeta differ diff --git a/target/release/deps/libserde_core-c78673a2db8b2ceb.rlib b/target/release/deps/libserde_core-c78673a2db8b2ceb.rlib new file mode 100644 index 0000000..9b28138 Binary files /dev/null and b/target/release/deps/libserde_core-c78673a2db8b2ceb.rlib differ diff --git a/target/release/deps/libserde_core-c78673a2db8b2ceb.rmeta b/target/release/deps/libserde_core-c78673a2db8b2ceb.rmeta new file mode 100644 index 0000000..93273e0 Binary files /dev/null and b/target/release/deps/libserde_core-c78673a2db8b2ceb.rmeta differ diff --git a/target/release/deps/libserde_derive-90564e0e713ce840.so b/target/release/deps/libserde_derive-90564e0e713ce840.so new file mode 100755 index 0000000..15f5336 Binary files /dev/null and b/target/release/deps/libserde_derive-90564e0e713ce840.so differ diff --git a/target/release/deps/libserde_json-ac29baafb7bec543.rlib b/target/release/deps/libserde_json-ac29baafb7bec543.rlib new file mode 100644 index 0000000..8d9d74d Binary files /dev/null and b/target/release/deps/libserde_json-ac29baafb7bec543.rlib differ diff --git a/target/release/deps/libserde_json-ac29baafb7bec543.rmeta b/target/release/deps/libserde_json-ac29baafb7bec543.rmeta new file mode 100644 index 0000000..d7e4430 Binary files /dev/null and b/target/release/deps/libserde_json-ac29baafb7bec543.rmeta differ diff --git a/target/release/deps/libsyn-3072a9128d9eec2e.rlib b/target/release/deps/libsyn-3072a9128d9eec2e.rlib new file mode 100644 index 0000000..b8572cf Binary files /dev/null and b/target/release/deps/libsyn-3072a9128d9eec2e.rlib differ diff --git a/target/release/deps/libsyn-3072a9128d9eec2e.rmeta b/target/release/deps/libsyn-3072a9128d9eec2e.rmeta new file mode 100644 index 0000000..04be619 Binary files /dev/null and b/target/release/deps/libsyn-3072a9128d9eec2e.rmeta differ diff --git a/target/release/deps/libthiserror-c496eca3cadcee06.rlib b/target/release/deps/libthiserror-c496eca3cadcee06.rlib new file mode 100644 index 0000000..3af5376 Binary files /dev/null and b/target/release/deps/libthiserror-c496eca3cadcee06.rlib differ diff --git a/target/release/deps/libthiserror-c496eca3cadcee06.rmeta b/target/release/deps/libthiserror-c496eca3cadcee06.rmeta new file mode 100644 index 0000000..de564bd Binary files /dev/null and b/target/release/deps/libthiserror-c496eca3cadcee06.rmeta differ diff --git a/target/release/deps/libthiserror_impl-2bfbf6a429632a87.so b/target/release/deps/libthiserror_impl-2bfbf6a429632a87.so new file mode 100755 index 0000000..de17185 Binary files /dev/null and b/target/release/deps/libthiserror_impl-2bfbf6a429632a87.so differ diff --git a/target/release/deps/libtinytemplate-699abacd98ca316b.rlib b/target/release/deps/libtinytemplate-699abacd98ca316b.rlib new file mode 100644 index 0000000..0c9fcdb Binary files /dev/null and b/target/release/deps/libtinytemplate-699abacd98ca316b.rlib differ diff --git a/target/release/deps/libtinytemplate-699abacd98ca316b.rmeta b/target/release/deps/libtinytemplate-699abacd98ca316b.rmeta new file mode 100644 index 0000000..5a6eb95 Binary files /dev/null and b/target/release/deps/libtinytemplate-699abacd98ca316b.rmeta differ diff --git a/target/release/deps/libwalkdir-65f9781b0a65b478.rlib b/target/release/deps/libwalkdir-65f9781b0a65b478.rlib new file mode 100644 index 0000000..0d19b58 Binary files /dev/null and b/target/release/deps/libwalkdir-65f9781b0a65b478.rlib differ diff --git a/target/release/deps/libwalkdir-65f9781b0a65b478.rmeta b/target/release/deps/libwalkdir-65f9781b0a65b478.rmeta new file mode 100644 index 0000000..7536914 Binary files /dev/null and b/target/release/deps/libwalkdir-65f9781b0a65b478.rmeta differ diff --git a/target/release/deps/libzerocopy-1958fa5fef0c6d9e.rlib b/target/release/deps/libzerocopy-1958fa5fef0c6d9e.rlib new file mode 100644 index 0000000..687dc00 Binary files /dev/null and b/target/release/deps/libzerocopy-1958fa5fef0c6d9e.rlib differ diff --git a/target/release/deps/libzerocopy-1958fa5fef0c6d9e.rmeta b/target/release/deps/libzerocopy-1958fa5fef0c6d9e.rmeta new file mode 100644 index 0000000..747d2ce Binary files /dev/null and b/target/release/deps/libzerocopy-1958fa5fef0c6d9e.rmeta differ diff --git a/target/release/deps/libzerocopy_derive-7bb9374e0145e9e4.so b/target/release/deps/libzerocopy_derive-7bb9374e0145e9e4.so new file mode 100755 index 0000000..b7d4f48 Binary files /dev/null and b/target/release/deps/libzerocopy_derive-7bb9374e0145e9e4.so differ diff --git a/target/release/deps/libzmij-9f70c96db9cb66ea.rlib b/target/release/deps/libzmij-9f70c96db9cb66ea.rlib new file mode 100644 index 0000000..f46ac36 Binary files /dev/null and b/target/release/deps/libzmij-9f70c96db9cb66ea.rlib differ diff --git a/target/release/deps/libzmij-9f70c96db9cb66ea.rmeta b/target/release/deps/libzmij-9f70c96db9cb66ea.rmeta new file mode 100644 index 0000000..c48f774 Binary files /dev/null and b/target/release/deps/libzmij-9f70c96db9cb66ea.rmeta differ diff --git a/target/release/deps/lock_api-52c2a7b84d1b49e5.d b/target/release/deps/lock_api-52c2a7b84d1b49e5.d index 4792398..211b71e 100644 --- a/target/release/deps/lock_api-52c2a7b84d1b49e5.d +++ b/target/release/deps/lock_api-52c2a7b84d1b49e5.d @@ -1,8 +1,16 @@ +<<<<<<< HEAD +/home/simon/.openclaw/workspace/rustVX/target/release/deps/lock_api-52c2a7b84d1b49e5.d: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lock_api-0.4.14/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lock_api-0.4.14/src/mutex.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lock_api-0.4.14/src/remutex.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lock_api-0.4.14/src/rwlock.rs + +/home/simon/.openclaw/workspace/rustVX/target/release/deps/liblock_api-52c2a7b84d1b49e5.rlib: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lock_api-0.4.14/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lock_api-0.4.14/src/mutex.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lock_api-0.4.14/src/remutex.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lock_api-0.4.14/src/rwlock.rs + +/home/simon/.openclaw/workspace/rustVX/target/release/deps/liblock_api-52c2a7b84d1b49e5.rmeta: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lock_api-0.4.14/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lock_api-0.4.14/src/mutex.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lock_api-0.4.14/src/remutex.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lock_api-0.4.14/src/rwlock.rs +======= /home/simon/.openclaw/workspace/rustvx/target/release/deps/lock_api-52c2a7b84d1b49e5.d: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lock_api-0.4.14/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lock_api-0.4.14/src/mutex.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lock_api-0.4.14/src/remutex.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lock_api-0.4.14/src/rwlock.rs /home/simon/.openclaw/workspace/rustvx/target/release/deps/liblock_api-52c2a7b84d1b49e5.rlib: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lock_api-0.4.14/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lock_api-0.4.14/src/mutex.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lock_api-0.4.14/src/remutex.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lock_api-0.4.14/src/rwlock.rs /home/simon/.openclaw/workspace/rustvx/target/release/deps/liblock_api-52c2a7b84d1b49e5.rmeta: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lock_api-0.4.14/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lock_api-0.4.14/src/mutex.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lock_api-0.4.14/src/remutex.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lock_api-0.4.14/src/rwlock.rs +>>>>>>> origin/master /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lock_api-0.4.14/src/lib.rs: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/lock_api-0.4.14/src/mutex.rs: diff --git a/target/release/deps/log-17538fffd1d89ef5.d b/target/release/deps/log-17538fffd1d89ef5.d index 3437ba2..e925c4b 100644 --- a/target/release/deps/log-17538fffd1d89ef5.d +++ b/target/release/deps/log-17538fffd1d89ef5.d @@ -1,8 +1,16 @@ +<<<<<<< HEAD +/home/simon/.openclaw/workspace/rustVX/target/release/deps/log-17538fffd1d89ef5.d: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/log-0.4.29/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/log-0.4.29/src/macros.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/log-0.4.29/src/serde.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/log-0.4.29/src/__private_api.rs + +/home/simon/.openclaw/workspace/rustVX/target/release/deps/liblog-17538fffd1d89ef5.rlib: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/log-0.4.29/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/log-0.4.29/src/macros.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/log-0.4.29/src/serde.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/log-0.4.29/src/__private_api.rs + +/home/simon/.openclaw/workspace/rustVX/target/release/deps/liblog-17538fffd1d89ef5.rmeta: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/log-0.4.29/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/log-0.4.29/src/macros.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/log-0.4.29/src/serde.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/log-0.4.29/src/__private_api.rs +======= /home/simon/.openclaw/workspace/rustvx/target/release/deps/log-17538fffd1d89ef5.d: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/log-0.4.29/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/log-0.4.29/src/macros.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/log-0.4.29/src/serde.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/log-0.4.29/src/__private_api.rs /home/simon/.openclaw/workspace/rustvx/target/release/deps/liblog-17538fffd1d89ef5.rlib: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/log-0.4.29/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/log-0.4.29/src/macros.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/log-0.4.29/src/serde.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/log-0.4.29/src/__private_api.rs /home/simon/.openclaw/workspace/rustvx/target/release/deps/liblog-17538fffd1d89ef5.rmeta: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/log-0.4.29/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/log-0.4.29/src/macros.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/log-0.4.29/src/serde.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/log-0.4.29/src/__private_api.rs +>>>>>>> origin/master /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/log-0.4.29/src/lib.rs: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/log-0.4.29/src/macros.rs: diff --git a/target/release/deps/memchr-fc42ddedcb567bdb.d b/target/release/deps/memchr-fc42ddedcb567bdb.d new file mode 100644 index 0000000..46f34ec --- /dev/null +++ b/target/release/deps/memchr-fc42ddedcb567bdb.d @@ -0,0 +1,33 @@ +/home/simon/.openclaw/workspace/rustVX/target/release/deps/memchr-fc42ddedcb567bdb.d: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/macros.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/arch/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/arch/all/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/arch/all/memchr.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/arch/all/packedpair/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/arch/all/packedpair/default_rank.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/arch/all/rabinkarp.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/arch/all/shiftor.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/arch/all/twoway.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/arch/generic/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/arch/generic/memchr.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/arch/generic/packedpair.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/arch/x86_64/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/arch/x86_64/avx2/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/arch/x86_64/avx2/memchr.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/arch/x86_64/avx2/packedpair.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/arch/x86_64/sse2/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/arch/x86_64/sse2/memchr.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/arch/x86_64/sse2/packedpair.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/arch/x86_64/memchr.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/cow.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/ext.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/memchr.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/memmem/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/memmem/searcher.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/vector.rs + +/home/simon/.openclaw/workspace/rustVX/target/release/deps/libmemchr-fc42ddedcb567bdb.rlib: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/macros.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/arch/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/arch/all/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/arch/all/memchr.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/arch/all/packedpair/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/arch/all/packedpair/default_rank.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/arch/all/rabinkarp.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/arch/all/shiftor.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/arch/all/twoway.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/arch/generic/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/arch/generic/memchr.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/arch/generic/packedpair.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/arch/x86_64/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/arch/x86_64/avx2/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/arch/x86_64/avx2/memchr.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/arch/x86_64/avx2/packedpair.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/arch/x86_64/sse2/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/arch/x86_64/sse2/memchr.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/arch/x86_64/sse2/packedpair.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/arch/x86_64/memchr.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/cow.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/ext.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/memchr.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/memmem/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/memmem/searcher.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/vector.rs + +/home/simon/.openclaw/workspace/rustVX/target/release/deps/libmemchr-fc42ddedcb567bdb.rmeta: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/macros.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/arch/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/arch/all/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/arch/all/memchr.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/arch/all/packedpair/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/arch/all/packedpair/default_rank.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/arch/all/rabinkarp.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/arch/all/shiftor.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/arch/all/twoway.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/arch/generic/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/arch/generic/memchr.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/arch/generic/packedpair.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/arch/x86_64/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/arch/x86_64/avx2/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/arch/x86_64/avx2/memchr.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/arch/x86_64/avx2/packedpair.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/arch/x86_64/sse2/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/arch/x86_64/sse2/memchr.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/arch/x86_64/sse2/packedpair.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/arch/x86_64/memchr.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/cow.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/ext.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/memchr.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/memmem/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/memmem/searcher.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/vector.rs + +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/lib.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/macros.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/arch/mod.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/arch/all/mod.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/arch/all/memchr.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/arch/all/packedpair/mod.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/arch/all/packedpair/default_rank.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/arch/all/rabinkarp.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/arch/all/shiftor.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/arch/all/twoway.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/arch/generic/mod.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/arch/generic/memchr.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/arch/generic/packedpair.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/arch/x86_64/mod.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/arch/x86_64/avx2/mod.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/arch/x86_64/avx2/memchr.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/arch/x86_64/avx2/packedpair.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/arch/x86_64/sse2/mod.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/arch/x86_64/sse2/memchr.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/arch/x86_64/sse2/packedpair.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/arch/x86_64/memchr.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/cow.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/ext.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/memchr.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/memmem/mod.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/memmem/searcher.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/memchr-2.8.0/src/vector.rs: diff --git a/target/release/deps/morphology_tests-9427675ee029507d b/target/release/deps/morphology_tests-9427675ee029507d new file mode 100755 index 0000000..26e53ad Binary files /dev/null and b/target/release/deps/morphology_tests-9427675ee029507d differ diff --git a/target/release/deps/morphology_tests-9427675ee029507d.d b/target/release/deps/morphology_tests-9427675ee029507d.d new file mode 100644 index 0000000..8933e19 --- /dev/null +++ b/target/release/deps/morphology_tests-9427675ee029507d.d @@ -0,0 +1,5 @@ +/home/simon/.openclaw/workspace/rustVX/target/release/deps/morphology_tests-9427675ee029507d.d: openvx-vision/tests/morphology_tests.rs + +/home/simon/.openclaw/workspace/rustVX/target/release/deps/morphology_tests-9427675ee029507d: openvx-vision/tests/morphology_tests.rs + +openvx-vision/tests/morphology_tests.rs: diff --git a/target/release/deps/num_traits-b12829f3a5a2fac8.d b/target/release/deps/num_traits-b12829f3a5a2fac8.d new file mode 100644 index 0000000..9a0d101 --- /dev/null +++ b/target/release/deps/num_traits-b12829f3a5a2fac8.d @@ -0,0 +1,25 @@ +/home/simon/.openclaw/workspace/rustVX/target/release/deps/num_traits-b12829f3a5a2fac8.d: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-traits-0.2.19/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-traits-0.2.19/src/macros.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-traits-0.2.19/src/bounds.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-traits-0.2.19/src/cast.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-traits-0.2.19/src/float.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-traits-0.2.19/src/identities.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-traits-0.2.19/src/int.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-traits-0.2.19/src/ops/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-traits-0.2.19/src/ops/bytes.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-traits-0.2.19/src/ops/checked.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-traits-0.2.19/src/ops/euclid.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-traits-0.2.19/src/ops/inv.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-traits-0.2.19/src/ops/mul_add.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-traits-0.2.19/src/ops/overflowing.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-traits-0.2.19/src/ops/saturating.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-traits-0.2.19/src/ops/wrapping.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-traits-0.2.19/src/pow.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-traits-0.2.19/src/real.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-traits-0.2.19/src/sign.rs + +/home/simon/.openclaw/workspace/rustVX/target/release/deps/libnum_traits-b12829f3a5a2fac8.rlib: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-traits-0.2.19/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-traits-0.2.19/src/macros.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-traits-0.2.19/src/bounds.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-traits-0.2.19/src/cast.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-traits-0.2.19/src/float.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-traits-0.2.19/src/identities.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-traits-0.2.19/src/int.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-traits-0.2.19/src/ops/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-traits-0.2.19/src/ops/bytes.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-traits-0.2.19/src/ops/checked.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-traits-0.2.19/src/ops/euclid.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-traits-0.2.19/src/ops/inv.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-traits-0.2.19/src/ops/mul_add.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-traits-0.2.19/src/ops/overflowing.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-traits-0.2.19/src/ops/saturating.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-traits-0.2.19/src/ops/wrapping.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-traits-0.2.19/src/pow.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-traits-0.2.19/src/real.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-traits-0.2.19/src/sign.rs + +/home/simon/.openclaw/workspace/rustVX/target/release/deps/libnum_traits-b12829f3a5a2fac8.rmeta: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-traits-0.2.19/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-traits-0.2.19/src/macros.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-traits-0.2.19/src/bounds.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-traits-0.2.19/src/cast.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-traits-0.2.19/src/float.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-traits-0.2.19/src/identities.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-traits-0.2.19/src/int.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-traits-0.2.19/src/ops/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-traits-0.2.19/src/ops/bytes.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-traits-0.2.19/src/ops/checked.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-traits-0.2.19/src/ops/euclid.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-traits-0.2.19/src/ops/inv.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-traits-0.2.19/src/ops/mul_add.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-traits-0.2.19/src/ops/overflowing.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-traits-0.2.19/src/ops/saturating.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-traits-0.2.19/src/ops/wrapping.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-traits-0.2.19/src/pow.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-traits-0.2.19/src/real.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-traits-0.2.19/src/sign.rs + +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-traits-0.2.19/src/lib.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-traits-0.2.19/src/macros.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-traits-0.2.19/src/bounds.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-traits-0.2.19/src/cast.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-traits-0.2.19/src/float.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-traits-0.2.19/src/identities.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-traits-0.2.19/src/int.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-traits-0.2.19/src/ops/mod.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-traits-0.2.19/src/ops/bytes.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-traits-0.2.19/src/ops/checked.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-traits-0.2.19/src/ops/euclid.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-traits-0.2.19/src/ops/inv.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-traits-0.2.19/src/ops/mul_add.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-traits-0.2.19/src/ops/overflowing.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-traits-0.2.19/src/ops/saturating.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-traits-0.2.19/src/ops/wrapping.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-traits-0.2.19/src/pow.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-traits-0.2.19/src/real.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/num-traits-0.2.19/src/sign.rs: diff --git a/target/release/deps/object_detection_tests-9bf4c98018d04238 b/target/release/deps/object_detection_tests-9bf4c98018d04238 new file mode 100755 index 0000000..ed4c92d Binary files /dev/null and b/target/release/deps/object_detection_tests-9bf4c98018d04238 differ diff --git a/target/release/deps/object_detection_tests-9bf4c98018d04238.d b/target/release/deps/object_detection_tests-9bf4c98018d04238.d new file mode 100644 index 0000000..a834eae --- /dev/null +++ b/target/release/deps/object_detection_tests-9bf4c98018d04238.d @@ -0,0 +1,5 @@ +/home/simon/.openclaw/workspace/rustVX/target/release/deps/object_detection_tests-9bf4c98018d04238.d: openvx-vision/tests/object_detection_tests.rs + +/home/simon/.openclaw/workspace/rustVX/target/release/deps/object_detection_tests-9bf4c98018d04238: openvx-vision/tests/object_detection_tests.rs + +openvx-vision/tests/object_detection_tests.rs: diff --git a/target/release/deps/once_cell-4d22a588ad61cb01.d b/target/release/deps/once_cell-4d22a588ad61cb01.d index 9a0235a..36fc8c0 100644 --- a/target/release/deps/once_cell-4d22a588ad61cb01.d +++ b/target/release/deps/once_cell-4d22a588ad61cb01.d @@ -1,8 +1,16 @@ +<<<<<<< HEAD +/home/simon/.openclaw/workspace/rustVX/target/release/deps/once_cell-4d22a588ad61cb01.d: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/once_cell-1.21.4/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/once_cell-1.21.4/src/imp_std.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/once_cell-1.21.4/src/race.rs + +/home/simon/.openclaw/workspace/rustVX/target/release/deps/libonce_cell-4d22a588ad61cb01.rlib: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/once_cell-1.21.4/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/once_cell-1.21.4/src/imp_std.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/once_cell-1.21.4/src/race.rs + +/home/simon/.openclaw/workspace/rustVX/target/release/deps/libonce_cell-4d22a588ad61cb01.rmeta: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/once_cell-1.21.4/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/once_cell-1.21.4/src/imp_std.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/once_cell-1.21.4/src/race.rs +======= /home/simon/.openclaw/workspace/rustvx/target/release/deps/once_cell-4d22a588ad61cb01.d: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/once_cell-1.21.4/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/once_cell-1.21.4/src/imp_std.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/once_cell-1.21.4/src/race.rs /home/simon/.openclaw/workspace/rustvx/target/release/deps/libonce_cell-4d22a588ad61cb01.rlib: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/once_cell-1.21.4/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/once_cell-1.21.4/src/imp_std.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/once_cell-1.21.4/src/race.rs /home/simon/.openclaw/workspace/rustvx/target/release/deps/libonce_cell-4d22a588ad61cb01.rmeta: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/once_cell-1.21.4/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/once_cell-1.21.4/src/imp_std.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/once_cell-1.21.4/src/race.rs +>>>>>>> origin/master /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/once_cell-1.21.4/src/lib.rs: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/once_cell-1.21.4/src/imp_std.rs: diff --git a/target/release/deps/oorandom-9a3fc14511e7c650.d b/target/release/deps/oorandom-9a3fc14511e7c650.d new file mode 100644 index 0000000..eaf86b7 --- /dev/null +++ b/target/release/deps/oorandom-9a3fc14511e7c650.d @@ -0,0 +1,7 @@ +/home/simon/.openclaw/workspace/rustVX/target/release/deps/oorandom-9a3fc14511e7c650.d: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/oorandom-11.1.5/src/lib.rs + +/home/simon/.openclaw/workspace/rustVX/target/release/deps/liboorandom-9a3fc14511e7c650.rlib: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/oorandom-11.1.5/src/lib.rs + +/home/simon/.openclaw/workspace/rustVX/target/release/deps/liboorandom-9a3fc14511e7c650.rmeta: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/oorandom-11.1.5/src/lib.rs + +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/oorandom-11.1.5/src/lib.rs: diff --git a/target/release/deps/openvx_buffer-128223b2e1f63b9d.d b/target/release/deps/openvx_buffer-128223b2e1f63b9d.d new file mode 100644 index 0000000..8a30323 --- /dev/null +++ b/target/release/deps/openvx_buffer-128223b2e1f63b9d.d @@ -0,0 +1,8 @@ +/home/simon/.openclaw/workspace/rustVX/target/release/deps/openvx_buffer-128223b2e1f63b9d.d: openvx-buffer/src/lib.rs openvx-buffer/src/c_api.rs + +/home/simon/.openclaw/workspace/rustVX/target/release/deps/libopenvx_buffer-128223b2e1f63b9d.rlib: openvx-buffer/src/lib.rs openvx-buffer/src/c_api.rs + +/home/simon/.openclaw/workspace/rustVX/target/release/deps/libopenvx_buffer-128223b2e1f63b9d.rmeta: openvx-buffer/src/lib.rs openvx-buffer/src/c_api.rs + +openvx-buffer/src/lib.rs: +openvx-buffer/src/c_api.rs: diff --git a/target/release/deps/openvx_buffer-199f36f5e80c1d00 b/target/release/deps/openvx_buffer-199f36f5e80c1d00 new file mode 100755 index 0000000..8e68ab9 Binary files /dev/null and b/target/release/deps/openvx_buffer-199f36f5e80c1d00 differ diff --git a/target/release/deps/openvx_buffer-199f36f5e80c1d00.d b/target/release/deps/openvx_buffer-199f36f5e80c1d00.d new file mode 100644 index 0000000..9cf7d98 --- /dev/null +++ b/target/release/deps/openvx_buffer-199f36f5e80c1d00.d @@ -0,0 +1,6 @@ +/home/simon/.openclaw/workspace/rustVX/target/release/deps/openvx_buffer-199f36f5e80c1d00.d: openvx-buffer/src/lib.rs openvx-buffer/src/c_api.rs + +/home/simon/.openclaw/workspace/rustVX/target/release/deps/openvx_buffer-199f36f5e80c1d00: openvx-buffer/src/lib.rs openvx-buffer/src/c_api.rs + +openvx-buffer/src/lib.rs: +openvx-buffer/src/c_api.rs: diff --git a/target/release/deps/openvx_buffer-4e6847c1bb1f920a.d b/target/release/deps/openvx_buffer-4e6847c1bb1f920a.d new file mode 100644 index 0000000..82574bb --- /dev/null +++ b/target/release/deps/openvx_buffer-4e6847c1bb1f920a.d @@ -0,0 +1,8 @@ +/home/simon/.openclaw/workspace/rustVX/target/release/deps/openvx_buffer-4e6847c1bb1f920a.d: openvx-buffer/src/lib.rs openvx-buffer/src/c_api.rs + +/home/simon/.openclaw/workspace/rustVX/target/release/deps/libopenvx_buffer-4e6847c1bb1f920a.rlib: openvx-buffer/src/lib.rs openvx-buffer/src/c_api.rs + +/home/simon/.openclaw/workspace/rustVX/target/release/deps/libopenvx_buffer-4e6847c1bb1f920a.rmeta: openvx-buffer/src/lib.rs openvx-buffer/src/c_api.rs + +openvx-buffer/src/lib.rs: +openvx-buffer/src/c_api.rs: diff --git a/target/release/deps/openvx_core-b3e9f44a082d8104 b/target/release/deps/openvx_core-b3e9f44a082d8104 new file mode 100755 index 0000000..1943168 Binary files /dev/null and b/target/release/deps/openvx_core-b3e9f44a082d8104 differ diff --git a/target/release/deps/openvx_core-b3e9f44a082d8104.d b/target/release/deps/openvx_core-b3e9f44a082d8104.d new file mode 100644 index 0000000..baa5b9e --- /dev/null +++ b/target/release/deps/openvx_core-b3e9f44a082d8104.d @@ -0,0 +1,12 @@ +/home/simon/.openclaw/workspace/rustVX/target/release/deps/openvx_core-b3e9f44a082d8104.d: openvx-core/src/lib.rs openvx-core/src/types.rs openvx-core/src/reference.rs openvx-core/src/context.rs openvx-core/src/c_api.rs openvx-core/src/c_api_data.rs openvx-core/src/unified_c_api.rs openvx-core/src/vxu_impl.rs + +/home/simon/.openclaw/workspace/rustVX/target/release/deps/openvx_core-b3e9f44a082d8104: openvx-core/src/lib.rs openvx-core/src/types.rs openvx-core/src/reference.rs openvx-core/src/context.rs openvx-core/src/c_api.rs openvx-core/src/c_api_data.rs openvx-core/src/unified_c_api.rs openvx-core/src/vxu_impl.rs + +openvx-core/src/lib.rs: +openvx-core/src/types.rs: +openvx-core/src/reference.rs: +openvx-core/src/context.rs: +openvx-core/src/c_api.rs: +openvx-core/src/c_api_data.rs: +openvx-core/src/unified_c_api.rs: +openvx-core/src/vxu_impl.rs: diff --git a/target/release/deps/openvx_core.d b/target/release/deps/openvx_core.d index 769de93..82af507 100644 --- a/target/release/deps/openvx_core.d +++ b/target/release/deps/openvx_core.d @@ -1,3 +1,12 @@ +<<<<<<< HEAD +/home/simon/.openclaw/workspace/rustVX/target/release/deps/openvx_core.d: openvx-core/src/lib.rs openvx-core/src/types.rs openvx-core/src/reference.rs openvx-core/src/context.rs openvx-core/src/c_api.rs openvx-core/src/c_api_data.rs openvx-core/src/unified_c_api.rs openvx-core/src/vxu_impl.rs + +/home/simon/.openclaw/workspace/rustVX/target/release/deps/libopenvx_core.so: openvx-core/src/lib.rs openvx-core/src/types.rs openvx-core/src/reference.rs openvx-core/src/context.rs openvx-core/src/c_api.rs openvx-core/src/c_api_data.rs openvx-core/src/unified_c_api.rs openvx-core/src/vxu_impl.rs + +/home/simon/.openclaw/workspace/rustVX/target/release/deps/libopenvx_core.a: openvx-core/src/lib.rs openvx-core/src/types.rs openvx-core/src/reference.rs openvx-core/src/context.rs openvx-core/src/c_api.rs openvx-core/src/c_api_data.rs openvx-core/src/unified_c_api.rs openvx-core/src/vxu_impl.rs + +/home/simon/.openclaw/workspace/rustVX/target/release/deps/libopenvx_core.rlib: openvx-core/src/lib.rs openvx-core/src/types.rs openvx-core/src/reference.rs openvx-core/src/context.rs openvx-core/src/c_api.rs openvx-core/src/c_api_data.rs openvx-core/src/unified_c_api.rs openvx-core/src/vxu_impl.rs +======= /home/simon/.openclaw/workspace/rustvx/target/release/deps/openvx_core.d: openvx-core/src/lib.rs openvx-core/src/types.rs openvx-core/src/reference.rs openvx-core/src/context.rs openvx-core/src/c_api.rs openvx-core/src/c_api_data.rs openvx-core/src/unified_c_api.rs openvx-core/src/vxu_impl.rs /home/simon/.openclaw/workspace/rustvx/target/release/deps/libopenvx_core.so: openvx-core/src/lib.rs openvx-core/src/types.rs openvx-core/src/reference.rs openvx-core/src/context.rs openvx-core/src/c_api.rs openvx-core/src/c_api_data.rs openvx-core/src/unified_c_api.rs openvx-core/src/vxu_impl.rs @@ -5,6 +14,7 @@ /home/simon/.openclaw/workspace/rustvx/target/release/deps/libopenvx_core.a: openvx-core/src/lib.rs openvx-core/src/types.rs openvx-core/src/reference.rs openvx-core/src/context.rs openvx-core/src/c_api.rs openvx-core/src/c_api_data.rs openvx-core/src/unified_c_api.rs openvx-core/src/vxu_impl.rs /home/simon/.openclaw/workspace/rustvx/target/release/deps/libopenvx_core.rlib: openvx-core/src/lib.rs openvx-core/src/types.rs openvx-core/src/reference.rs openvx-core/src/context.rs openvx-core/src/c_api.rs openvx-core/src/c_api_data.rs openvx-core/src/unified_c_api.rs openvx-core/src/vxu_impl.rs +>>>>>>> origin/master openvx-core/src/lib.rs: openvx-core/src/types.rs: diff --git a/target/release/deps/openvx_ffi-c287c272f8bbdadc b/target/release/deps/openvx_ffi-c287c272f8bbdadc new file mode 100755 index 0000000..b5e8b27 Binary files /dev/null and b/target/release/deps/openvx_ffi-c287c272f8bbdadc differ diff --git a/target/release/deps/openvx_ffi-c287c272f8bbdadc.d b/target/release/deps/openvx_ffi-c287c272f8bbdadc.d new file mode 100644 index 0000000..1a65081 --- /dev/null +++ b/target/release/deps/openvx_ffi-c287c272f8bbdadc.d @@ -0,0 +1,5 @@ +/home/simon/.openclaw/workspace/rustVX/target/release/deps/openvx_ffi-c287c272f8bbdadc.d: openvx-ffi/src/lib.rs + +/home/simon/.openclaw/workspace/rustVX/target/release/deps/openvx_ffi-c287c272f8bbdadc: openvx-ffi/src/lib.rs + +openvx-ffi/src/lib.rs: diff --git a/target/release/deps/openvx_ffi.d b/target/release/deps/openvx_ffi.d index cf8020a..019ae56 100644 --- a/target/release/deps/openvx_ffi.d +++ b/target/release/deps/openvx_ffi.d @@ -1,7 +1,15 @@ +<<<<<<< HEAD +/home/simon/.openclaw/workspace/rustVX/target/release/deps/openvx_ffi.d: openvx-ffi/src/lib.rs + +/home/simon/.openclaw/workspace/rustVX/target/release/deps/libopenvx_ffi.so: openvx-ffi/src/lib.rs + +/home/simon/.openclaw/workspace/rustVX/target/release/deps/libopenvx_ffi.a: openvx-ffi/src/lib.rs +======= /home/simon/.openclaw/workspace/rustvx/target/release/deps/openvx_ffi.d: openvx-ffi/src/lib.rs /home/simon/.openclaw/workspace/rustvx/target/release/deps/libopenvx_ffi.so: openvx-ffi/src/lib.rs /home/simon/.openclaw/workspace/rustvx/target/release/deps/libopenvx_ffi.a: openvx-ffi/src/lib.rs +>>>>>>> origin/master openvx-ffi/src/lib.rs: diff --git a/target/release/deps/openvx_image-61e05bead289815e b/target/release/deps/openvx_image-61e05bead289815e new file mode 100755 index 0000000..a4866fc Binary files /dev/null and b/target/release/deps/openvx_image-61e05bead289815e differ diff --git a/target/release/deps/openvx_image-61e05bead289815e.d b/target/release/deps/openvx_image-61e05bead289815e.d new file mode 100644 index 0000000..f661e76 --- /dev/null +++ b/target/release/deps/openvx_image-61e05bead289815e.d @@ -0,0 +1,7 @@ +/home/simon/.openclaw/workspace/rustVX/target/release/deps/openvx_image-61e05bead289815e.d: openvx-image/src/lib.rs openvx-image/src/c_api.rs openvx-image/src/ct_image.rs + +/home/simon/.openclaw/workspace/rustVX/target/release/deps/openvx_image-61e05bead289815e: openvx-image/src/lib.rs openvx-image/src/c_api.rs openvx-image/src/ct_image.rs + +openvx-image/src/lib.rs: +openvx-image/src/c_api.rs: +openvx-image/src/ct_image.rs: diff --git a/target/release/deps/openvx_image-7a19fbb83bd6b514.d b/target/release/deps/openvx_image-7a19fbb83bd6b514.d new file mode 100644 index 0000000..4b2a870 --- /dev/null +++ b/target/release/deps/openvx_image-7a19fbb83bd6b514.d @@ -0,0 +1,9 @@ +/home/simon/.openclaw/workspace/rustVX/target/release/deps/openvx_image-7a19fbb83bd6b514.d: openvx-image/src/lib.rs openvx-image/src/c_api.rs openvx-image/src/ct_image.rs + +/home/simon/.openclaw/workspace/rustVX/target/release/deps/libopenvx_image-7a19fbb83bd6b514.rlib: openvx-image/src/lib.rs openvx-image/src/c_api.rs openvx-image/src/ct_image.rs + +/home/simon/.openclaw/workspace/rustVX/target/release/deps/libopenvx_image-7a19fbb83bd6b514.rmeta: openvx-image/src/lib.rs openvx-image/src/c_api.rs openvx-image/src/ct_image.rs + +openvx-image/src/lib.rs: +openvx-image/src/c_api.rs: +openvx-image/src/ct_image.rs: diff --git a/target/release/deps/openvx_image-f36425eb72d49a8f.d b/target/release/deps/openvx_image-f36425eb72d49a8f.d new file mode 100644 index 0000000..09668b3 --- /dev/null +++ b/target/release/deps/openvx_image-f36425eb72d49a8f.d @@ -0,0 +1,9 @@ +/home/simon/.openclaw/workspace/rustVX/target/release/deps/openvx_image-f36425eb72d49a8f.d: openvx-image/src/lib.rs openvx-image/src/c_api.rs openvx-image/src/ct_image.rs + +/home/simon/.openclaw/workspace/rustVX/target/release/deps/libopenvx_image-f36425eb72d49a8f.rlib: openvx-image/src/lib.rs openvx-image/src/c_api.rs openvx-image/src/ct_image.rs + +/home/simon/.openclaw/workspace/rustVX/target/release/deps/libopenvx_image-f36425eb72d49a8f.rmeta: openvx-image/src/lib.rs openvx-image/src/c_api.rs openvx-image/src/ct_image.rs + +openvx-image/src/lib.rs: +openvx-image/src/c_api.rs: +openvx-image/src/ct_image.rs: diff --git a/target/release/deps/openvx_vision-1de156f7df597497.d b/target/release/deps/openvx_vision-1de156f7df597497.d new file mode 100644 index 0000000..d9b3d79 --- /dev/null +++ b/target/release/deps/openvx_vision-1de156f7df597497.d @@ -0,0 +1,19 @@ +/home/simon/.openclaw/workspace/rustVX/target/release/deps/openvx_vision-1de156f7df597497.d: openvx-vision/src/lib.rs openvx-vision/src/color.rs openvx-vision/src/filter.rs openvx-vision/src/gradient.rs openvx-vision/src/arithmetic.rs openvx-vision/src/morphology.rs openvx-vision/src/geometric.rs openvx-vision/src/optical_flow.rs openvx-vision/src/features.rs openvx-vision/src/statistics.rs openvx-vision/src/object_detection.rs openvx-vision/src/utils.rs openvx-vision/src/simd_utils.rs + +/home/simon/.openclaw/workspace/rustVX/target/release/deps/libopenvx_vision-1de156f7df597497.rlib: openvx-vision/src/lib.rs openvx-vision/src/color.rs openvx-vision/src/filter.rs openvx-vision/src/gradient.rs openvx-vision/src/arithmetic.rs openvx-vision/src/morphology.rs openvx-vision/src/geometric.rs openvx-vision/src/optical_flow.rs openvx-vision/src/features.rs openvx-vision/src/statistics.rs openvx-vision/src/object_detection.rs openvx-vision/src/utils.rs openvx-vision/src/simd_utils.rs + +/home/simon/.openclaw/workspace/rustVX/target/release/deps/libopenvx_vision-1de156f7df597497.rmeta: openvx-vision/src/lib.rs openvx-vision/src/color.rs openvx-vision/src/filter.rs openvx-vision/src/gradient.rs openvx-vision/src/arithmetic.rs openvx-vision/src/morphology.rs openvx-vision/src/geometric.rs openvx-vision/src/optical_flow.rs openvx-vision/src/features.rs openvx-vision/src/statistics.rs openvx-vision/src/object_detection.rs openvx-vision/src/utils.rs openvx-vision/src/simd_utils.rs + +openvx-vision/src/lib.rs: +openvx-vision/src/color.rs: +openvx-vision/src/filter.rs: +openvx-vision/src/gradient.rs: +openvx-vision/src/arithmetic.rs: +openvx-vision/src/morphology.rs: +openvx-vision/src/geometric.rs: +openvx-vision/src/optical_flow.rs: +openvx-vision/src/features.rs: +openvx-vision/src/statistics.rs: +openvx-vision/src/object_detection.rs: +openvx-vision/src/utils.rs: +openvx-vision/src/simd_utils.rs: diff --git a/target/release/deps/openvx_vision-36d558360ff47327 b/target/release/deps/openvx_vision-36d558360ff47327 new file mode 100755 index 0000000..d2cf165 Binary files /dev/null and b/target/release/deps/openvx_vision-36d558360ff47327 differ diff --git a/target/release/deps/openvx_vision-36d558360ff47327.d b/target/release/deps/openvx_vision-36d558360ff47327.d new file mode 100644 index 0000000..acedd4c --- /dev/null +++ b/target/release/deps/openvx_vision-36d558360ff47327.d @@ -0,0 +1,17 @@ +/home/simon/.openclaw/workspace/rustVX/target/release/deps/openvx_vision-36d558360ff47327.d: openvx-vision/src/lib.rs openvx-vision/src/color.rs openvx-vision/src/filter.rs openvx-vision/src/gradient.rs openvx-vision/src/arithmetic.rs openvx-vision/src/morphology.rs openvx-vision/src/geometric.rs openvx-vision/src/optical_flow.rs openvx-vision/src/features.rs openvx-vision/src/statistics.rs openvx-vision/src/object_detection.rs openvx-vision/src/utils.rs openvx-vision/src/simd_utils.rs + +/home/simon/.openclaw/workspace/rustVX/target/release/deps/openvx_vision-36d558360ff47327: openvx-vision/src/lib.rs openvx-vision/src/color.rs openvx-vision/src/filter.rs openvx-vision/src/gradient.rs openvx-vision/src/arithmetic.rs openvx-vision/src/morphology.rs openvx-vision/src/geometric.rs openvx-vision/src/optical_flow.rs openvx-vision/src/features.rs openvx-vision/src/statistics.rs openvx-vision/src/object_detection.rs openvx-vision/src/utils.rs openvx-vision/src/simd_utils.rs + +openvx-vision/src/lib.rs: +openvx-vision/src/color.rs: +openvx-vision/src/filter.rs: +openvx-vision/src/gradient.rs: +openvx-vision/src/arithmetic.rs: +openvx-vision/src/morphology.rs: +openvx-vision/src/geometric.rs: +openvx-vision/src/optical_flow.rs: +openvx-vision/src/features.rs: +openvx-vision/src/statistics.rs: +openvx-vision/src/object_detection.rs: +openvx-vision/src/utils.rs: +openvx-vision/src/simd_utils.rs: diff --git a/target/release/deps/openvx_vision-fa003c9243f70d93.d b/target/release/deps/openvx_vision-fa003c9243f70d93.d new file mode 100644 index 0000000..2c09107 --- /dev/null +++ b/target/release/deps/openvx_vision-fa003c9243f70d93.d @@ -0,0 +1,19 @@ +/home/simon/.openclaw/workspace/rustVX/target/release/deps/openvx_vision-fa003c9243f70d93.d: openvx-vision/src/lib.rs openvx-vision/src/color.rs openvx-vision/src/filter.rs openvx-vision/src/gradient.rs openvx-vision/src/arithmetic.rs openvx-vision/src/morphology.rs openvx-vision/src/geometric.rs openvx-vision/src/optical_flow.rs openvx-vision/src/features.rs openvx-vision/src/statistics.rs openvx-vision/src/object_detection.rs openvx-vision/src/utils.rs openvx-vision/src/simd_utils.rs + +/home/simon/.openclaw/workspace/rustVX/target/release/deps/libopenvx_vision-fa003c9243f70d93.rlib: openvx-vision/src/lib.rs openvx-vision/src/color.rs openvx-vision/src/filter.rs openvx-vision/src/gradient.rs openvx-vision/src/arithmetic.rs openvx-vision/src/morphology.rs openvx-vision/src/geometric.rs openvx-vision/src/optical_flow.rs openvx-vision/src/features.rs openvx-vision/src/statistics.rs openvx-vision/src/object_detection.rs openvx-vision/src/utils.rs openvx-vision/src/simd_utils.rs + +/home/simon/.openclaw/workspace/rustVX/target/release/deps/libopenvx_vision-fa003c9243f70d93.rmeta: openvx-vision/src/lib.rs openvx-vision/src/color.rs openvx-vision/src/filter.rs openvx-vision/src/gradient.rs openvx-vision/src/arithmetic.rs openvx-vision/src/morphology.rs openvx-vision/src/geometric.rs openvx-vision/src/optical_flow.rs openvx-vision/src/features.rs openvx-vision/src/statistics.rs openvx-vision/src/object_detection.rs openvx-vision/src/utils.rs openvx-vision/src/simd_utils.rs + +openvx-vision/src/lib.rs: +openvx-vision/src/color.rs: +openvx-vision/src/filter.rs: +openvx-vision/src/gradient.rs: +openvx-vision/src/arithmetic.rs: +openvx-vision/src/morphology.rs: +openvx-vision/src/geometric.rs: +openvx-vision/src/optical_flow.rs: +openvx-vision/src/features.rs: +openvx-vision/src/statistics.rs: +openvx-vision/src/object_detection.rs: +openvx-vision/src/utils.rs: +openvx-vision/src/simd_utils.rs: diff --git a/target/release/deps/parking_lot-f5017e3f9bb27701.d b/target/release/deps/parking_lot-f5017e3f9bb27701.d index a64bdca..4c1324f 100644 --- a/target/release/deps/parking_lot-f5017e3f9bb27701.d +++ b/target/release/deps/parking_lot-f5017e3f9bb27701.d @@ -1,8 +1,16 @@ +<<<<<<< HEAD +/home/simon/.openclaw/workspace/rustVX/target/release/deps/parking_lot-f5017e3f9bb27701.d: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/condvar.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/elision.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/fair_mutex.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/mutex.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/once.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/raw_fair_mutex.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/raw_mutex.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/raw_rwlock.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/remutex.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/rwlock.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/util.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/deadlock.rs + +/home/simon/.openclaw/workspace/rustVX/target/release/deps/libparking_lot-f5017e3f9bb27701.rlib: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/condvar.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/elision.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/fair_mutex.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/mutex.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/once.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/raw_fair_mutex.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/raw_mutex.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/raw_rwlock.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/remutex.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/rwlock.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/util.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/deadlock.rs + +/home/simon/.openclaw/workspace/rustVX/target/release/deps/libparking_lot-f5017e3f9bb27701.rmeta: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/condvar.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/elision.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/fair_mutex.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/mutex.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/once.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/raw_fair_mutex.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/raw_mutex.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/raw_rwlock.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/remutex.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/rwlock.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/util.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/deadlock.rs +======= /home/simon/.openclaw/workspace/rustvx/target/release/deps/parking_lot-f5017e3f9bb27701.d: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/condvar.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/elision.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/fair_mutex.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/mutex.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/once.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/raw_fair_mutex.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/raw_mutex.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/raw_rwlock.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/remutex.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/rwlock.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/util.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/deadlock.rs /home/simon/.openclaw/workspace/rustvx/target/release/deps/libparking_lot-f5017e3f9bb27701.rlib: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/condvar.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/elision.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/fair_mutex.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/mutex.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/once.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/raw_fair_mutex.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/raw_mutex.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/raw_rwlock.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/remutex.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/rwlock.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/util.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/deadlock.rs /home/simon/.openclaw/workspace/rustvx/target/release/deps/libparking_lot-f5017e3f9bb27701.rmeta: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/condvar.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/elision.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/fair_mutex.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/mutex.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/once.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/raw_fair_mutex.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/raw_mutex.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/raw_rwlock.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/remutex.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/rwlock.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/util.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/deadlock.rs +>>>>>>> origin/master /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/lib.rs: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot-0.12.5/src/condvar.rs: diff --git a/target/release/deps/parking_lot_core-a1adf6637615b922.d b/target/release/deps/parking_lot_core-a1adf6637615b922.d index 88ea2a6..0c60673 100644 --- a/target/release/deps/parking_lot_core-a1adf6637615b922.d +++ b/target/release/deps/parking_lot_core-a1adf6637615b922.d @@ -1,8 +1,16 @@ +<<<<<<< HEAD +/home/simon/.openclaw/workspace/rustVX/target/release/deps/parking_lot_core-a1adf6637615b922.d: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.12/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.12/src/parking_lot.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.12/src/spinwait.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.12/src/thread_parker/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.12/src/util.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.12/src/word_lock.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.12/src/thread_parker/linux.rs + +/home/simon/.openclaw/workspace/rustVX/target/release/deps/libparking_lot_core-a1adf6637615b922.rlib: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.12/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.12/src/parking_lot.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.12/src/spinwait.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.12/src/thread_parker/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.12/src/util.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.12/src/word_lock.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.12/src/thread_parker/linux.rs + +/home/simon/.openclaw/workspace/rustVX/target/release/deps/libparking_lot_core-a1adf6637615b922.rmeta: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.12/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.12/src/parking_lot.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.12/src/spinwait.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.12/src/thread_parker/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.12/src/util.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.12/src/word_lock.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.12/src/thread_parker/linux.rs +======= /home/simon/.openclaw/workspace/rustvx/target/release/deps/parking_lot_core-a1adf6637615b922.d: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.12/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.12/src/parking_lot.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.12/src/spinwait.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.12/src/thread_parker/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.12/src/util.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.12/src/word_lock.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.12/src/thread_parker/linux.rs /home/simon/.openclaw/workspace/rustvx/target/release/deps/libparking_lot_core-a1adf6637615b922.rlib: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.12/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.12/src/parking_lot.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.12/src/spinwait.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.12/src/thread_parker/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.12/src/util.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.12/src/word_lock.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.12/src/thread_parker/linux.rs /home/simon/.openclaw/workspace/rustvx/target/release/deps/libparking_lot_core-a1adf6637615b922.rmeta: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.12/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.12/src/parking_lot.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.12/src/spinwait.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.12/src/thread_parker/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.12/src/util.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.12/src/word_lock.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.12/src/thread_parker/linux.rs +>>>>>>> origin/master /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.12/src/lib.rs: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/parking_lot_core-0.9.12/src/parking_lot.rs: diff --git a/target/release/deps/petgraph-75e305f69b0d8fc3.d b/target/release/deps/petgraph-75e305f69b0d8fc3.d new file mode 100644 index 0000000..dd518fc --- /dev/null +++ b/target/release/deps/petgraph-75e305f69b0d8fc3.d @@ -0,0 +1,46 @@ +/home/simon/.openclaw/workspace/rustVX/target/release/deps/petgraph-75e305f69b0d8fc3.d: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/macros.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/scored.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/visit/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/visit/macros.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/visit/dfsvisit.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/visit/traversal.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/visit/filter.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/visit/reversed.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/data.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/adj.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/algo/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/algo/astar.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/algo/bellman_ford.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/algo/dijkstra.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/algo/dominators.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/algo/feedback_arc_set.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/algo/floyd_warshall.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/algo/ford_fulkerson.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/algo/isomorphism.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/algo/k_shortest_path.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/algo/matching.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/algo/min_spanning_tree.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/algo/page_rank.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/algo/simple_paths.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/algo/tred.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/csr.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/dot.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/graph_impl/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/graph_impl/frozen.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/graph_impl/stable_graph/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/graphmap.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/iter_format.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/iter_utils.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/matrix_graph.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/traits_graph.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/unionfind.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/util.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/operator.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/prelude.rs + +/home/simon/.openclaw/workspace/rustVX/target/release/deps/libpetgraph-75e305f69b0d8fc3.rlib: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/macros.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/scored.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/visit/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/visit/macros.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/visit/dfsvisit.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/visit/traversal.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/visit/filter.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/visit/reversed.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/data.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/adj.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/algo/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/algo/astar.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/algo/bellman_ford.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/algo/dijkstra.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/algo/dominators.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/algo/feedback_arc_set.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/algo/floyd_warshall.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/algo/ford_fulkerson.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/algo/isomorphism.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/algo/k_shortest_path.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/algo/matching.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/algo/min_spanning_tree.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/algo/page_rank.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/algo/simple_paths.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/algo/tred.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/csr.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/dot.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/graph_impl/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/graph_impl/frozen.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/graph_impl/stable_graph/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/graphmap.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/iter_format.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/iter_utils.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/matrix_graph.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/traits_graph.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/unionfind.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/util.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/operator.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/prelude.rs + +/home/simon/.openclaw/workspace/rustVX/target/release/deps/libpetgraph-75e305f69b0d8fc3.rmeta: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/macros.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/scored.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/visit/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/visit/macros.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/visit/dfsvisit.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/visit/traversal.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/visit/filter.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/visit/reversed.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/data.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/adj.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/algo/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/algo/astar.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/algo/bellman_ford.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/algo/dijkstra.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/algo/dominators.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/algo/feedback_arc_set.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/algo/floyd_warshall.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/algo/ford_fulkerson.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/algo/isomorphism.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/algo/k_shortest_path.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/algo/matching.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/algo/min_spanning_tree.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/algo/page_rank.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/algo/simple_paths.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/algo/tred.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/csr.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/dot.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/graph_impl/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/graph_impl/frozen.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/graph_impl/stable_graph/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/graphmap.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/iter_format.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/iter_utils.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/matrix_graph.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/traits_graph.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/unionfind.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/util.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/operator.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/prelude.rs + +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/lib.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/macros.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/scored.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/visit/mod.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/visit/macros.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/visit/dfsvisit.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/visit/traversal.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/visit/filter.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/visit/reversed.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/data.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/adj.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/algo/mod.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/algo/astar.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/algo/bellman_ford.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/algo/dijkstra.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/algo/dominators.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/algo/feedback_arc_set.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/algo/floyd_warshall.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/algo/ford_fulkerson.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/algo/isomorphism.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/algo/k_shortest_path.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/algo/matching.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/algo/min_spanning_tree.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/algo/page_rank.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/algo/simple_paths.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/algo/tred.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/csr.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/dot.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/graph_impl/mod.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/graph_impl/frozen.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/graph_impl/stable_graph/mod.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/graphmap.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/iter_format.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/iter_utils.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/matrix_graph.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/traits_graph.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/unionfind.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/util.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/operator.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/petgraph-0.6.5/src/prelude.rs: diff --git a/target/release/deps/plotters-75403225b266a9e5.d b/target/release/deps/plotters-75403225b266a9e5.d new file mode 100644 index 0000000..52b8f34 --- /dev/null +++ b/target/release/deps/plotters-75403225b266a9e5.d @@ -0,0 +1,66 @@ +/home/simon/.openclaw/workspace/rustVX/target/release/deps/plotters-75403225b266a9e5.d: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/chart/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/chart/axes3d.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/chart/builder.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/chart/context.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/chart/context/cartesian2d/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/chart/context/cartesian2d/draw_impl.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/chart/context/cartesian3d/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/chart/context/cartesian3d/draw_impl.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/chart/dual_coord.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/chart/mesh.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/chart/series.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/chart/state.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/coord/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/coord/ranged1d/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/coord/ranged1d/combinators/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/coord/ranged1d/combinators/ckps.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/coord/ranged1d/combinators/group_by.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/coord/ranged1d/combinators/linspace.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/coord/ranged1d/combinators/logarithmic.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/coord/ranged1d/combinators/nested.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/coord/ranged1d/combinators/partial_axis.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/coord/ranged1d/types/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/coord/ranged1d/types/numeric.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/coord/ranged1d/types/slice.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/coord/ranged1d/discrete.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/coord/ranged2d/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/coord/ranged2d/cartesian.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/coord/ranged3d/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/coord/ranged3d/projection.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/coord/ranged3d/cartesian3d.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/coord/translate.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/data/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/data/data_range.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/data/quartiles.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/data/float.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/drawing/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/drawing/area.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/drawing/backend_impl/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/element/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/element/basic_shapes.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/element/basic_shapes_3d.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/element/text.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/element/points.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/element/composable.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/element/dynelem.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/element/pie.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/series/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/series/area_series.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/series/line_series.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/style/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/style/color.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/style/colors/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/style/font/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/style/font/naive.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/style/font/font_desc.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/style/palette.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/style/shape.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/style/size.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/style/text.rs + +/home/simon/.openclaw/workspace/rustVX/target/release/deps/libplotters-75403225b266a9e5.rlib: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/chart/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/chart/axes3d.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/chart/builder.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/chart/context.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/chart/context/cartesian2d/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/chart/context/cartesian2d/draw_impl.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/chart/context/cartesian3d/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/chart/context/cartesian3d/draw_impl.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/chart/dual_coord.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/chart/mesh.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/chart/series.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/chart/state.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/coord/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/coord/ranged1d/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/coord/ranged1d/combinators/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/coord/ranged1d/combinators/ckps.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/coord/ranged1d/combinators/group_by.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/coord/ranged1d/combinators/linspace.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/coord/ranged1d/combinators/logarithmic.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/coord/ranged1d/combinators/nested.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/coord/ranged1d/combinators/partial_axis.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/coord/ranged1d/types/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/coord/ranged1d/types/numeric.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/coord/ranged1d/types/slice.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/coord/ranged1d/discrete.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/coord/ranged2d/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/coord/ranged2d/cartesian.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/coord/ranged3d/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/coord/ranged3d/projection.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/coord/ranged3d/cartesian3d.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/coord/translate.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/data/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/data/data_range.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/data/quartiles.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/data/float.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/drawing/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/drawing/area.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/drawing/backend_impl/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/element/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/element/basic_shapes.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/element/basic_shapes_3d.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/element/text.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/element/points.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/element/composable.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/element/dynelem.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/element/pie.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/series/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/series/area_series.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/series/line_series.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/style/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/style/color.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/style/colors/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/style/font/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/style/font/naive.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/style/font/font_desc.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/style/palette.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/style/shape.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/style/size.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/style/text.rs + +/home/simon/.openclaw/workspace/rustVX/target/release/deps/libplotters-75403225b266a9e5.rmeta: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/chart/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/chart/axes3d.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/chart/builder.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/chart/context.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/chart/context/cartesian2d/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/chart/context/cartesian2d/draw_impl.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/chart/context/cartesian3d/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/chart/context/cartesian3d/draw_impl.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/chart/dual_coord.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/chart/mesh.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/chart/series.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/chart/state.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/coord/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/coord/ranged1d/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/coord/ranged1d/combinators/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/coord/ranged1d/combinators/ckps.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/coord/ranged1d/combinators/group_by.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/coord/ranged1d/combinators/linspace.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/coord/ranged1d/combinators/logarithmic.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/coord/ranged1d/combinators/nested.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/coord/ranged1d/combinators/partial_axis.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/coord/ranged1d/types/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/coord/ranged1d/types/numeric.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/coord/ranged1d/types/slice.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/coord/ranged1d/discrete.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/coord/ranged2d/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/coord/ranged2d/cartesian.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/coord/ranged3d/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/coord/ranged3d/projection.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/coord/ranged3d/cartesian3d.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/coord/translate.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/data/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/data/data_range.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/data/quartiles.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/data/float.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/drawing/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/drawing/area.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/drawing/backend_impl/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/element/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/element/basic_shapes.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/element/basic_shapes_3d.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/element/text.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/element/points.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/element/composable.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/element/dynelem.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/element/pie.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/series/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/series/area_series.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/series/line_series.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/style/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/style/color.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/style/colors/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/style/font/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/style/font/naive.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/style/font/font_desc.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/style/palette.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/style/shape.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/style/size.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/style/text.rs + +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/lib.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/chart/mod.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/chart/axes3d.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/chart/builder.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/chart/context.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/chart/context/cartesian2d/mod.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/chart/context/cartesian2d/draw_impl.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/chart/context/cartesian3d/mod.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/chart/context/cartesian3d/draw_impl.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/chart/dual_coord.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/chart/mesh.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/chart/series.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/chart/state.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/coord/mod.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/coord/ranged1d/mod.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/coord/ranged1d/combinators/mod.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/coord/ranged1d/combinators/ckps.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/coord/ranged1d/combinators/group_by.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/coord/ranged1d/combinators/linspace.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/coord/ranged1d/combinators/logarithmic.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/coord/ranged1d/combinators/nested.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/coord/ranged1d/combinators/partial_axis.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/coord/ranged1d/types/mod.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/coord/ranged1d/types/numeric.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/coord/ranged1d/types/slice.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/coord/ranged1d/discrete.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/coord/ranged2d/mod.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/coord/ranged2d/cartesian.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/coord/ranged3d/mod.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/coord/ranged3d/projection.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/coord/ranged3d/cartesian3d.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/coord/translate.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/data/mod.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/data/data_range.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/data/quartiles.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/data/float.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/drawing/mod.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/drawing/area.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/drawing/backend_impl/mod.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/element/mod.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/element/basic_shapes.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/element/basic_shapes_3d.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/element/text.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/element/points.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/element/composable.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/element/dynelem.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/element/pie.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/series/mod.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/series/area_series.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/series/line_series.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/style/mod.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/style/color.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/style/colors/mod.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/style/font/mod.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/style/font/naive.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/style/font/font_desc.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/style/palette.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/style/shape.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/style/size.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-0.3.7/src/style/text.rs: diff --git a/target/release/deps/plotters_backend-edf975c5351467da.d b/target/release/deps/plotters_backend-edf975c5351467da.d new file mode 100644 index 0000000..86be83c --- /dev/null +++ b/target/release/deps/plotters_backend-edf975c5351467da.d @@ -0,0 +1,15 @@ +/home/simon/.openclaw/workspace/rustVX/target/release/deps/plotters_backend-edf975c5351467da.d: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-backend-0.3.7/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-backend-0.3.7/src/rasterizer/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-backend-0.3.7/src/rasterizer/line.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-backend-0.3.7/src/rasterizer/rect.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-backend-0.3.7/src/rasterizer/circle.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-backend-0.3.7/src/rasterizer/polygon.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-backend-0.3.7/src/rasterizer/path.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-backend-0.3.7/src/style.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-backend-0.3.7/src/text.rs + +/home/simon/.openclaw/workspace/rustVX/target/release/deps/libplotters_backend-edf975c5351467da.rlib: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-backend-0.3.7/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-backend-0.3.7/src/rasterizer/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-backend-0.3.7/src/rasterizer/line.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-backend-0.3.7/src/rasterizer/rect.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-backend-0.3.7/src/rasterizer/circle.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-backend-0.3.7/src/rasterizer/polygon.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-backend-0.3.7/src/rasterizer/path.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-backend-0.3.7/src/style.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-backend-0.3.7/src/text.rs + +/home/simon/.openclaw/workspace/rustVX/target/release/deps/libplotters_backend-edf975c5351467da.rmeta: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-backend-0.3.7/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-backend-0.3.7/src/rasterizer/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-backend-0.3.7/src/rasterizer/line.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-backend-0.3.7/src/rasterizer/rect.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-backend-0.3.7/src/rasterizer/circle.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-backend-0.3.7/src/rasterizer/polygon.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-backend-0.3.7/src/rasterizer/path.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-backend-0.3.7/src/style.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-backend-0.3.7/src/text.rs + +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-backend-0.3.7/src/lib.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-backend-0.3.7/src/rasterizer/mod.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-backend-0.3.7/src/rasterizer/line.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-backend-0.3.7/src/rasterizer/rect.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-backend-0.3.7/src/rasterizer/circle.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-backend-0.3.7/src/rasterizer/polygon.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-backend-0.3.7/src/rasterizer/path.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-backend-0.3.7/src/style.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-backend-0.3.7/src/text.rs: diff --git a/target/release/deps/plotters_svg-d8189738bdf2cfac.d b/target/release/deps/plotters_svg-d8189738bdf2cfac.d new file mode 100644 index 0000000..93d2dd5 --- /dev/null +++ b/target/release/deps/plotters_svg-d8189738bdf2cfac.d @@ -0,0 +1,8 @@ +/home/simon/.openclaw/workspace/rustVX/target/release/deps/plotters_svg-d8189738bdf2cfac.d: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-svg-0.3.7/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-svg-0.3.7/src/svg.rs + +/home/simon/.openclaw/workspace/rustVX/target/release/deps/libplotters_svg-d8189738bdf2cfac.rlib: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-svg-0.3.7/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-svg-0.3.7/src/svg.rs + +/home/simon/.openclaw/workspace/rustVX/target/release/deps/libplotters_svg-d8189738bdf2cfac.rmeta: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-svg-0.3.7/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-svg-0.3.7/src/svg.rs + +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-svg-0.3.7/src/lib.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/plotters-svg-0.3.7/src/svg.rs: diff --git a/target/release/deps/proc_macro2-09a9c2d5277a398f.d b/target/release/deps/proc_macro2-09a9c2d5277a398f.d index 34a1ae3..ca48522 100644 --- a/target/release/deps/proc_macro2-09a9c2d5277a398f.d +++ b/target/release/deps/proc_macro2-09a9c2d5277a398f.d @@ -1,8 +1,16 @@ +<<<<<<< HEAD +/home/simon/.openclaw/workspace/rustVX/target/release/deps/proc_macro2-09a9c2d5277a398f.d: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/marker.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/parse.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/probe.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/probe/proc_macro_span_file.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/probe/proc_macro_span_location.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/rcvec.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/detection.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/fallback.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/extra.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/wrapper.rs + +/home/simon/.openclaw/workspace/rustVX/target/release/deps/libproc_macro2-09a9c2d5277a398f.rlib: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/marker.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/parse.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/probe.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/probe/proc_macro_span_file.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/probe/proc_macro_span_location.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/rcvec.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/detection.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/fallback.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/extra.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/wrapper.rs + +/home/simon/.openclaw/workspace/rustVX/target/release/deps/libproc_macro2-09a9c2d5277a398f.rmeta: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/marker.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/parse.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/probe.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/probe/proc_macro_span_file.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/probe/proc_macro_span_location.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/rcvec.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/detection.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/fallback.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/extra.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/wrapper.rs +======= /home/simon/.openclaw/workspace/rustvx/target/release/deps/proc_macro2-09a9c2d5277a398f.d: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/marker.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/parse.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/probe.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/probe/proc_macro_span_file.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/probe/proc_macro_span_location.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/rcvec.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/detection.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/fallback.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/extra.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/wrapper.rs /home/simon/.openclaw/workspace/rustvx/target/release/deps/libproc_macro2-09a9c2d5277a398f.rlib: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/marker.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/parse.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/probe.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/probe/proc_macro_span_file.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/probe/proc_macro_span_location.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/rcvec.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/detection.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/fallback.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/extra.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/wrapper.rs /home/simon/.openclaw/workspace/rustvx/target/release/deps/libproc_macro2-09a9c2d5277a398f.rmeta: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/marker.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/parse.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/probe.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/probe/proc_macro_span_file.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/probe/proc_macro_span_location.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/rcvec.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/detection.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/fallback.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/extra.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/wrapper.rs +>>>>>>> origin/master /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/lib.rs: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/proc-macro2-1.0.106/src/marker.rs: diff --git a/target/release/deps/quote-6462f4c5c001e9d8.d b/target/release/deps/quote-6462f4c5c001e9d8.d index 5d4a871..161b1b8 100644 --- a/target/release/deps/quote-6462f4c5c001e9d8.d +++ b/target/release/deps/quote-6462f4c5c001e9d8.d @@ -1,8 +1,16 @@ +<<<<<<< HEAD +/home/simon/.openclaw/workspace/rustVX/target/release/deps/quote-6462f4c5c001e9d8.d: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.45/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.45/src/ext.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.45/src/format.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.45/src/ident_fragment.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.45/src/to_tokens.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.45/src/runtime.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.45/src/spanned.rs + +/home/simon/.openclaw/workspace/rustVX/target/release/deps/libquote-6462f4c5c001e9d8.rlib: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.45/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.45/src/ext.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.45/src/format.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.45/src/ident_fragment.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.45/src/to_tokens.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.45/src/runtime.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.45/src/spanned.rs + +/home/simon/.openclaw/workspace/rustVX/target/release/deps/libquote-6462f4c5c001e9d8.rmeta: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.45/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.45/src/ext.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.45/src/format.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.45/src/ident_fragment.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.45/src/to_tokens.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.45/src/runtime.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.45/src/spanned.rs +======= /home/simon/.openclaw/workspace/rustvx/target/release/deps/quote-6462f4c5c001e9d8.d: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.45/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.45/src/ext.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.45/src/format.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.45/src/ident_fragment.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.45/src/to_tokens.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.45/src/runtime.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.45/src/spanned.rs /home/simon/.openclaw/workspace/rustvx/target/release/deps/libquote-6462f4c5c001e9d8.rlib: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.45/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.45/src/ext.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.45/src/format.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.45/src/ident_fragment.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.45/src/to_tokens.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.45/src/runtime.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.45/src/spanned.rs /home/simon/.openclaw/workspace/rustvx/target/release/deps/libquote-6462f4c5c001e9d8.rmeta: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.45/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.45/src/ext.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.45/src/format.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.45/src/ident_fragment.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.45/src/to_tokens.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.45/src/runtime.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.45/src/spanned.rs +>>>>>>> origin/master /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.45/src/lib.rs: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/quote-1.0.45/src/ext.rs: diff --git a/target/release/deps/rayon-ef538e4aeb428f43.d b/target/release/deps/rayon-ef538e4aeb428f43.d new file mode 100644 index 0000000..015c9d2 --- /dev/null +++ b/target/release/deps/rayon-ef538e4aeb428f43.d @@ -0,0 +1,103 @@ +/home/simon/.openclaw/workspace/rustVX/target/release/deps/rayon-ef538e4aeb428f43.d: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/delegate.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/private.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/split_producer.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/array.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/collections/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/collections/binary_heap.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/collections/btree_map.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/collections/btree_set.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/collections/hash_map.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/collections/hash_set.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/collections/linked_list.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/collections/vec_deque.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/plumbing/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/blocks.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/chain.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/chunks.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/cloned.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/collect/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/collect/consumer.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/collect/test.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/copied.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/empty.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/enumerate.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/extend.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/filter.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/filter_map.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/find.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/find_first_last/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/flat_map.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/flat_map_iter.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/flatten.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/flatten_iter.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/fold.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/fold_chunks.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/fold_chunks_with.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/for_each.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/from_par_iter.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/inspect.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/interleave.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/interleave_shortest.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/intersperse.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/len.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/map.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/map_with.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/multizip.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/noop.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/once.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/panic_fuse.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/par_bridge.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/positions.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/product.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/reduce.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/repeat.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/rev.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/skip.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/skip_any.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/skip_any_while.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/splitter.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/step_by.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/sum.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/take.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/take_any.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/take_any_while.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/try_fold.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/try_reduce.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/try_reduce_with.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/unzip.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/update.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/walk_tree.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/while_some.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/zip.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/zip_eq.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/option.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/prelude.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/range.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/range_inclusive.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/result.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/slice/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/slice/chunk_by.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/slice/chunks.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/slice/rchunks.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/slice/sort.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/slice/test.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/str.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/string.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/vec.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/math.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/par_either.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/compile_fail/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/compile_fail/cannot_collect_filtermap_data.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/compile_fail/cannot_zip_filtered_data.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/compile_fail/cell_par_iter.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/compile_fail/must_use.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/compile_fail/no_send_par_iter.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/compile_fail/rc_par_iter.rs + +/home/simon/.openclaw/workspace/rustVX/target/release/deps/librayon-ef538e4aeb428f43.rlib: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/delegate.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/private.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/split_producer.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/array.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/collections/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/collections/binary_heap.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/collections/btree_map.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/collections/btree_set.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/collections/hash_map.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/collections/hash_set.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/collections/linked_list.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/collections/vec_deque.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/plumbing/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/blocks.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/chain.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/chunks.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/cloned.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/collect/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/collect/consumer.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/collect/test.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/copied.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/empty.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/enumerate.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/extend.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/filter.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/filter_map.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/find.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/find_first_last/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/flat_map.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/flat_map_iter.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/flatten.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/flatten_iter.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/fold.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/fold_chunks.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/fold_chunks_with.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/for_each.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/from_par_iter.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/inspect.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/interleave.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/interleave_shortest.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/intersperse.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/len.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/map.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/map_with.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/multizip.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/noop.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/once.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/panic_fuse.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/par_bridge.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/positions.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/product.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/reduce.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/repeat.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/rev.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/skip.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/skip_any.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/skip_any_while.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/splitter.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/step_by.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/sum.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/take.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/take_any.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/take_any_while.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/try_fold.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/try_reduce.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/try_reduce_with.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/unzip.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/update.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/walk_tree.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/while_some.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/zip.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/zip_eq.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/option.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/prelude.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/range.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/range_inclusive.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/result.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/slice/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/slice/chunk_by.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/slice/chunks.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/slice/rchunks.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/slice/sort.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/slice/test.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/str.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/string.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/vec.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/math.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/par_either.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/compile_fail/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/compile_fail/cannot_collect_filtermap_data.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/compile_fail/cannot_zip_filtered_data.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/compile_fail/cell_par_iter.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/compile_fail/must_use.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/compile_fail/no_send_par_iter.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/compile_fail/rc_par_iter.rs + +/home/simon/.openclaw/workspace/rustVX/target/release/deps/librayon-ef538e4aeb428f43.rmeta: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/delegate.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/private.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/split_producer.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/array.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/collections/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/collections/binary_heap.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/collections/btree_map.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/collections/btree_set.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/collections/hash_map.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/collections/hash_set.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/collections/linked_list.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/collections/vec_deque.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/plumbing/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/blocks.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/chain.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/chunks.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/cloned.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/collect/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/collect/consumer.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/collect/test.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/copied.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/empty.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/enumerate.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/extend.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/filter.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/filter_map.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/find.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/find_first_last/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/flat_map.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/flat_map_iter.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/flatten.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/flatten_iter.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/fold.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/fold_chunks.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/fold_chunks_with.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/for_each.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/from_par_iter.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/inspect.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/interleave.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/interleave_shortest.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/intersperse.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/len.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/map.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/map_with.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/multizip.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/noop.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/once.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/panic_fuse.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/par_bridge.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/positions.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/product.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/reduce.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/repeat.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/rev.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/skip.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/skip_any.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/skip_any_while.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/splitter.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/step_by.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/sum.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/take.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/take_any.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/take_any_while.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/try_fold.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/try_reduce.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/try_reduce_with.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/unzip.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/update.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/walk_tree.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/while_some.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/zip.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/zip_eq.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/option.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/prelude.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/range.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/range_inclusive.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/result.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/slice/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/slice/chunk_by.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/slice/chunks.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/slice/rchunks.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/slice/sort.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/slice/test.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/str.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/string.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/vec.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/math.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/par_either.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/compile_fail/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/compile_fail/cannot_collect_filtermap_data.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/compile_fail/cannot_zip_filtered_data.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/compile_fail/cell_par_iter.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/compile_fail/must_use.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/compile_fail/no_send_par_iter.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/compile_fail/rc_par_iter.rs + +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/lib.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/delegate.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/private.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/split_producer.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/array.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/collections/mod.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/collections/binary_heap.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/collections/btree_map.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/collections/btree_set.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/collections/hash_map.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/collections/hash_set.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/collections/linked_list.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/collections/vec_deque.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/mod.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/plumbing/mod.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/blocks.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/chain.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/chunks.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/cloned.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/collect/mod.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/collect/consumer.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/collect/test.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/copied.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/empty.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/enumerate.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/extend.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/filter.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/filter_map.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/find.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/find_first_last/mod.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/flat_map.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/flat_map_iter.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/flatten.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/flatten_iter.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/fold.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/fold_chunks.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/fold_chunks_with.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/for_each.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/from_par_iter.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/inspect.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/interleave.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/interleave_shortest.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/intersperse.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/len.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/map.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/map_with.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/multizip.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/noop.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/once.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/panic_fuse.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/par_bridge.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/positions.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/product.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/reduce.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/repeat.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/rev.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/skip.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/skip_any.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/skip_any_while.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/splitter.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/step_by.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/sum.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/take.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/take_any.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/take_any_while.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/try_fold.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/try_reduce.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/try_reduce_with.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/unzip.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/update.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/walk_tree.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/while_some.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/zip.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/iter/zip_eq.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/option.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/prelude.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/range.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/range_inclusive.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/result.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/slice/mod.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/slice/chunk_by.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/slice/chunks.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/slice/rchunks.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/slice/sort.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/slice/test.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/str.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/string.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/vec.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/math.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/par_either.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/compile_fail/mod.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/compile_fail/cannot_collect_filtermap_data.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/compile_fail/cannot_zip_filtered_data.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/compile_fail/cell_par_iter.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/compile_fail/must_use.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/compile_fail/no_send_par_iter.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-1.11.0/src/compile_fail/rc_par_iter.rs: diff --git a/target/release/deps/rayon_core-5a375d021037a2b6.d b/target/release/deps/rayon_core-5a375d021037a2b6.d new file mode 100644 index 0000000..a16393e --- /dev/null +++ b/target/release/deps/rayon_core-5a375d021037a2b6.d @@ -0,0 +1,29 @@ +/home/simon/.openclaw/workspace/rustVX/target/release/deps/rayon_core-5a375d021037a2b6.d: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-core-1.13.0/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-core-1.13.0/src/private.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-core-1.13.0/src/broadcast/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-core-1.13.0/src/broadcast/test.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-core-1.13.0/src/job.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-core-1.13.0/src/join/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-core-1.13.0/src/latch.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-core-1.13.0/src/registry.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-core-1.13.0/src/scope/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-core-1.13.0/src/sleep/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-core-1.13.0/src/sleep/counters.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-core-1.13.0/src/spawn/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-core-1.13.0/src/thread_pool/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-core-1.13.0/src/thread_pool/test.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-core-1.13.0/src/unwind.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-core-1.13.0/src/compile_fail/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-core-1.13.0/src/compile_fail/quicksort_race1.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-core-1.13.0/src/compile_fail/quicksort_race2.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-core-1.13.0/src/compile_fail/quicksort_race3.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-core-1.13.0/src/compile_fail/rc_return.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-core-1.13.0/src/compile_fail/rc_upvar.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-core-1.13.0/src/compile_fail/scope_join_bad.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-core-1.13.0/src/test.rs + +/home/simon/.openclaw/workspace/rustVX/target/release/deps/librayon_core-5a375d021037a2b6.rlib: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-core-1.13.0/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-core-1.13.0/src/private.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-core-1.13.0/src/broadcast/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-core-1.13.0/src/broadcast/test.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-core-1.13.0/src/job.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-core-1.13.0/src/join/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-core-1.13.0/src/latch.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-core-1.13.0/src/registry.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-core-1.13.0/src/scope/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-core-1.13.0/src/sleep/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-core-1.13.0/src/sleep/counters.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-core-1.13.0/src/spawn/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-core-1.13.0/src/thread_pool/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-core-1.13.0/src/thread_pool/test.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-core-1.13.0/src/unwind.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-core-1.13.0/src/compile_fail/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-core-1.13.0/src/compile_fail/quicksort_race1.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-core-1.13.0/src/compile_fail/quicksort_race2.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-core-1.13.0/src/compile_fail/quicksort_race3.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-core-1.13.0/src/compile_fail/rc_return.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-core-1.13.0/src/compile_fail/rc_upvar.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-core-1.13.0/src/compile_fail/scope_join_bad.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-core-1.13.0/src/test.rs + +/home/simon/.openclaw/workspace/rustVX/target/release/deps/librayon_core-5a375d021037a2b6.rmeta: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-core-1.13.0/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-core-1.13.0/src/private.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-core-1.13.0/src/broadcast/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-core-1.13.0/src/broadcast/test.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-core-1.13.0/src/job.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-core-1.13.0/src/join/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-core-1.13.0/src/latch.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-core-1.13.0/src/registry.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-core-1.13.0/src/scope/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-core-1.13.0/src/sleep/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-core-1.13.0/src/sleep/counters.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-core-1.13.0/src/spawn/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-core-1.13.0/src/thread_pool/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-core-1.13.0/src/thread_pool/test.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-core-1.13.0/src/unwind.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-core-1.13.0/src/compile_fail/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-core-1.13.0/src/compile_fail/quicksort_race1.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-core-1.13.0/src/compile_fail/quicksort_race2.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-core-1.13.0/src/compile_fail/quicksort_race3.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-core-1.13.0/src/compile_fail/rc_return.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-core-1.13.0/src/compile_fail/rc_upvar.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-core-1.13.0/src/compile_fail/scope_join_bad.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-core-1.13.0/src/test.rs + +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-core-1.13.0/src/lib.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-core-1.13.0/src/private.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-core-1.13.0/src/broadcast/mod.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-core-1.13.0/src/broadcast/test.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-core-1.13.0/src/job.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-core-1.13.0/src/join/mod.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-core-1.13.0/src/latch.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-core-1.13.0/src/registry.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-core-1.13.0/src/scope/mod.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-core-1.13.0/src/sleep/mod.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-core-1.13.0/src/sleep/counters.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-core-1.13.0/src/spawn/mod.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-core-1.13.0/src/thread_pool/mod.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-core-1.13.0/src/thread_pool/test.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-core-1.13.0/src/unwind.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-core-1.13.0/src/compile_fail/mod.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-core-1.13.0/src/compile_fail/quicksort_race1.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-core-1.13.0/src/compile_fail/quicksort_race2.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-core-1.13.0/src/compile_fail/quicksort_race3.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-core-1.13.0/src/compile_fail/rc_return.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-core-1.13.0/src/compile_fail/rc_upvar.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-core-1.13.0/src/compile_fail/scope_join_bad.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/rayon-core-1.13.0/src/test.rs: diff --git a/target/release/deps/regex-f95dd342f35f01a5.d b/target/release/deps/regex-f95dd342f35f01a5.d new file mode 100644 index 0000000..8f6b061 --- /dev/null +++ b/target/release/deps/regex-f95dd342f35f01a5.d @@ -0,0 +1,17 @@ +/home/simon/.openclaw/workspace/rustVX/target/release/deps/regex-f95dd342f35f01a5.d: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.12.3/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.12.3/src/builders.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.12.3/src/bytes.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.12.3/src/error.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.12.3/src/find_byte.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.12.3/src/regex/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.12.3/src/regex/bytes.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.12.3/src/regex/string.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.12.3/src/regexset/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.12.3/src/regexset/bytes.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.12.3/src/regexset/string.rs + +/home/simon/.openclaw/workspace/rustVX/target/release/deps/libregex-f95dd342f35f01a5.rlib: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.12.3/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.12.3/src/builders.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.12.3/src/bytes.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.12.3/src/error.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.12.3/src/find_byte.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.12.3/src/regex/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.12.3/src/regex/bytes.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.12.3/src/regex/string.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.12.3/src/regexset/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.12.3/src/regexset/bytes.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.12.3/src/regexset/string.rs + +/home/simon/.openclaw/workspace/rustVX/target/release/deps/libregex-f95dd342f35f01a5.rmeta: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.12.3/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.12.3/src/builders.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.12.3/src/bytes.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.12.3/src/error.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.12.3/src/find_byte.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.12.3/src/regex/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.12.3/src/regex/bytes.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.12.3/src/regex/string.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.12.3/src/regexset/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.12.3/src/regexset/bytes.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.12.3/src/regexset/string.rs + +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.12.3/src/lib.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.12.3/src/builders.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.12.3/src/bytes.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.12.3/src/error.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.12.3/src/find_byte.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.12.3/src/regex/mod.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.12.3/src/regex/bytes.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.12.3/src/regex/string.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.12.3/src/regexset/mod.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.12.3/src/regexset/bytes.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-1.12.3/src/regexset/string.rs: diff --git a/target/release/deps/regex_automata-377dae046e8013f7.d b/target/release/deps/regex_automata-377dae046e8013f7.d new file mode 100644 index 0000000..10f3e60 --- /dev/null +++ b/target/release/deps/regex_automata-377dae046e8013f7.d @@ -0,0 +1,51 @@ +/home/simon/.openclaw/workspace/rustVX/target/release/deps/regex_automata-377dae046e8013f7.d: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/macros.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/meta/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/meta/error.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/meta/literal.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/meta/regex.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/meta/reverse_inner.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/meta/strategy.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/meta/wrappers.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/nfa/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/nfa/thompson/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/nfa/thompson/builder.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/nfa/thompson/compiler.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/nfa/thompson/error.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/nfa/thompson/literal_trie.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/nfa/thompson/map.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/nfa/thompson/nfa.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/nfa/thompson/pikevm.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/nfa/thompson/range_trie.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/alphabet.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/captures.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/escape.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/interpolate.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/iter.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/lazy.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/look.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/pool.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/prefilter/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/prefilter/aho_corasick.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/prefilter/byteset.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/prefilter/memchr.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/prefilter/memmem.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/prefilter/teddy.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/primitives.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/start.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/syntax.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/wire.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/empty.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/int.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/memchr.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/search.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/sparse_set.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/unicode_data/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/utf8.rs + +/home/simon/.openclaw/workspace/rustVX/target/release/deps/libregex_automata-377dae046e8013f7.rlib: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/macros.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/meta/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/meta/error.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/meta/literal.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/meta/regex.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/meta/reverse_inner.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/meta/strategy.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/meta/wrappers.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/nfa/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/nfa/thompson/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/nfa/thompson/builder.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/nfa/thompson/compiler.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/nfa/thompson/error.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/nfa/thompson/literal_trie.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/nfa/thompson/map.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/nfa/thompson/nfa.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/nfa/thompson/pikevm.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/nfa/thompson/range_trie.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/alphabet.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/captures.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/escape.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/interpolate.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/iter.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/lazy.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/look.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/pool.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/prefilter/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/prefilter/aho_corasick.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/prefilter/byteset.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/prefilter/memchr.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/prefilter/memmem.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/prefilter/teddy.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/primitives.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/start.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/syntax.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/wire.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/empty.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/int.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/memchr.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/search.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/sparse_set.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/unicode_data/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/utf8.rs + +/home/simon/.openclaw/workspace/rustVX/target/release/deps/libregex_automata-377dae046e8013f7.rmeta: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/macros.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/meta/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/meta/error.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/meta/literal.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/meta/regex.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/meta/reverse_inner.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/meta/strategy.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/meta/wrappers.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/nfa/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/nfa/thompson/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/nfa/thompson/builder.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/nfa/thompson/compiler.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/nfa/thompson/error.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/nfa/thompson/literal_trie.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/nfa/thompson/map.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/nfa/thompson/nfa.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/nfa/thompson/pikevm.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/nfa/thompson/range_trie.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/alphabet.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/captures.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/escape.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/interpolate.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/iter.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/lazy.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/look.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/pool.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/prefilter/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/prefilter/aho_corasick.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/prefilter/byteset.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/prefilter/memchr.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/prefilter/memmem.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/prefilter/teddy.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/primitives.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/start.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/syntax.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/wire.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/empty.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/int.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/memchr.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/search.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/sparse_set.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/unicode_data/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/utf8.rs + +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/lib.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/macros.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/meta/mod.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/meta/error.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/meta/literal.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/meta/regex.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/meta/reverse_inner.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/meta/strategy.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/meta/wrappers.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/nfa/mod.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/nfa/thompson/mod.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/nfa/thompson/builder.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/nfa/thompson/compiler.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/nfa/thompson/error.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/nfa/thompson/literal_trie.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/nfa/thompson/map.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/nfa/thompson/nfa.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/nfa/thompson/pikevm.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/nfa/thompson/range_trie.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/mod.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/alphabet.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/captures.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/escape.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/interpolate.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/iter.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/lazy.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/look.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/pool.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/prefilter/mod.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/prefilter/aho_corasick.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/prefilter/byteset.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/prefilter/memchr.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/prefilter/memmem.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/prefilter/teddy.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/primitives.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/start.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/syntax.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/wire.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/empty.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/int.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/memchr.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/search.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/sparse_set.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/unicode_data/mod.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-automata-0.4.14/src/util/utf8.rs: diff --git a/target/release/deps/regex_syntax-93a683800cc09f4c.d b/target/release/deps/regex_syntax-93a683800cc09f4c.d new file mode 100644 index 0000000..dc2f148 --- /dev/null +++ b/target/release/deps/regex_syntax-93a683800cc09f4c.d @@ -0,0 +1,25 @@ +/home/simon/.openclaw/workspace/rustVX/target/release/deps/regex_syntax-93a683800cc09f4c.d: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.10/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.10/src/ast/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.10/src/ast/parse.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.10/src/ast/print.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.10/src/ast/visitor.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.10/src/debug.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.10/src/either.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.10/src/error.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.10/src/hir/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.10/src/hir/interval.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.10/src/hir/literal.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.10/src/hir/print.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.10/src/hir/translate.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.10/src/hir/visitor.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.10/src/parser.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.10/src/rank.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.10/src/unicode.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.10/src/unicode_tables/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.10/src/utf8.rs + +/home/simon/.openclaw/workspace/rustVX/target/release/deps/libregex_syntax-93a683800cc09f4c.rlib: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.10/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.10/src/ast/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.10/src/ast/parse.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.10/src/ast/print.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.10/src/ast/visitor.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.10/src/debug.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.10/src/either.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.10/src/error.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.10/src/hir/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.10/src/hir/interval.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.10/src/hir/literal.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.10/src/hir/print.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.10/src/hir/translate.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.10/src/hir/visitor.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.10/src/parser.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.10/src/rank.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.10/src/unicode.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.10/src/unicode_tables/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.10/src/utf8.rs + +/home/simon/.openclaw/workspace/rustVX/target/release/deps/libregex_syntax-93a683800cc09f4c.rmeta: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.10/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.10/src/ast/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.10/src/ast/parse.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.10/src/ast/print.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.10/src/ast/visitor.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.10/src/debug.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.10/src/either.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.10/src/error.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.10/src/hir/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.10/src/hir/interval.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.10/src/hir/literal.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.10/src/hir/print.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.10/src/hir/translate.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.10/src/hir/visitor.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.10/src/parser.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.10/src/rank.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.10/src/unicode.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.10/src/unicode_tables/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.10/src/utf8.rs + +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.10/src/lib.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.10/src/ast/mod.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.10/src/ast/parse.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.10/src/ast/print.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.10/src/ast/visitor.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.10/src/debug.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.10/src/either.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.10/src/error.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.10/src/hir/mod.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.10/src/hir/interval.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.10/src/hir/literal.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.10/src/hir/print.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.10/src/hir/translate.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.10/src/hir/visitor.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.10/src/parser.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.10/src/rank.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.10/src/unicode.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.10/src/unicode_tables/mod.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/regex-syntax-0.8.10/src/utf8.rs: diff --git a/target/release/deps/same_file-64e531aa09097702.d b/target/release/deps/same_file-64e531aa09097702.d new file mode 100644 index 0000000..40f8bc6 --- /dev/null +++ b/target/release/deps/same_file-64e531aa09097702.d @@ -0,0 +1,8 @@ +/home/simon/.openclaw/workspace/rustVX/target/release/deps/same_file-64e531aa09097702.d: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/same-file-1.0.6/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/same-file-1.0.6/src/unix.rs + +/home/simon/.openclaw/workspace/rustVX/target/release/deps/libsame_file-64e531aa09097702.rlib: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/same-file-1.0.6/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/same-file-1.0.6/src/unix.rs + +/home/simon/.openclaw/workspace/rustVX/target/release/deps/libsame_file-64e531aa09097702.rmeta: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/same-file-1.0.6/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/same-file-1.0.6/src/unix.rs + +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/same-file-1.0.6/src/lib.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/same-file-1.0.6/src/unix.rs: diff --git a/target/release/deps/scopeguard-e2a46a01604b4060.d b/target/release/deps/scopeguard-e2a46a01604b4060.d index aad79f4..beafe0f 100644 --- a/target/release/deps/scopeguard-e2a46a01604b4060.d +++ b/target/release/deps/scopeguard-e2a46a01604b4060.d @@ -1,7 +1,15 @@ +<<<<<<< HEAD +/home/simon/.openclaw/workspace/rustVX/target/release/deps/scopeguard-e2a46a01604b4060.d: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/scopeguard-1.2.0/src/lib.rs + +/home/simon/.openclaw/workspace/rustVX/target/release/deps/libscopeguard-e2a46a01604b4060.rlib: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/scopeguard-1.2.0/src/lib.rs + +/home/simon/.openclaw/workspace/rustVX/target/release/deps/libscopeguard-e2a46a01604b4060.rmeta: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/scopeguard-1.2.0/src/lib.rs +======= /home/simon/.openclaw/workspace/rustvx/target/release/deps/scopeguard-e2a46a01604b4060.d: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/scopeguard-1.2.0/src/lib.rs /home/simon/.openclaw/workspace/rustvx/target/release/deps/libscopeguard-e2a46a01604b4060.rlib: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/scopeguard-1.2.0/src/lib.rs /home/simon/.openclaw/workspace/rustvx/target/release/deps/libscopeguard-e2a46a01604b4060.rmeta: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/scopeguard-1.2.0/src/lib.rs +>>>>>>> origin/master /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/scopeguard-1.2.0/src/lib.rs: diff --git a/target/release/deps/serde-c8a3a5ede2ff5100.d b/target/release/deps/serde-c8a3a5ede2ff5100.d new file mode 100644 index 0000000..daba042 --- /dev/null +++ b/target/release/deps/serde-c8a3a5ede2ff5100.d @@ -0,0 +1,14 @@ +/home/simon/.openclaw/workspace/rustVX/target/release/deps/serde-c8a3a5ede2ff5100.d: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.228/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.228/src/integer128.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.228/src/private/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.228/src/private/de.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.228/src/private/ser.rs /home/simon/.openclaw/workspace/rustVX/target/release/build/serde-af0d85b33381362c/out/private.rs + +/home/simon/.openclaw/workspace/rustVX/target/release/deps/libserde-c8a3a5ede2ff5100.rlib: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.228/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.228/src/integer128.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.228/src/private/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.228/src/private/de.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.228/src/private/ser.rs /home/simon/.openclaw/workspace/rustVX/target/release/build/serde-af0d85b33381362c/out/private.rs + +/home/simon/.openclaw/workspace/rustVX/target/release/deps/libserde-c8a3a5ede2ff5100.rmeta: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.228/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.228/src/integer128.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.228/src/private/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.228/src/private/de.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.228/src/private/ser.rs /home/simon/.openclaw/workspace/rustVX/target/release/build/serde-af0d85b33381362c/out/private.rs + +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.228/src/lib.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.228/src/integer128.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.228/src/private/mod.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.228/src/private/de.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde-1.0.228/src/private/ser.rs: +/home/simon/.openclaw/workspace/rustVX/target/release/build/serde-af0d85b33381362c/out/private.rs: + +# env-dep:OUT_DIR=/home/simon/.openclaw/workspace/rustVX/target/release/build/serde-af0d85b33381362c/out diff --git a/target/release/deps/serde_core-c78673a2db8b2ceb.d b/target/release/deps/serde_core-c78673a2db8b2ceb.d new file mode 100644 index 0000000..f0d243d --- /dev/null +++ b/target/release/deps/serde_core-c78673a2db8b2ceb.d @@ -0,0 +1,27 @@ +/home/simon/.openclaw/workspace/rustVX/target/release/deps/serde_core-c78673a2db8b2ceb.d: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/crate_root.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/macros.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/de/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/de/value.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/de/ignored_any.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/de/impls.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/ser/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/ser/fmt.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/ser/impls.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/ser/impossible.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/format.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/private/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/private/content.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/private/seed.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/private/doc.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/private/size_hint.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/private/string.rs /home/simon/.openclaw/workspace/rustVX/target/release/build/serde_core-9327041b313c07c5/out/private.rs + +/home/simon/.openclaw/workspace/rustVX/target/release/deps/libserde_core-c78673a2db8b2ceb.rlib: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/crate_root.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/macros.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/de/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/de/value.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/de/ignored_any.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/de/impls.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/ser/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/ser/fmt.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/ser/impls.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/ser/impossible.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/format.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/private/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/private/content.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/private/seed.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/private/doc.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/private/size_hint.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/private/string.rs /home/simon/.openclaw/workspace/rustVX/target/release/build/serde_core-9327041b313c07c5/out/private.rs + +/home/simon/.openclaw/workspace/rustVX/target/release/deps/libserde_core-c78673a2db8b2ceb.rmeta: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/crate_root.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/macros.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/de/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/de/value.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/de/ignored_any.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/de/impls.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/ser/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/ser/fmt.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/ser/impls.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/ser/impossible.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/format.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/private/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/private/content.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/private/seed.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/private/doc.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/private/size_hint.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/private/string.rs /home/simon/.openclaw/workspace/rustVX/target/release/build/serde_core-9327041b313c07c5/out/private.rs + +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/lib.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/crate_root.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/macros.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/de/mod.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/de/value.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/de/ignored_any.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/de/impls.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/ser/mod.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/ser/fmt.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/ser/impls.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/ser/impossible.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/format.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/private/mod.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/private/content.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/private/seed.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/private/doc.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/private/size_hint.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_core-1.0.228/src/private/string.rs: +/home/simon/.openclaw/workspace/rustVX/target/release/build/serde_core-9327041b313c07c5/out/private.rs: + +# env-dep:OUT_DIR=/home/simon/.openclaw/workspace/rustVX/target/release/build/serde_core-9327041b313c07c5/out diff --git a/target/release/deps/serde_derive-90564e0e713ce840.d b/target/release/deps/serde_derive-90564e0e713ce840.d new file mode 100644 index 0000000..ecd237a --- /dev/null +++ b/target/release/deps/serde_derive-90564e0e713ce840.d @@ -0,0 +1,34 @@ +/home/simon/.openclaw/workspace/rustVX/target/release/deps/serde_derive-90564e0e713ce840.d: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/internals/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/internals/ast.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/internals/attr.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/internals/name.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/internals/case.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/internals/check.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/internals/ctxt.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/internals/receiver.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/internals/respan.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/internals/symbol.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/bound.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/fragment.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/de.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/de/enum_.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/de/enum_adjacently.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/de/enum_externally.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/de/enum_internally.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/de/enum_untagged.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/de/identifier.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/de/struct_.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/de/tuple.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/de/unit.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/deprecated.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/dummy.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/pretend.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/ser.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/this.rs + +/home/simon/.openclaw/workspace/rustVX/target/release/deps/libserde_derive-90564e0e713ce840.so: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/internals/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/internals/ast.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/internals/attr.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/internals/name.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/internals/case.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/internals/check.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/internals/ctxt.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/internals/receiver.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/internals/respan.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/internals/symbol.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/bound.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/fragment.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/de.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/de/enum_.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/de/enum_adjacently.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/de/enum_externally.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/de/enum_internally.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/de/enum_untagged.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/de/identifier.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/de/struct_.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/de/tuple.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/de/unit.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/deprecated.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/dummy.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/pretend.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/ser.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/this.rs + +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/lib.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/internals/mod.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/internals/ast.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/internals/attr.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/internals/name.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/internals/case.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/internals/check.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/internals/ctxt.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/internals/receiver.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/internals/respan.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/internals/symbol.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/bound.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/fragment.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/de.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/de/enum_.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/de/enum_adjacently.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/de/enum_externally.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/de/enum_internally.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/de/enum_untagged.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/de/identifier.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/de/struct_.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/de/tuple.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/de/unit.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/deprecated.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/dummy.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/pretend.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/ser.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_derive-1.0.228/src/this.rs: + +# env-dep:CARGO_PKG_VERSION_PATCH=228 diff --git a/target/release/deps/serde_json-ac29baafb7bec543.d b/target/release/deps/serde_json-ac29baafb7bec543.d new file mode 100644 index 0000000..9b85bd3 --- /dev/null +++ b/target/release/deps/serde_json-ac29baafb7bec543.d @@ -0,0 +1,22 @@ +/home/simon/.openclaw/workspace/rustVX/target/release/deps/serde_json-ac29baafb7bec543.d: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.149/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.149/src/macros.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.149/src/de.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.149/src/error.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.149/src/map.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.149/src/ser.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.149/src/value/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.149/src/value/de.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.149/src/value/from.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.149/src/value/index.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.149/src/value/partial_eq.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.149/src/value/ser.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.149/src/io/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.149/src/iter.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.149/src/number.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.149/src/read.rs + +/home/simon/.openclaw/workspace/rustVX/target/release/deps/libserde_json-ac29baafb7bec543.rlib: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.149/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.149/src/macros.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.149/src/de.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.149/src/error.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.149/src/map.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.149/src/ser.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.149/src/value/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.149/src/value/de.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.149/src/value/from.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.149/src/value/index.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.149/src/value/partial_eq.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.149/src/value/ser.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.149/src/io/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.149/src/iter.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.149/src/number.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.149/src/read.rs + +/home/simon/.openclaw/workspace/rustVX/target/release/deps/libserde_json-ac29baafb7bec543.rmeta: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.149/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.149/src/macros.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.149/src/de.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.149/src/error.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.149/src/map.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.149/src/ser.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.149/src/value/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.149/src/value/de.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.149/src/value/from.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.149/src/value/index.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.149/src/value/partial_eq.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.149/src/value/ser.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.149/src/io/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.149/src/iter.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.149/src/number.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.149/src/read.rs + +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.149/src/lib.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.149/src/macros.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.149/src/de.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.149/src/error.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.149/src/map.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.149/src/ser.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.149/src/value/mod.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.149/src/value/de.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.149/src/value/from.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.149/src/value/index.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.149/src/value/partial_eq.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.149/src/value/ser.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.149/src/io/mod.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.149/src/iter.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.149/src/number.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/serde_json-1.0.149/src/read.rs: diff --git a/target/release/deps/smallvec-e07ee3139771e6d2.d b/target/release/deps/smallvec-e07ee3139771e6d2.d index c72dd1f..61dd209 100644 --- a/target/release/deps/smallvec-e07ee3139771e6d2.d +++ b/target/release/deps/smallvec-e07ee3139771e6d2.d @@ -1,7 +1,15 @@ +<<<<<<< HEAD +/home/simon/.openclaw/workspace/rustVX/target/release/deps/smallvec-e07ee3139771e6d2.d: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/smallvec-1.15.1/src/lib.rs + +/home/simon/.openclaw/workspace/rustVX/target/release/deps/libsmallvec-e07ee3139771e6d2.rlib: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/smallvec-1.15.1/src/lib.rs + +/home/simon/.openclaw/workspace/rustVX/target/release/deps/libsmallvec-e07ee3139771e6d2.rmeta: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/smallvec-1.15.1/src/lib.rs +======= /home/simon/.openclaw/workspace/rustvx/target/release/deps/smallvec-e07ee3139771e6d2.d: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/smallvec-1.15.1/src/lib.rs /home/simon/.openclaw/workspace/rustvx/target/release/deps/libsmallvec-e07ee3139771e6d2.rlib: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/smallvec-1.15.1/src/lib.rs /home/simon/.openclaw/workspace/rustvx/target/release/deps/libsmallvec-e07ee3139771e6d2.rmeta: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/smallvec-1.15.1/src/lib.rs +>>>>>>> origin/master /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/smallvec-1.15.1/src/lib.rs: diff --git a/target/release/deps/statistics_tests-e97f8a1bfacfeb1f b/target/release/deps/statistics_tests-e97f8a1bfacfeb1f new file mode 100755 index 0000000..ca57198 Binary files /dev/null and b/target/release/deps/statistics_tests-e97f8a1bfacfeb1f differ diff --git a/target/release/deps/statistics_tests-e97f8a1bfacfeb1f.d b/target/release/deps/statistics_tests-e97f8a1bfacfeb1f.d new file mode 100644 index 0000000..303f157 --- /dev/null +++ b/target/release/deps/statistics_tests-e97f8a1bfacfeb1f.d @@ -0,0 +1,5 @@ +/home/simon/.openclaw/workspace/rustVX/target/release/deps/statistics_tests-e97f8a1bfacfeb1f.d: openvx-vision/tests/statistics_tests.rs + +/home/simon/.openclaw/workspace/rustVX/target/release/deps/statistics_tests-e97f8a1bfacfeb1f: openvx-vision/tests/statistics_tests.rs + +openvx-vision/tests/statistics_tests.rs: diff --git a/target/release/deps/syn-3072a9128d9eec2e.d b/target/release/deps/syn-3072a9128d9eec2e.d new file mode 100644 index 0000000..54606e3 --- /dev/null +++ b/target/release/deps/syn-3072a9128d9eec2e.d @@ -0,0 +1,53 @@ +/home/simon/.openclaw/workspace/rustVX/target/release/deps/syn-3072a9128d9eec2e.d: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/macros.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/group.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/token.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/attr.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/bigint.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/buffer.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/classify.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/custom_keyword.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/custom_punctuation.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/data.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/derive.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/drops.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/error.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/expr.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/ext.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/file.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/fixup.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/generics.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/ident.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/item.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/lifetime.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/lit.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/lookahead.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/mac.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/meta.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/op.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/parse.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/discouraged.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/parse_macro_input.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/parse_quote.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/pat.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/path.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/precedence.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/print.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/punctuated.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/restriction.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/sealed.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/span.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/spanned.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/stmt.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/thread.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/ty.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/verbatim.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/whitespace.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/export.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/gen/clone.rs + +/home/simon/.openclaw/workspace/rustVX/target/release/deps/libsyn-3072a9128d9eec2e.rlib: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/macros.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/group.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/token.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/attr.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/bigint.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/buffer.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/classify.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/custom_keyword.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/custom_punctuation.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/data.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/derive.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/drops.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/error.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/expr.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/ext.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/file.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/fixup.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/generics.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/ident.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/item.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/lifetime.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/lit.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/lookahead.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/mac.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/meta.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/op.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/parse.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/discouraged.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/parse_macro_input.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/parse_quote.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/pat.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/path.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/precedence.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/print.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/punctuated.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/restriction.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/sealed.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/span.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/spanned.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/stmt.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/thread.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/ty.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/verbatim.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/whitespace.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/export.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/gen/clone.rs + +/home/simon/.openclaw/workspace/rustVX/target/release/deps/libsyn-3072a9128d9eec2e.rmeta: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/macros.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/group.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/token.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/attr.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/bigint.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/buffer.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/classify.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/custom_keyword.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/custom_punctuation.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/data.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/derive.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/drops.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/error.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/expr.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/ext.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/file.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/fixup.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/generics.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/ident.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/item.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/lifetime.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/lit.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/lookahead.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/mac.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/meta.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/op.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/parse.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/discouraged.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/parse_macro_input.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/parse_quote.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/pat.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/path.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/precedence.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/print.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/punctuated.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/restriction.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/sealed.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/span.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/spanned.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/stmt.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/thread.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/ty.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/verbatim.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/whitespace.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/export.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/gen/clone.rs + +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/lib.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/macros.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/group.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/token.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/attr.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/bigint.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/buffer.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/classify.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/custom_keyword.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/custom_punctuation.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/data.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/derive.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/drops.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/error.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/expr.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/ext.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/file.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/fixup.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/generics.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/ident.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/item.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/lifetime.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/lit.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/lookahead.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/mac.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/meta.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/op.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/parse.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/discouraged.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/parse_macro_input.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/parse_quote.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/pat.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/path.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/precedence.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/print.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/punctuated.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/restriction.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/sealed.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/span.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/spanned.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/stmt.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/thread.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/ty.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/verbatim.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/whitespace.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/export.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/gen/clone.rs: diff --git a/target/release/deps/syn-c6f6cd2e1f4efb3d.d b/target/release/deps/syn-c6f6cd2e1f4efb3d.d index 873f0f6..6b69763 100644 --- a/target/release/deps/syn-c6f6cd2e1f4efb3d.d +++ b/target/release/deps/syn-c6f6cd2e1f4efb3d.d @@ -1,8 +1,16 @@ +<<<<<<< HEAD +/home/simon/.openclaw/workspace/rustVX/target/release/deps/syn-c6f6cd2e1f4efb3d.d: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/macros.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/group.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/token.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/attr.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/bigint.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/buffer.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/classify.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/custom_keyword.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/custom_punctuation.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/data.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/derive.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/drops.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/error.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/expr.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/ext.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/fixup.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/generics.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/ident.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/lifetime.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/lit.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/lookahead.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/mac.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/meta.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/op.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/parse.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/discouraged.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/parse_macro_input.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/parse_quote.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/path.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/precedence.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/print.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/punctuated.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/restriction.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/sealed.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/scan_expr.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/span.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/spanned.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/thread.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/ty.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/verbatim.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/export.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/gen/clone.rs + +/home/simon/.openclaw/workspace/rustVX/target/release/deps/libsyn-c6f6cd2e1f4efb3d.rlib: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/macros.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/group.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/token.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/attr.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/bigint.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/buffer.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/classify.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/custom_keyword.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/custom_punctuation.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/data.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/derive.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/drops.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/error.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/expr.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/ext.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/fixup.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/generics.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/ident.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/lifetime.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/lit.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/lookahead.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/mac.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/meta.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/op.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/parse.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/discouraged.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/parse_macro_input.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/parse_quote.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/path.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/precedence.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/print.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/punctuated.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/restriction.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/sealed.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/scan_expr.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/span.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/spanned.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/thread.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/ty.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/verbatim.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/export.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/gen/clone.rs + +/home/simon/.openclaw/workspace/rustVX/target/release/deps/libsyn-c6f6cd2e1f4efb3d.rmeta: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/macros.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/group.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/token.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/attr.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/bigint.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/buffer.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/classify.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/custom_keyword.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/custom_punctuation.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/data.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/derive.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/drops.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/error.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/expr.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/ext.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/fixup.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/generics.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/ident.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/lifetime.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/lit.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/lookahead.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/mac.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/meta.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/op.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/parse.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/discouraged.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/parse_macro_input.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/parse_quote.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/path.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/precedence.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/print.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/punctuated.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/restriction.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/sealed.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/scan_expr.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/span.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/spanned.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/thread.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/ty.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/verbatim.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/export.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/gen/clone.rs +======= /home/simon/.openclaw/workspace/rustvx/target/release/deps/syn-c6f6cd2e1f4efb3d.d: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/macros.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/group.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/token.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/attr.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/bigint.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/buffer.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/classify.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/custom_keyword.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/custom_punctuation.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/data.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/derive.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/drops.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/error.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/expr.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/ext.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/fixup.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/generics.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/ident.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/lifetime.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/lit.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/lookahead.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/mac.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/meta.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/op.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/parse.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/discouraged.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/parse_macro_input.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/parse_quote.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/path.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/precedence.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/print.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/punctuated.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/restriction.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/sealed.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/scan_expr.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/span.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/spanned.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/thread.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/ty.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/verbatim.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/export.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/gen/clone.rs /home/simon/.openclaw/workspace/rustvx/target/release/deps/libsyn-c6f6cd2e1f4efb3d.rlib: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/macros.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/group.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/token.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/attr.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/bigint.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/buffer.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/classify.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/custom_keyword.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/custom_punctuation.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/data.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/derive.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/drops.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/error.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/expr.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/ext.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/fixup.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/generics.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/ident.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/lifetime.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/lit.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/lookahead.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/mac.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/meta.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/op.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/parse.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/discouraged.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/parse_macro_input.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/parse_quote.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/path.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/precedence.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/print.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/punctuated.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/restriction.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/sealed.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/scan_expr.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/span.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/spanned.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/thread.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/ty.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/verbatim.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/export.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/gen/clone.rs /home/simon/.openclaw/workspace/rustvx/target/release/deps/libsyn-c6f6cd2e1f4efb3d.rmeta: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/macros.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/group.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/token.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/attr.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/bigint.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/buffer.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/classify.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/custom_keyword.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/custom_punctuation.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/data.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/derive.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/drops.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/error.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/expr.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/ext.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/fixup.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/generics.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/ident.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/lifetime.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/lit.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/lookahead.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/mac.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/meta.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/op.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/parse.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/discouraged.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/parse_macro_input.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/parse_quote.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/path.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/precedence.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/print.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/punctuated.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/restriction.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/sealed.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/scan_expr.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/span.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/spanned.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/thread.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/ty.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/verbatim.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/export.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/gen/clone.rs +>>>>>>> origin/master /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/lib.rs: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/syn-2.0.117/src/macros.rs: diff --git a/target/release/deps/thiserror-050a95dea439b9aa.d b/target/release/deps/thiserror-050a95dea439b9aa.d index c94d374..94e7dd2 100644 --- a/target/release/deps/thiserror-050a95dea439b9aa.d +++ b/target/release/deps/thiserror-050a95dea439b9aa.d @@ -1,8 +1,16 @@ +<<<<<<< HEAD +/home/simon/.openclaw/workspace/rustVX/target/release/deps/thiserror-050a95dea439b9aa.d: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/src/aserror.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/src/display.rs + +/home/simon/.openclaw/workspace/rustVX/target/release/deps/libthiserror-050a95dea439b9aa.rlib: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/src/aserror.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/src/display.rs + +/home/simon/.openclaw/workspace/rustVX/target/release/deps/libthiserror-050a95dea439b9aa.rmeta: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/src/aserror.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/src/display.rs +======= /home/simon/.openclaw/workspace/rustvx/target/release/deps/thiserror-050a95dea439b9aa.d: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/src/aserror.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/src/display.rs /home/simon/.openclaw/workspace/rustvx/target/release/deps/libthiserror-050a95dea439b9aa.rlib: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/src/aserror.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/src/display.rs /home/simon/.openclaw/workspace/rustvx/target/release/deps/libthiserror-050a95dea439b9aa.rmeta: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/src/aserror.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/src/display.rs +>>>>>>> origin/master /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/src/lib.rs: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/src/aserror.rs: diff --git a/target/release/deps/thiserror-c496eca3cadcee06.d b/target/release/deps/thiserror-c496eca3cadcee06.d new file mode 100644 index 0000000..71a2866 --- /dev/null +++ b/target/release/deps/thiserror-c496eca3cadcee06.d @@ -0,0 +1,9 @@ +/home/simon/.openclaw/workspace/rustVX/target/release/deps/thiserror-c496eca3cadcee06.d: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/src/aserror.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/src/display.rs + +/home/simon/.openclaw/workspace/rustVX/target/release/deps/libthiserror-c496eca3cadcee06.rlib: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/src/aserror.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/src/display.rs + +/home/simon/.openclaw/workspace/rustVX/target/release/deps/libthiserror-c496eca3cadcee06.rmeta: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/src/aserror.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/src/display.rs + +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/src/lib.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/src/aserror.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-1.0.69/src/display.rs: diff --git a/target/release/deps/thiserror_impl-2bfbf6a429632a87.d b/target/release/deps/thiserror_impl-2bfbf6a429632a87.d new file mode 100644 index 0000000..9e89ebc --- /dev/null +++ b/target/release/deps/thiserror_impl-2bfbf6a429632a87.d @@ -0,0 +1,14 @@ +/home/simon/.openclaw/workspace/rustVX/target/release/deps/thiserror_impl-2bfbf6a429632a87.d: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/ast.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/attr.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/expand.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/fmt.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/generics.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/prop.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/scan_expr.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/span.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/valid.rs + +/home/simon/.openclaw/workspace/rustVX/target/release/deps/libthiserror_impl-2bfbf6a429632a87.so: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/ast.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/attr.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/expand.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/fmt.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/generics.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/prop.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/scan_expr.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/span.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/valid.rs + +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/lib.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/ast.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/attr.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/expand.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/fmt.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/generics.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/prop.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/scan_expr.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/span.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/valid.rs: diff --git a/target/release/deps/thiserror_impl-afaa4bc9624f82c5.d b/target/release/deps/thiserror_impl-afaa4bc9624f82c5.d index 6e268e4..d398963 100644 --- a/target/release/deps/thiserror_impl-afaa4bc9624f82c5.d +++ b/target/release/deps/thiserror_impl-afaa4bc9624f82c5.d @@ -1,6 +1,12 @@ +<<<<<<< HEAD +/home/simon/.openclaw/workspace/rustVX/target/release/deps/thiserror_impl-afaa4bc9624f82c5.d: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/ast.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/attr.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/expand.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/fmt.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/generics.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/prop.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/scan_expr.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/span.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/valid.rs + +/home/simon/.openclaw/workspace/rustVX/target/release/deps/libthiserror_impl-afaa4bc9624f82c5.so: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/ast.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/attr.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/expand.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/fmt.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/generics.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/prop.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/scan_expr.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/span.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/valid.rs +======= /home/simon/.openclaw/workspace/rustvx/target/release/deps/thiserror_impl-afaa4bc9624f82c5.d: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/ast.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/attr.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/expand.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/fmt.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/generics.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/prop.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/scan_expr.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/span.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/valid.rs /home/simon/.openclaw/workspace/rustvx/target/release/deps/libthiserror_impl-afaa4bc9624f82c5.so: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/ast.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/attr.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/expand.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/fmt.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/generics.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/prop.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/scan_expr.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/span.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/valid.rs +>>>>>>> origin/master /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/lib.rs: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/thiserror-impl-1.0.69/src/ast.rs: diff --git a/target/release/deps/tinytemplate-699abacd98ca316b.d b/target/release/deps/tinytemplate-699abacd98ca316b.d new file mode 100644 index 0000000..a796b47 --- /dev/null +++ b/target/release/deps/tinytemplate-699abacd98ca316b.d @@ -0,0 +1,12 @@ +/home/simon/.openclaw/workspace/rustVX/target/release/deps/tinytemplate-699abacd98ca316b.d: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinytemplate-1.2.1/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinytemplate-1.2.1/src/compiler.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinytemplate-1.2.1/src/error.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinytemplate-1.2.1/src/instruction.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinytemplate-1.2.1/src/syntax.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinytemplate-1.2.1/src/template.rs + +/home/simon/.openclaw/workspace/rustVX/target/release/deps/libtinytemplate-699abacd98ca316b.rlib: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinytemplate-1.2.1/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinytemplate-1.2.1/src/compiler.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinytemplate-1.2.1/src/error.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinytemplate-1.2.1/src/instruction.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinytemplate-1.2.1/src/syntax.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinytemplate-1.2.1/src/template.rs + +/home/simon/.openclaw/workspace/rustVX/target/release/deps/libtinytemplate-699abacd98ca316b.rmeta: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinytemplate-1.2.1/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinytemplate-1.2.1/src/compiler.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinytemplate-1.2.1/src/error.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinytemplate-1.2.1/src/instruction.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinytemplate-1.2.1/src/syntax.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinytemplate-1.2.1/src/template.rs + +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinytemplate-1.2.1/src/lib.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinytemplate-1.2.1/src/compiler.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinytemplate-1.2.1/src/error.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinytemplate-1.2.1/src/instruction.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinytemplate-1.2.1/src/syntax.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/tinytemplate-1.2.1/src/template.rs: diff --git a/target/release/deps/unicode_ident-eb594fc5b763ee92.d b/target/release/deps/unicode_ident-eb594fc5b763ee92.d index 99b3327..f1a5767 100644 --- a/target/release/deps/unicode_ident-eb594fc5b763ee92.d +++ b/target/release/deps/unicode_ident-eb594fc5b763ee92.d @@ -1,8 +1,16 @@ +<<<<<<< HEAD +/home/simon/.openclaw/workspace/rustVX/target/release/deps/unicode_ident-eb594fc5b763ee92.d: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-ident-1.0.24/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-ident-1.0.24/src/tables.rs + +/home/simon/.openclaw/workspace/rustVX/target/release/deps/libunicode_ident-eb594fc5b763ee92.rlib: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-ident-1.0.24/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-ident-1.0.24/src/tables.rs + +/home/simon/.openclaw/workspace/rustVX/target/release/deps/libunicode_ident-eb594fc5b763ee92.rmeta: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-ident-1.0.24/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-ident-1.0.24/src/tables.rs +======= /home/simon/.openclaw/workspace/rustvx/target/release/deps/unicode_ident-eb594fc5b763ee92.d: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-ident-1.0.24/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-ident-1.0.24/src/tables.rs /home/simon/.openclaw/workspace/rustvx/target/release/deps/libunicode_ident-eb594fc5b763ee92.rlib: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-ident-1.0.24/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-ident-1.0.24/src/tables.rs /home/simon/.openclaw/workspace/rustvx/target/release/deps/libunicode_ident-eb594fc5b763ee92.rmeta: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-ident-1.0.24/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-ident-1.0.24/src/tables.rs +>>>>>>> origin/master /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-ident-1.0.24/src/lib.rs: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/unicode-ident-1.0.24/src/tables.rs: diff --git a/target/release/deps/walkdir-65f9781b0a65b478.d b/target/release/deps/walkdir-65f9781b0a65b478.d new file mode 100644 index 0000000..e56334a --- /dev/null +++ b/target/release/deps/walkdir-65f9781b0a65b478.d @@ -0,0 +1,10 @@ +/home/simon/.openclaw/workspace/rustVX/target/release/deps/walkdir-65f9781b0a65b478.d: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/walkdir-2.5.0/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/walkdir-2.5.0/src/dent.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/walkdir-2.5.0/src/error.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/walkdir-2.5.0/src/util.rs + +/home/simon/.openclaw/workspace/rustVX/target/release/deps/libwalkdir-65f9781b0a65b478.rlib: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/walkdir-2.5.0/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/walkdir-2.5.0/src/dent.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/walkdir-2.5.0/src/error.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/walkdir-2.5.0/src/util.rs + +/home/simon/.openclaw/workspace/rustVX/target/release/deps/libwalkdir-65f9781b0a65b478.rmeta: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/walkdir-2.5.0/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/walkdir-2.5.0/src/dent.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/walkdir-2.5.0/src/error.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/walkdir-2.5.0/src/util.rs + +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/walkdir-2.5.0/src/lib.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/walkdir-2.5.0/src/dent.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/walkdir-2.5.0/src/error.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/walkdir-2.5.0/src/util.rs: diff --git a/target/release/deps/zerocopy-1958fa5fef0c6d9e.d b/target/release/deps/zerocopy-1958fa5fef0c6d9e.d new file mode 100644 index 0000000..577c52c --- /dev/null +++ b/target/release/deps/zerocopy-1958fa5fef0c6d9e.d @@ -0,0 +1,208 @@ +/home/simon/.openclaw/workspace/rustVX/target/release/deps/zerocopy-1958fa5fef0c6d9e.d: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/util/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/util/macros.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/util/macro_util.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/byte_slice.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/byteorder.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/deprecated.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/error.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/impls.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/layout.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/macros.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/pointer/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/pointer/inner.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/pointer/invariant.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/pointer/ptr.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/pointer/transmute.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/ref.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/split_at.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/wrappers.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/formats/coco_static_size.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/transmute.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/transmute.x86-64 /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/transmute.x86-64.mca /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/transmute_ref_static_size.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/transmute_ref_static_size.x86-64 /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/transmute_ref_static_size.x86-64.mca /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/formats/coco_dynamic_size.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/transmute_ref_dynamic_size.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/transmute_ref_dynamic_size.x86-64 /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/transmute_ref_dynamic_size.x86-64.mca /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_transmute.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_transmute.x86-64 /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_transmute.x86-64.mca /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_transmute_ref_static_size.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_transmute_ref_static_size.x86-64 /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_transmute_ref_static_size.x86-64.mca /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_transmute_ref_dynamic_size.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_transmute_ref_dynamic_size.x86-64 /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_transmute_ref_dynamic_size.x86-64.mca /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/split_at_unchecked_dynamic_size.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/split_at_unchecked_dynamic_size.x86-64 /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/split_at_unchecked_dynamic_size.x86-64.mca /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/formats/coco_dynamic_padding.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/split_at_unchecked_dynamic_padding.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/split_at_unchecked_dynamic_padding.x86-64 /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/split_at_unchecked_dynamic_padding.x86-64.mca /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/split_at_dynamic_size.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/split_at_dynamic_size.x86-64 /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/split_at_dynamic_size.x86-64.mca /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/split_at_dynamic_padding.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/split_at_dynamic_padding.x86-64 /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/split_at_dynamic_padding.x86-64.mca /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/split_via_immutable_dynamic_size.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/split_via_immutable_dynamic_size.x86-64 /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/split_via_immutable_dynamic_size.x86-64.mca /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/split_via_immutable_dynamic_padding.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/split_via_immutable_dynamic_padding.x86-64 /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/split_via_immutable_dynamic_padding.x86-64.mca /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/split_via_runtime_check_dynamic_size.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/split_via_runtime_check_dynamic_size.x86-64 /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/split_via_runtime_check_dynamic_size.x86-64.mca /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/split_via_runtime_check_dynamic_padding.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/split_via_runtime_check_dynamic_padding.x86-64 /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/split_via_runtime_check_dynamic_padding.x86-64.mca /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/split_via_unchecked_dynamic_size.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/split_via_unchecked_dynamic_size.x86-64 /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/split_via_unchecked_dynamic_size.x86-64.mca /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/split_via_unchecked_dynamic_padding.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/split_via_unchecked_dynamic_padding.x86-64 /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/split_via_unchecked_dynamic_padding.x86-64.mca /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_ref_from_bytes_static_size.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_ref_from_bytes_static_size.x86-64 /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_ref_from_bytes_static_size.x86-64.mca /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_ref_from_bytes_dynamic_size.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_ref_from_bytes_dynamic_size.x86-64 /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_ref_from_bytes_dynamic_size.x86-64.mca /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_ref_from_bytes_dynamic_padding.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_ref_from_bytes_dynamic_padding.x86-64 /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_ref_from_bytes_dynamic_padding.x86-64.mca /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_ref_from_prefix_static_size.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_ref_from_prefix_static_size.x86-64 /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_ref_from_prefix_static_size.x86-64.mca /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_ref_from_prefix_dynamic_size.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_ref_from_prefix_dynamic_size.x86-64 /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_ref_from_prefix_dynamic_size.x86-64.mca /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_ref_from_prefix_dynamic_padding.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_ref_from_prefix_dynamic_padding.x86-64 /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_ref_from_prefix_dynamic_padding.x86-64.mca /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_ref_from_suffix_static_size.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_ref_from_suffix_static_size.x86-64 /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_ref_from_suffix_static_size.x86-64.mca /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_ref_from_suffix_dynamic_size.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_ref_from_suffix_dynamic_size.x86-64 /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_ref_from_suffix_dynamic_size.x86-64.mca /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_ref_from_suffix_dynamic_padding.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_ref_from_suffix_dynamic_padding.x86-64 /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_ref_from_suffix_dynamic_padding.x86-64.mca /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_ref_from_bytes_with_elems_dynamic_size.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_ref_from_bytes_with_elems_dynamic_size.x86-64 /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_ref_from_bytes_with_elems_dynamic_size.x86-64.mca /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_ref_from_bytes_with_elems_dynamic_padding.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_ref_from_bytes_with_elems_dynamic_padding.x86-64 /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_ref_from_bytes_with_elems_dynamic_padding.x86-64.mca /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_ref_from_prefix_with_elems_dynamic_size.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_ref_from_prefix_with_elems_dynamic_size.x86-64 /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_ref_from_prefix_with_elems_dynamic_size.x86-64.mca /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_ref_from_prefix_with_elems_dynamic_padding.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_ref_from_prefix_with_elems_dynamic_padding.x86-64 /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_ref_from_prefix_with_elems_dynamic_padding.x86-64.mca /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_ref_from_suffix_with_elems_dynamic_size.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_ref_from_suffix_with_elems_dynamic_size.x86-64 /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_ref_from_suffix_with_elems_dynamic_size.x86-64.mca /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_ref_from_suffix_with_elems_dynamic_padding.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_ref_from_suffix_with_elems_dynamic_padding.x86-64 /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_ref_from_suffix_with_elems_dynamic_padding.x86-64.mca /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_read_from_bytes.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_read_from_bytes.x86-64 /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_read_from_bytes.x86-64.mca /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_read_from_prefix.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_read_from_prefix.x86-64 /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_read_from_prefix.x86-64.mca /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_read_from_suffix.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_read_from_suffix.x86-64 /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_read_from_suffix.x86-64.mca /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/ref_from_bytes_static_size.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/ref_from_bytes_static_size.x86-64 /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/ref_from_bytes_static_size.x86-64.mca /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/ref_from_bytes_dynamic_size.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/ref_from_bytes_dynamic_size.x86-64 /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/ref_from_bytes_dynamic_size.x86-64.mca /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/ref_from_bytes_dynamic_padding.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/ref_from_bytes_dynamic_padding.x86-64 /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/ref_from_bytes_dynamic_padding.x86-64.mca /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/ref_from_prefix_static_size.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/ref_from_prefix_static_size.x86-64 /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/ref_from_prefix_static_size.x86-64.mca /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/ref_from_prefix_dynamic_size.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/ref_from_prefix_dynamic_size.x86-64 /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/ref_from_prefix_dynamic_size.x86-64.mca /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/ref_from_prefix_dynamic_padding.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/ref_from_prefix_dynamic_padding.x86-64 /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/ref_from_prefix_dynamic_padding.x86-64.mca /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/ref_from_suffix_static_size.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/ref_from_suffix_static_size.x86-64 /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/ref_from_suffix_static_size.x86-64.mca /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/ref_from_suffix_dynamic_size.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/ref_from_suffix_dynamic_size.x86-64 /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/ref_from_suffix_dynamic_size.x86-64.mca /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/ref_from_suffix_dynamic_padding.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/ref_from_suffix_dynamic_padding.x86-64 /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/ref_from_suffix_dynamic_padding.x86-64.mca /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/ref_from_bytes_with_elems_dynamic_size.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/ref_from_bytes_with_elems_dynamic_size.x86-64 /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/ref_from_bytes_with_elems_dynamic_size.x86-64.mca /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/ref_from_bytes_with_elems_dynamic_padding.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/ref_from_bytes_with_elems_dynamic_padding.x86-64 /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/ref_from_bytes_with_elems_dynamic_padding.x86-64.mca /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/ref_from_prefix_with_elems_dynamic_size.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/ref_from_prefix_with_elems_dynamic_size.x86-64 /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/ref_from_prefix_with_elems_dynamic_size.x86-64.mca /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/ref_from_prefix_with_elems_dynamic_padding.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/ref_from_prefix_with_elems_dynamic_padding.x86-64 /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/ref_from_prefix_with_elems_dynamic_padding.x86-64.mca /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/ref_from_suffix_with_elems_dynamic_size.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/ref_from_suffix_with_elems_dynamic_size.x86-64 /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/ref_from_suffix_with_elems_dynamic_size.x86-64.mca /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/ref_from_suffix_with_elems_dynamic_padding.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/ref_from_suffix_with_elems_dynamic_padding.x86-64 /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/ref_from_suffix_with_elems_dynamic_padding.x86-64.mca /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/read_from_bytes.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/read_from_bytes.x86-64 /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/read_from_bytes.x86-64.mca /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/read_from_prefix.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/read_from_prefix.x86-64 /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/read_from_prefix.x86-64.mca /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/read_from_suffix.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/read_from_suffix.x86-64 /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/read_from_suffix.x86-64.mca /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/as_bytes_static_size.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/as_bytes_static_size.x86-64 /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/as_bytes_static_size.x86-64.mca /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/as_bytes_dynamic_size.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/as_bytes_dynamic_size.x86-64 /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/as_bytes_dynamic_size.x86-64.mca /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/write_to_static_size.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/write_to_static_size.x86-64 /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/write_to_static_size.x86-64.mca /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/write_to_dynamic_size.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/write_to_dynamic_size.x86-64 /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/write_to_dynamic_size.x86-64.mca /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/write_to_prefix_static_size.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/write_to_prefix_static_size.x86-64 /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/write_to_prefix_static_size.x86-64.mca /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/write_to_prefix_dynamic_size.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/write_to_prefix_dynamic_size.x86-64 /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/write_to_prefix_dynamic_size.x86-64.mca /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/write_to_suffix_static_size.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/write_to_suffix_static_size.x86-64 /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/write_to_suffix_static_size.x86-64.mca /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/write_to_suffix_dynamic_size.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/write_to_suffix_dynamic_size.x86-64 /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/write_to_suffix_dynamic_size.x86-64.mca + +/home/simon/.openclaw/workspace/rustVX/target/release/deps/libzerocopy-1958fa5fef0c6d9e.rlib: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/util/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/util/macros.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/util/macro_util.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/byte_slice.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/byteorder.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/deprecated.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/error.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/impls.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/layout.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/macros.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/pointer/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/pointer/inner.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/pointer/invariant.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/pointer/ptr.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/pointer/transmute.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/ref.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/split_at.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/wrappers.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/formats/coco_static_size.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/transmute.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/transmute.x86-64 /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/transmute.x86-64.mca /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/transmute_ref_static_size.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/transmute_ref_static_size.x86-64 /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/transmute_ref_static_size.x86-64.mca /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/formats/coco_dynamic_size.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/transmute_ref_dynamic_size.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/transmute_ref_dynamic_size.x86-64 /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/transmute_ref_dynamic_size.x86-64.mca /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_transmute.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_transmute.x86-64 /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_transmute.x86-64.mca /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_transmute_ref_static_size.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_transmute_ref_static_size.x86-64 /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_transmute_ref_static_size.x86-64.mca /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_transmute_ref_dynamic_size.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_transmute_ref_dynamic_size.x86-64 /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_transmute_ref_dynamic_size.x86-64.mca /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/split_at_unchecked_dynamic_size.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/split_at_unchecked_dynamic_size.x86-64 /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/split_at_unchecked_dynamic_size.x86-64.mca /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/formats/coco_dynamic_padding.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/split_at_unchecked_dynamic_padding.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/split_at_unchecked_dynamic_padding.x86-64 /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/split_at_unchecked_dynamic_padding.x86-64.mca /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/split_at_dynamic_size.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/split_at_dynamic_size.x86-64 /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/split_at_dynamic_size.x86-64.mca /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/split_at_dynamic_padding.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/split_at_dynamic_padding.x86-64 /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/split_at_dynamic_padding.x86-64.mca /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/split_via_immutable_dynamic_size.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/split_via_immutable_dynamic_size.x86-64 /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/split_via_immutable_dynamic_size.x86-64.mca /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/split_via_immutable_dynamic_padding.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/split_via_immutable_dynamic_padding.x86-64 /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/split_via_immutable_dynamic_padding.x86-64.mca /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/split_via_runtime_check_dynamic_size.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/split_via_runtime_check_dynamic_size.x86-64 /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/split_via_runtime_check_dynamic_size.x86-64.mca /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/split_via_runtime_check_dynamic_padding.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/split_via_runtime_check_dynamic_padding.x86-64 /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/split_via_runtime_check_dynamic_padding.x86-64.mca /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/split_via_unchecked_dynamic_size.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/split_via_unchecked_dynamic_size.x86-64 /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/split_via_unchecked_dynamic_size.x86-64.mca /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/split_via_unchecked_dynamic_padding.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/split_via_unchecked_dynamic_padding.x86-64 /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/split_via_unchecked_dynamic_padding.x86-64.mca /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_ref_from_bytes_static_size.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_ref_from_bytes_static_size.x86-64 /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_ref_from_bytes_static_size.x86-64.mca /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_ref_from_bytes_dynamic_size.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_ref_from_bytes_dynamic_size.x86-64 /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_ref_from_bytes_dynamic_size.x86-64.mca /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_ref_from_bytes_dynamic_padding.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_ref_from_bytes_dynamic_padding.x86-64 /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_ref_from_bytes_dynamic_padding.x86-64.mca /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_ref_from_prefix_static_size.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_ref_from_prefix_static_size.x86-64 /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_ref_from_prefix_static_size.x86-64.mca /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_ref_from_prefix_dynamic_size.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_ref_from_prefix_dynamic_size.x86-64 /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_ref_from_prefix_dynamic_size.x86-64.mca /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_ref_from_prefix_dynamic_padding.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_ref_from_prefix_dynamic_padding.x86-64 /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_ref_from_prefix_dynamic_padding.x86-64.mca /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_ref_from_suffix_static_size.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_ref_from_suffix_static_size.x86-64 /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_ref_from_suffix_static_size.x86-64.mca /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_ref_from_suffix_dynamic_size.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_ref_from_suffix_dynamic_size.x86-64 /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_ref_from_suffix_dynamic_size.x86-64.mca /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_ref_from_suffix_dynamic_padding.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_ref_from_suffix_dynamic_padding.x86-64 /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_ref_from_suffix_dynamic_padding.x86-64.mca /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_ref_from_bytes_with_elems_dynamic_size.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_ref_from_bytes_with_elems_dynamic_size.x86-64 /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_ref_from_bytes_with_elems_dynamic_size.x86-64.mca /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_ref_from_bytes_with_elems_dynamic_padding.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_ref_from_bytes_with_elems_dynamic_padding.x86-64 /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_ref_from_bytes_with_elems_dynamic_padding.x86-64.mca /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_ref_from_prefix_with_elems_dynamic_size.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_ref_from_prefix_with_elems_dynamic_size.x86-64 /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_ref_from_prefix_with_elems_dynamic_size.x86-64.mca /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_ref_from_prefix_with_elems_dynamic_padding.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_ref_from_prefix_with_elems_dynamic_padding.x86-64 /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_ref_from_prefix_with_elems_dynamic_padding.x86-64.mca /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_ref_from_suffix_with_elems_dynamic_size.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_ref_from_suffix_with_elems_dynamic_size.x86-64 /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_ref_from_suffix_with_elems_dynamic_size.x86-64.mca /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_ref_from_suffix_with_elems_dynamic_padding.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_ref_from_suffix_with_elems_dynamic_padding.x86-64 /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_ref_from_suffix_with_elems_dynamic_padding.x86-64.mca /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_read_from_bytes.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_read_from_bytes.x86-64 /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_read_from_bytes.x86-64.mca /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_read_from_prefix.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_read_from_prefix.x86-64 /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_read_from_prefix.x86-64.mca /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_read_from_suffix.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_read_from_suffix.x86-64 /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_read_from_suffix.x86-64.mca /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/ref_from_bytes_static_size.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/ref_from_bytes_static_size.x86-64 /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/ref_from_bytes_static_size.x86-64.mca /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/ref_from_bytes_dynamic_size.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/ref_from_bytes_dynamic_size.x86-64 /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/ref_from_bytes_dynamic_size.x86-64.mca /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/ref_from_bytes_dynamic_padding.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/ref_from_bytes_dynamic_padding.x86-64 /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/ref_from_bytes_dynamic_padding.x86-64.mca /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/ref_from_prefix_static_size.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/ref_from_prefix_static_size.x86-64 /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/ref_from_prefix_static_size.x86-64.mca /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/ref_from_prefix_dynamic_size.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/ref_from_prefix_dynamic_size.x86-64 /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/ref_from_prefix_dynamic_size.x86-64.mca /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/ref_from_prefix_dynamic_padding.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/ref_from_prefix_dynamic_padding.x86-64 /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/ref_from_prefix_dynamic_padding.x86-64.mca /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/ref_from_suffix_static_size.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/ref_from_suffix_static_size.x86-64 /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/ref_from_suffix_static_size.x86-64.mca /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/ref_from_suffix_dynamic_size.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/ref_from_suffix_dynamic_size.x86-64 /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/ref_from_suffix_dynamic_size.x86-64.mca /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/ref_from_suffix_dynamic_padding.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/ref_from_suffix_dynamic_padding.x86-64 /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/ref_from_suffix_dynamic_padding.x86-64.mca /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/ref_from_bytes_with_elems_dynamic_size.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/ref_from_bytes_with_elems_dynamic_size.x86-64 /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/ref_from_bytes_with_elems_dynamic_size.x86-64.mca /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/ref_from_bytes_with_elems_dynamic_padding.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/ref_from_bytes_with_elems_dynamic_padding.x86-64 /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/ref_from_bytes_with_elems_dynamic_padding.x86-64.mca /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/ref_from_prefix_with_elems_dynamic_size.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/ref_from_prefix_with_elems_dynamic_size.x86-64 /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/ref_from_prefix_with_elems_dynamic_size.x86-64.mca /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/ref_from_prefix_with_elems_dynamic_padding.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/ref_from_prefix_with_elems_dynamic_padding.x86-64 /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/ref_from_prefix_with_elems_dynamic_padding.x86-64.mca /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/ref_from_suffix_with_elems_dynamic_size.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/ref_from_suffix_with_elems_dynamic_size.x86-64 /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/ref_from_suffix_with_elems_dynamic_size.x86-64.mca /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/ref_from_suffix_with_elems_dynamic_padding.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/ref_from_suffix_with_elems_dynamic_padding.x86-64 /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/ref_from_suffix_with_elems_dynamic_padding.x86-64.mca /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/read_from_bytes.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/read_from_bytes.x86-64 /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/read_from_bytes.x86-64.mca /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/read_from_prefix.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/read_from_prefix.x86-64 /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/read_from_prefix.x86-64.mca /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/read_from_suffix.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/read_from_suffix.x86-64 /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/read_from_suffix.x86-64.mca /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/as_bytes_static_size.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/as_bytes_static_size.x86-64 /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/as_bytes_static_size.x86-64.mca /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/as_bytes_dynamic_size.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/as_bytes_dynamic_size.x86-64 /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/as_bytes_dynamic_size.x86-64.mca /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/write_to_static_size.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/write_to_static_size.x86-64 /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/write_to_static_size.x86-64.mca /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/write_to_dynamic_size.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/write_to_dynamic_size.x86-64 /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/write_to_dynamic_size.x86-64.mca /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/write_to_prefix_static_size.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/write_to_prefix_static_size.x86-64 /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/write_to_prefix_static_size.x86-64.mca /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/write_to_prefix_dynamic_size.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/write_to_prefix_dynamic_size.x86-64 /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/write_to_prefix_dynamic_size.x86-64.mca /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/write_to_suffix_static_size.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/write_to_suffix_static_size.x86-64 /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/write_to_suffix_static_size.x86-64.mca /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/write_to_suffix_dynamic_size.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/write_to_suffix_dynamic_size.x86-64 /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/write_to_suffix_dynamic_size.x86-64.mca + +/home/simon/.openclaw/workspace/rustVX/target/release/deps/libzerocopy-1958fa5fef0c6d9e.rmeta: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/util/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/util/macros.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/util/macro_util.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/byte_slice.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/byteorder.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/deprecated.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/error.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/impls.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/layout.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/macros.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/pointer/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/pointer/inner.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/pointer/invariant.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/pointer/ptr.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/pointer/transmute.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/ref.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/split_at.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/wrappers.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/formats/coco_static_size.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/transmute.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/transmute.x86-64 /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/transmute.x86-64.mca /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/transmute_ref_static_size.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/transmute_ref_static_size.x86-64 /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/transmute_ref_static_size.x86-64.mca /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/formats/coco_dynamic_size.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/transmute_ref_dynamic_size.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/transmute_ref_dynamic_size.x86-64 /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/transmute_ref_dynamic_size.x86-64.mca /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_transmute.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_transmute.x86-64 /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_transmute.x86-64.mca /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_transmute_ref_static_size.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_transmute_ref_static_size.x86-64 /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_transmute_ref_static_size.x86-64.mca /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_transmute_ref_dynamic_size.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_transmute_ref_dynamic_size.x86-64 /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_transmute_ref_dynamic_size.x86-64.mca /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/split_at_unchecked_dynamic_size.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/split_at_unchecked_dynamic_size.x86-64 /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/split_at_unchecked_dynamic_size.x86-64.mca /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/formats/coco_dynamic_padding.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/split_at_unchecked_dynamic_padding.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/split_at_unchecked_dynamic_padding.x86-64 /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/split_at_unchecked_dynamic_padding.x86-64.mca /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/split_at_dynamic_size.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/split_at_dynamic_size.x86-64 /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/split_at_dynamic_size.x86-64.mca /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/split_at_dynamic_padding.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/split_at_dynamic_padding.x86-64 /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/split_at_dynamic_padding.x86-64.mca /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/split_via_immutable_dynamic_size.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/split_via_immutable_dynamic_size.x86-64 /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/split_via_immutable_dynamic_size.x86-64.mca /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/split_via_immutable_dynamic_padding.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/split_via_immutable_dynamic_padding.x86-64 /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/split_via_immutable_dynamic_padding.x86-64.mca /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/split_via_runtime_check_dynamic_size.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/split_via_runtime_check_dynamic_size.x86-64 /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/split_via_runtime_check_dynamic_size.x86-64.mca /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/split_via_runtime_check_dynamic_padding.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/split_via_runtime_check_dynamic_padding.x86-64 /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/split_via_runtime_check_dynamic_padding.x86-64.mca /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/split_via_unchecked_dynamic_size.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/split_via_unchecked_dynamic_size.x86-64 /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/split_via_unchecked_dynamic_size.x86-64.mca /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/split_via_unchecked_dynamic_padding.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/split_via_unchecked_dynamic_padding.x86-64 /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/split_via_unchecked_dynamic_padding.x86-64.mca /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_ref_from_bytes_static_size.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_ref_from_bytes_static_size.x86-64 /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_ref_from_bytes_static_size.x86-64.mca /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_ref_from_bytes_dynamic_size.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_ref_from_bytes_dynamic_size.x86-64 /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_ref_from_bytes_dynamic_size.x86-64.mca /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_ref_from_bytes_dynamic_padding.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_ref_from_bytes_dynamic_padding.x86-64 /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_ref_from_bytes_dynamic_padding.x86-64.mca /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_ref_from_prefix_static_size.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_ref_from_prefix_static_size.x86-64 /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_ref_from_prefix_static_size.x86-64.mca /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_ref_from_prefix_dynamic_size.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_ref_from_prefix_dynamic_size.x86-64 /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_ref_from_prefix_dynamic_size.x86-64.mca /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_ref_from_prefix_dynamic_padding.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_ref_from_prefix_dynamic_padding.x86-64 /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_ref_from_prefix_dynamic_padding.x86-64.mca /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_ref_from_suffix_static_size.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_ref_from_suffix_static_size.x86-64 /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_ref_from_suffix_static_size.x86-64.mca /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_ref_from_suffix_dynamic_size.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_ref_from_suffix_dynamic_size.x86-64 /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_ref_from_suffix_dynamic_size.x86-64.mca /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_ref_from_suffix_dynamic_padding.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_ref_from_suffix_dynamic_padding.x86-64 /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_ref_from_suffix_dynamic_padding.x86-64.mca /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_ref_from_bytes_with_elems_dynamic_size.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_ref_from_bytes_with_elems_dynamic_size.x86-64 /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_ref_from_bytes_with_elems_dynamic_size.x86-64.mca /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_ref_from_bytes_with_elems_dynamic_padding.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_ref_from_bytes_with_elems_dynamic_padding.x86-64 /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_ref_from_bytes_with_elems_dynamic_padding.x86-64.mca /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_ref_from_prefix_with_elems_dynamic_size.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_ref_from_prefix_with_elems_dynamic_size.x86-64 /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_ref_from_prefix_with_elems_dynamic_size.x86-64.mca /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_ref_from_prefix_with_elems_dynamic_padding.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_ref_from_prefix_with_elems_dynamic_padding.x86-64 /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_ref_from_prefix_with_elems_dynamic_padding.x86-64.mca /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_ref_from_suffix_with_elems_dynamic_size.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_ref_from_suffix_with_elems_dynamic_size.x86-64 /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_ref_from_suffix_with_elems_dynamic_size.x86-64.mca /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_ref_from_suffix_with_elems_dynamic_padding.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_ref_from_suffix_with_elems_dynamic_padding.x86-64 /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_ref_from_suffix_with_elems_dynamic_padding.x86-64.mca /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_read_from_bytes.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_read_from_bytes.x86-64 /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_read_from_bytes.x86-64.mca /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_read_from_prefix.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_read_from_prefix.x86-64 /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_read_from_prefix.x86-64.mca /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_read_from_suffix.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_read_from_suffix.x86-64 /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_read_from_suffix.x86-64.mca /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/ref_from_bytes_static_size.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/ref_from_bytes_static_size.x86-64 /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/ref_from_bytes_static_size.x86-64.mca /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/ref_from_bytes_dynamic_size.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/ref_from_bytes_dynamic_size.x86-64 /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/ref_from_bytes_dynamic_size.x86-64.mca /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/ref_from_bytes_dynamic_padding.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/ref_from_bytes_dynamic_padding.x86-64 /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/ref_from_bytes_dynamic_padding.x86-64.mca /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/ref_from_prefix_static_size.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/ref_from_prefix_static_size.x86-64 /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/ref_from_prefix_static_size.x86-64.mca /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/ref_from_prefix_dynamic_size.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/ref_from_prefix_dynamic_size.x86-64 /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/ref_from_prefix_dynamic_size.x86-64.mca /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/ref_from_prefix_dynamic_padding.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/ref_from_prefix_dynamic_padding.x86-64 /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/ref_from_prefix_dynamic_padding.x86-64.mca /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/ref_from_suffix_static_size.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/ref_from_suffix_static_size.x86-64 /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/ref_from_suffix_static_size.x86-64.mca /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/ref_from_suffix_dynamic_size.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/ref_from_suffix_dynamic_size.x86-64 /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/ref_from_suffix_dynamic_size.x86-64.mca /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/ref_from_suffix_dynamic_padding.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/ref_from_suffix_dynamic_padding.x86-64 /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/ref_from_suffix_dynamic_padding.x86-64.mca /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/ref_from_bytes_with_elems_dynamic_size.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/ref_from_bytes_with_elems_dynamic_size.x86-64 /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/ref_from_bytes_with_elems_dynamic_size.x86-64.mca /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/ref_from_bytes_with_elems_dynamic_padding.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/ref_from_bytes_with_elems_dynamic_padding.x86-64 /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/ref_from_bytes_with_elems_dynamic_padding.x86-64.mca /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/ref_from_prefix_with_elems_dynamic_size.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/ref_from_prefix_with_elems_dynamic_size.x86-64 /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/ref_from_prefix_with_elems_dynamic_size.x86-64.mca /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/ref_from_prefix_with_elems_dynamic_padding.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/ref_from_prefix_with_elems_dynamic_padding.x86-64 /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/ref_from_prefix_with_elems_dynamic_padding.x86-64.mca /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/ref_from_suffix_with_elems_dynamic_size.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/ref_from_suffix_with_elems_dynamic_size.x86-64 /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/ref_from_suffix_with_elems_dynamic_size.x86-64.mca /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/ref_from_suffix_with_elems_dynamic_padding.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/ref_from_suffix_with_elems_dynamic_padding.x86-64 /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/ref_from_suffix_with_elems_dynamic_padding.x86-64.mca /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/read_from_bytes.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/read_from_bytes.x86-64 /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/read_from_bytes.x86-64.mca /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/read_from_prefix.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/read_from_prefix.x86-64 /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/read_from_prefix.x86-64.mca /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/read_from_suffix.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/read_from_suffix.x86-64 /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/read_from_suffix.x86-64.mca /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/as_bytes_static_size.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/as_bytes_static_size.x86-64 /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/as_bytes_static_size.x86-64.mca /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/as_bytes_dynamic_size.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/as_bytes_dynamic_size.x86-64 /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/as_bytes_dynamic_size.x86-64.mca /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/write_to_static_size.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/write_to_static_size.x86-64 /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/write_to_static_size.x86-64.mca /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/write_to_dynamic_size.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/write_to_dynamic_size.x86-64 /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/write_to_dynamic_size.x86-64.mca /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/write_to_prefix_static_size.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/write_to_prefix_static_size.x86-64 /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/write_to_prefix_static_size.x86-64.mca /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/write_to_prefix_dynamic_size.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/write_to_prefix_dynamic_size.x86-64 /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/write_to_prefix_dynamic_size.x86-64.mca /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/write_to_suffix_static_size.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/write_to_suffix_static_size.x86-64 /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/write_to_suffix_static_size.x86-64.mca /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/write_to_suffix_dynamic_size.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/write_to_suffix_dynamic_size.x86-64 /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/write_to_suffix_dynamic_size.x86-64.mca + +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/lib.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/util/mod.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/util/macros.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/util/macro_util.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/byte_slice.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/byteorder.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/deprecated.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/error.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/impls.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/layout.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/macros.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/pointer/mod.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/pointer/inner.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/pointer/invariant.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/pointer/ptr.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/pointer/transmute.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/ref.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/split_at.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/wrappers.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/formats/coco_static_size.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/transmute.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/transmute.x86-64: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/transmute.x86-64.mca: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/transmute_ref_static_size.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/transmute_ref_static_size.x86-64: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/transmute_ref_static_size.x86-64.mca: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/formats/coco_dynamic_size.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/transmute_ref_dynamic_size.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/transmute_ref_dynamic_size.x86-64: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/transmute_ref_dynamic_size.x86-64.mca: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_transmute.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_transmute.x86-64: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_transmute.x86-64.mca: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_transmute_ref_static_size.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_transmute_ref_static_size.x86-64: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_transmute_ref_static_size.x86-64.mca: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_transmute_ref_dynamic_size.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_transmute_ref_dynamic_size.x86-64: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_transmute_ref_dynamic_size.x86-64.mca: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/split_at_unchecked_dynamic_size.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/split_at_unchecked_dynamic_size.x86-64: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/split_at_unchecked_dynamic_size.x86-64.mca: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/formats/coco_dynamic_padding.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/split_at_unchecked_dynamic_padding.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/split_at_unchecked_dynamic_padding.x86-64: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/split_at_unchecked_dynamic_padding.x86-64.mca: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/split_at_dynamic_size.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/split_at_dynamic_size.x86-64: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/split_at_dynamic_size.x86-64.mca: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/split_at_dynamic_padding.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/split_at_dynamic_padding.x86-64: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/split_at_dynamic_padding.x86-64.mca: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/split_via_immutable_dynamic_size.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/split_via_immutable_dynamic_size.x86-64: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/split_via_immutable_dynamic_size.x86-64.mca: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/split_via_immutable_dynamic_padding.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/split_via_immutable_dynamic_padding.x86-64: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/split_via_immutable_dynamic_padding.x86-64.mca: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/split_via_runtime_check_dynamic_size.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/split_via_runtime_check_dynamic_size.x86-64: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/split_via_runtime_check_dynamic_size.x86-64.mca: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/split_via_runtime_check_dynamic_padding.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/split_via_runtime_check_dynamic_padding.x86-64: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/split_via_runtime_check_dynamic_padding.x86-64.mca: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/split_via_unchecked_dynamic_size.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/split_via_unchecked_dynamic_size.x86-64: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/split_via_unchecked_dynamic_size.x86-64.mca: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/split_via_unchecked_dynamic_padding.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/split_via_unchecked_dynamic_padding.x86-64: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/split_via_unchecked_dynamic_padding.x86-64.mca: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_ref_from_bytes_static_size.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_ref_from_bytes_static_size.x86-64: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_ref_from_bytes_static_size.x86-64.mca: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_ref_from_bytes_dynamic_size.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_ref_from_bytes_dynamic_size.x86-64: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_ref_from_bytes_dynamic_size.x86-64.mca: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_ref_from_bytes_dynamic_padding.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_ref_from_bytes_dynamic_padding.x86-64: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_ref_from_bytes_dynamic_padding.x86-64.mca: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_ref_from_prefix_static_size.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_ref_from_prefix_static_size.x86-64: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_ref_from_prefix_static_size.x86-64.mca: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_ref_from_prefix_dynamic_size.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_ref_from_prefix_dynamic_size.x86-64: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_ref_from_prefix_dynamic_size.x86-64.mca: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_ref_from_prefix_dynamic_padding.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_ref_from_prefix_dynamic_padding.x86-64: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_ref_from_prefix_dynamic_padding.x86-64.mca: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_ref_from_suffix_static_size.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_ref_from_suffix_static_size.x86-64: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_ref_from_suffix_static_size.x86-64.mca: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_ref_from_suffix_dynamic_size.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_ref_from_suffix_dynamic_size.x86-64: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_ref_from_suffix_dynamic_size.x86-64.mca: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_ref_from_suffix_dynamic_padding.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_ref_from_suffix_dynamic_padding.x86-64: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_ref_from_suffix_dynamic_padding.x86-64.mca: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_ref_from_bytes_with_elems_dynamic_size.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_ref_from_bytes_with_elems_dynamic_size.x86-64: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_ref_from_bytes_with_elems_dynamic_size.x86-64.mca: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_ref_from_bytes_with_elems_dynamic_padding.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_ref_from_bytes_with_elems_dynamic_padding.x86-64: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_ref_from_bytes_with_elems_dynamic_padding.x86-64.mca: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_ref_from_prefix_with_elems_dynamic_size.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_ref_from_prefix_with_elems_dynamic_size.x86-64: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_ref_from_prefix_with_elems_dynamic_size.x86-64.mca: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_ref_from_prefix_with_elems_dynamic_padding.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_ref_from_prefix_with_elems_dynamic_padding.x86-64: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_ref_from_prefix_with_elems_dynamic_padding.x86-64.mca: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_ref_from_suffix_with_elems_dynamic_size.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_ref_from_suffix_with_elems_dynamic_size.x86-64: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_ref_from_suffix_with_elems_dynamic_size.x86-64.mca: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_ref_from_suffix_with_elems_dynamic_padding.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_ref_from_suffix_with_elems_dynamic_padding.x86-64: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_ref_from_suffix_with_elems_dynamic_padding.x86-64.mca: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_read_from_bytes.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_read_from_bytes.x86-64: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_read_from_bytes.x86-64.mca: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_read_from_prefix.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_read_from_prefix.x86-64: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_read_from_prefix.x86-64.mca: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_read_from_suffix.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_read_from_suffix.x86-64: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/try_read_from_suffix.x86-64.mca: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/ref_from_bytes_static_size.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/ref_from_bytes_static_size.x86-64: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/ref_from_bytes_static_size.x86-64.mca: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/ref_from_bytes_dynamic_size.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/ref_from_bytes_dynamic_size.x86-64: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/ref_from_bytes_dynamic_size.x86-64.mca: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/ref_from_bytes_dynamic_padding.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/ref_from_bytes_dynamic_padding.x86-64: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/ref_from_bytes_dynamic_padding.x86-64.mca: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/ref_from_prefix_static_size.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/ref_from_prefix_static_size.x86-64: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/ref_from_prefix_static_size.x86-64.mca: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/ref_from_prefix_dynamic_size.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/ref_from_prefix_dynamic_size.x86-64: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/ref_from_prefix_dynamic_size.x86-64.mca: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/ref_from_prefix_dynamic_padding.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/ref_from_prefix_dynamic_padding.x86-64: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/ref_from_prefix_dynamic_padding.x86-64.mca: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/ref_from_suffix_static_size.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/ref_from_suffix_static_size.x86-64: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/ref_from_suffix_static_size.x86-64.mca: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/ref_from_suffix_dynamic_size.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/ref_from_suffix_dynamic_size.x86-64: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/ref_from_suffix_dynamic_size.x86-64.mca: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/ref_from_suffix_dynamic_padding.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/ref_from_suffix_dynamic_padding.x86-64: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/ref_from_suffix_dynamic_padding.x86-64.mca: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/ref_from_bytes_with_elems_dynamic_size.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/ref_from_bytes_with_elems_dynamic_size.x86-64: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/ref_from_bytes_with_elems_dynamic_size.x86-64.mca: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/ref_from_bytes_with_elems_dynamic_padding.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/ref_from_bytes_with_elems_dynamic_padding.x86-64: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/ref_from_bytes_with_elems_dynamic_padding.x86-64.mca: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/ref_from_prefix_with_elems_dynamic_size.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/ref_from_prefix_with_elems_dynamic_size.x86-64: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/ref_from_prefix_with_elems_dynamic_size.x86-64.mca: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/ref_from_prefix_with_elems_dynamic_padding.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/ref_from_prefix_with_elems_dynamic_padding.x86-64: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/ref_from_prefix_with_elems_dynamic_padding.x86-64.mca: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/ref_from_suffix_with_elems_dynamic_size.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/ref_from_suffix_with_elems_dynamic_size.x86-64: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/ref_from_suffix_with_elems_dynamic_size.x86-64.mca: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/ref_from_suffix_with_elems_dynamic_padding.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/ref_from_suffix_with_elems_dynamic_padding.x86-64: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/ref_from_suffix_with_elems_dynamic_padding.x86-64.mca: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/read_from_bytes.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/read_from_bytes.x86-64: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/read_from_bytes.x86-64.mca: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/read_from_prefix.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/read_from_prefix.x86-64: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/read_from_prefix.x86-64.mca: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/read_from_suffix.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/read_from_suffix.x86-64: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/read_from_suffix.x86-64.mca: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/as_bytes_static_size.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/as_bytes_static_size.x86-64: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/as_bytes_static_size.x86-64.mca: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/as_bytes_dynamic_size.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/as_bytes_dynamic_size.x86-64: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/as_bytes_dynamic_size.x86-64.mca: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/write_to_static_size.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/write_to_static_size.x86-64: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/write_to_static_size.x86-64.mca: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/write_to_dynamic_size.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/write_to_dynamic_size.x86-64: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/write_to_dynamic_size.x86-64.mca: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/write_to_prefix_static_size.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/write_to_prefix_static_size.x86-64: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/write_to_prefix_static_size.x86-64.mca: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/write_to_prefix_dynamic_size.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/write_to_prefix_dynamic_size.x86-64: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/write_to_prefix_dynamic_size.x86-64.mca: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/write_to_suffix_static_size.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/write_to_suffix_static_size.x86-64: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/write_to_suffix_static_size.x86-64.mca: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/write_to_suffix_dynamic_size.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/write_to_suffix_dynamic_size.x86-64: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-0.8.47/src/../benches/write_to_suffix_dynamic_size.x86-64.mca: diff --git a/target/release/deps/zerocopy_derive-7bb9374e0145e9e4.d b/target/release/deps/zerocopy_derive-7bb9374e0145e9e4.d new file mode 100644 index 0000000..10855d7 --- /dev/null +++ b/target/release/deps/zerocopy_derive-7bb9374e0145e9e4.d @@ -0,0 +1,13 @@ +/home/simon/.openclaw/workspace/rustVX/target/release/deps/zerocopy_derive-7bb9374e0145e9e4.d: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-derive-0.8.47/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-derive-0.8.47/src/derive/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-derive-0.8.47/src/derive/from_bytes.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-derive-0.8.47/src/derive/into_bytes.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-derive-0.8.47/src/derive/known_layout.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-derive-0.8.47/src/derive/try_from_bytes.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-derive-0.8.47/src/derive/unaligned.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-derive-0.8.47/src/repr.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-derive-0.8.47/src/util.rs + +/home/simon/.openclaw/workspace/rustVX/target/release/deps/libzerocopy_derive-7bb9374e0145e9e4.so: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-derive-0.8.47/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-derive-0.8.47/src/derive/mod.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-derive-0.8.47/src/derive/from_bytes.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-derive-0.8.47/src/derive/into_bytes.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-derive-0.8.47/src/derive/known_layout.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-derive-0.8.47/src/derive/try_from_bytes.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-derive-0.8.47/src/derive/unaligned.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-derive-0.8.47/src/repr.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-derive-0.8.47/src/util.rs + +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-derive-0.8.47/src/lib.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-derive-0.8.47/src/derive/mod.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-derive-0.8.47/src/derive/from_bytes.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-derive-0.8.47/src/derive/into_bytes.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-derive-0.8.47/src/derive/known_layout.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-derive-0.8.47/src/derive/try_from_bytes.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-derive-0.8.47/src/derive/unaligned.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-derive-0.8.47/src/repr.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zerocopy-derive-0.8.47/src/util.rs: diff --git a/target/release/deps/zmij-9f70c96db9cb66ea.d b/target/release/deps/zmij-9f70c96db9cb66ea.d new file mode 100644 index 0000000..4e787db --- /dev/null +++ b/target/release/deps/zmij-9f70c96db9cb66ea.d @@ -0,0 +1,9 @@ +/home/simon/.openclaw/workspace/rustVX/target/release/deps/zmij-9f70c96db9cb66ea.d: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zmij-1.0.21/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zmij-1.0.21/src/stdarch_x86.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zmij-1.0.21/src/traits.rs + +/home/simon/.openclaw/workspace/rustVX/target/release/deps/libzmij-9f70c96db9cb66ea.rlib: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zmij-1.0.21/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zmij-1.0.21/src/stdarch_x86.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zmij-1.0.21/src/traits.rs + +/home/simon/.openclaw/workspace/rustVX/target/release/deps/libzmij-9f70c96db9cb66ea.rmeta: /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zmij-1.0.21/src/lib.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zmij-1.0.21/src/stdarch_x86.rs /home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zmij-1.0.21/src/traits.rs + +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zmij-1.0.21/src/lib.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zmij-1.0.21/src/stdarch_x86.rs: +/home/simon/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/zmij-1.0.21/src/traits.rs: diff --git a/target/release/examples/test_nv12 b/target/release/examples/test_nv12 new file mode 100755 index 0000000..0380c1a Binary files /dev/null and b/target/release/examples/test_nv12 differ diff --git a/target/release/examples/test_nv12-c0fbbf3d55e5f3be b/target/release/examples/test_nv12-c0fbbf3d55e5f3be new file mode 100755 index 0000000..0380c1a Binary files /dev/null and b/target/release/examples/test_nv12-c0fbbf3d55e5f3be differ diff --git a/target/release/examples/test_nv12-c0fbbf3d55e5f3be.d b/target/release/examples/test_nv12-c0fbbf3d55e5f3be.d new file mode 100644 index 0000000..0ba3b5f --- /dev/null +++ b/target/release/examples/test_nv12-c0fbbf3d55e5f3be.d @@ -0,0 +1,5 @@ +/home/simon/.openclaw/workspace/rustVX/target/release/examples/test_nv12-c0fbbf3d55e5f3be.d: openvx-image/examples/test_nv12.rs + +/home/simon/.openclaw/workspace/rustVX/target/release/examples/test_nv12-c0fbbf3d55e5f3be: openvx-image/examples/test_nv12.rs + +openvx-image/examples/test_nv12.rs: diff --git a/target/release/examples/test_nv12.d b/target/release/examples/test_nv12.d new file mode 100644 index 0000000..80993ba --- /dev/null +++ b/target/release/examples/test_nv12.d @@ -0,0 +1 @@ +/home/simon/.openclaw/workspace/rustVX/target/release/examples/test_nv12: /home/simon/.openclaw/workspace/rustVX/openvx-core/src/c_api.rs /home/simon/.openclaw/workspace/rustVX/openvx-core/src/c_api_data.rs /home/simon/.openclaw/workspace/rustVX/openvx-core/src/context.rs /home/simon/.openclaw/workspace/rustVX/openvx-core/src/lib.rs /home/simon/.openclaw/workspace/rustVX/openvx-core/src/reference.rs /home/simon/.openclaw/workspace/rustVX/openvx-core/src/types.rs /home/simon/.openclaw/workspace/rustVX/openvx-core/src/unified_c_api.rs /home/simon/.openclaw/workspace/rustVX/openvx-core/src/vxu_impl.rs /home/simon/.openclaw/workspace/rustVX/openvx-image/examples/test_nv12.rs /home/simon/.openclaw/workspace/rustVX/openvx-image/src/c_api.rs /home/simon/.openclaw/workspace/rustVX/openvx-image/src/ct_image.rs /home/simon/.openclaw/workspace/rustVX/openvx-image/src/lib.rs diff --git a/target/release/libopenvx_buffer.d b/target/release/libopenvx_buffer.d index 62b5754..287fe31 100644 --- a/target/release/libopenvx_buffer.d +++ b/target/release/libopenvx_buffer.d @@ -1 +1,5 @@ +<<<<<<< HEAD +/home/simon/.openclaw/workspace/rustVX/target/release/libopenvx_buffer.rlib: /home/simon/.openclaw/workspace/rustVX/openvx-buffer/src/c_api.rs /home/simon/.openclaw/workspace/rustVX/openvx-buffer/src/lib.rs /home/simon/.openclaw/workspace/rustVX/openvx-core/src/c_api.rs /home/simon/.openclaw/workspace/rustVX/openvx-core/src/c_api_data.rs /home/simon/.openclaw/workspace/rustVX/openvx-core/src/context.rs /home/simon/.openclaw/workspace/rustVX/openvx-core/src/lib.rs /home/simon/.openclaw/workspace/rustVX/openvx-core/src/reference.rs /home/simon/.openclaw/workspace/rustVX/openvx-core/src/types.rs /home/simon/.openclaw/workspace/rustVX/openvx-core/src/unified_c_api.rs /home/simon/.openclaw/workspace/rustVX/openvx-core/src/vxu_impl.rs +======= /home/simon/.openclaw/workspace/rustvx/target/release/libopenvx_buffer.rlib: /home/simon/.openclaw/workspace/rustvx/openvx-buffer/src/c_api.rs /home/simon/.openclaw/workspace/rustvx/openvx-buffer/src/lib.rs /home/simon/.openclaw/workspace/rustvx/openvx-core/src/c_api.rs /home/simon/.openclaw/workspace/rustvx/openvx-core/src/c_api_data.rs /home/simon/.openclaw/workspace/rustvx/openvx-core/src/context.rs /home/simon/.openclaw/workspace/rustvx/openvx-core/src/lib.rs /home/simon/.openclaw/workspace/rustvx/openvx-core/src/reference.rs /home/simon/.openclaw/workspace/rustvx/openvx-core/src/types.rs /home/simon/.openclaw/workspace/rustvx/openvx-core/src/unified_c_api.rs /home/simon/.openclaw/workspace/rustvx/openvx-core/src/vxu_impl.rs +>>>>>>> origin/master diff --git a/target/release/libopenvx_buffer.rlib b/target/release/libopenvx_buffer.rlib index b624c3f..f0b30e9 100644 Binary files a/target/release/libopenvx_buffer.rlib and b/target/release/libopenvx_buffer.rlib differ diff --git a/target/release/libopenvx_core.a b/target/release/libopenvx_core.a index d47fadb..0fe46f0 100644 Binary files a/target/release/libopenvx_core.a and b/target/release/libopenvx_core.a differ diff --git a/target/release/libopenvx_core.d b/target/release/libopenvx_core.d index 58e4b39..6986fe7 100644 --- a/target/release/libopenvx_core.d +++ b/target/release/libopenvx_core.d @@ -1 +1,5 @@ +<<<<<<< HEAD +/home/simon/.openclaw/workspace/rustVX/target/release/libopenvx_core.rlib: /home/simon/.openclaw/workspace/rustVX/openvx-core/src/c_api.rs /home/simon/.openclaw/workspace/rustVX/openvx-core/src/c_api_data.rs /home/simon/.openclaw/workspace/rustVX/openvx-core/src/context.rs /home/simon/.openclaw/workspace/rustVX/openvx-core/src/lib.rs /home/simon/.openclaw/workspace/rustVX/openvx-core/src/reference.rs /home/simon/.openclaw/workspace/rustVX/openvx-core/src/types.rs /home/simon/.openclaw/workspace/rustVX/openvx-core/src/unified_c_api.rs /home/simon/.openclaw/workspace/rustVX/openvx-core/src/vxu_impl.rs +======= /home/simon/.openclaw/workspace/rustvx/target/release/libopenvx_core.rlib: /home/simon/.openclaw/workspace/rustvx/openvx-core/src/c_api.rs /home/simon/.openclaw/workspace/rustvx/openvx-core/src/c_api_data.rs /home/simon/.openclaw/workspace/rustvx/openvx-core/src/context.rs /home/simon/.openclaw/workspace/rustvx/openvx-core/src/lib.rs /home/simon/.openclaw/workspace/rustvx/openvx-core/src/reference.rs /home/simon/.openclaw/workspace/rustvx/openvx-core/src/types.rs /home/simon/.openclaw/workspace/rustvx/openvx-core/src/unified_c_api.rs /home/simon/.openclaw/workspace/rustvx/openvx-core/src/vxu_impl.rs +>>>>>>> origin/master diff --git a/target/release/libopenvx_core.rlib b/target/release/libopenvx_core.rlib index 9ebea07..ff27264 100644 Binary files a/target/release/libopenvx_core.rlib and b/target/release/libopenvx_core.rlib differ diff --git a/target/release/libopenvx_core.so b/target/release/libopenvx_core.so index 376b5eb..f951ced 100755 Binary files a/target/release/libopenvx_core.so and b/target/release/libopenvx_core.so differ diff --git a/target/release/libopenvx_ffi.a b/target/release/libopenvx_ffi.a index deb31ee..d492dd5 100644 Binary files a/target/release/libopenvx_ffi.a and b/target/release/libopenvx_ffi.a differ diff --git a/target/release/libopenvx_ffi.d b/target/release/libopenvx_ffi.d index f98d757..0974181 100644 --- a/target/release/libopenvx_ffi.d +++ b/target/release/libopenvx_ffi.d @@ -1 +1,5 @@ +<<<<<<< HEAD +/home/simon/.openclaw/workspace/rustVX/target/release/libopenvx_ffi.a: /home/simon/.openclaw/workspace/rustVX/openvx-buffer/src/c_api.rs /home/simon/.openclaw/workspace/rustVX/openvx-buffer/src/lib.rs /home/simon/.openclaw/workspace/rustVX/openvx-core/src/c_api.rs /home/simon/.openclaw/workspace/rustVX/openvx-core/src/c_api_data.rs /home/simon/.openclaw/workspace/rustVX/openvx-core/src/context.rs /home/simon/.openclaw/workspace/rustVX/openvx-core/src/lib.rs /home/simon/.openclaw/workspace/rustVX/openvx-core/src/reference.rs /home/simon/.openclaw/workspace/rustVX/openvx-core/src/types.rs /home/simon/.openclaw/workspace/rustVX/openvx-core/src/unified_c_api.rs /home/simon/.openclaw/workspace/rustVX/openvx-core/src/vxu_impl.rs /home/simon/.openclaw/workspace/rustVX/openvx-ffi/src/lib.rs /home/simon/.openclaw/workspace/rustVX/openvx-image/src/c_api.rs /home/simon/.openclaw/workspace/rustVX/openvx-image/src/ct_image.rs /home/simon/.openclaw/workspace/rustVX/openvx-image/src/lib.rs /home/simon/.openclaw/workspace/rustVX/openvx-vision/src/arithmetic.rs /home/simon/.openclaw/workspace/rustVX/openvx-vision/src/color.rs /home/simon/.openclaw/workspace/rustVX/openvx-vision/src/features.rs /home/simon/.openclaw/workspace/rustVX/openvx-vision/src/filter.rs /home/simon/.openclaw/workspace/rustVX/openvx-vision/src/geometric.rs /home/simon/.openclaw/workspace/rustVX/openvx-vision/src/gradient.rs /home/simon/.openclaw/workspace/rustVX/openvx-vision/src/lib.rs /home/simon/.openclaw/workspace/rustVX/openvx-vision/src/morphology.rs /home/simon/.openclaw/workspace/rustVX/openvx-vision/src/object_detection.rs /home/simon/.openclaw/workspace/rustVX/openvx-vision/src/optical_flow.rs /home/simon/.openclaw/workspace/rustVX/openvx-vision/src/simd_utils.rs /home/simon/.openclaw/workspace/rustVX/openvx-vision/src/statistics.rs /home/simon/.openclaw/workspace/rustVX/openvx-vision/src/utils.rs +======= /home/simon/.openclaw/workspace/rustvx/target/release/libopenvx_ffi.a: /home/simon/.openclaw/workspace/rustvx/openvx-buffer/src/c_api.rs /home/simon/.openclaw/workspace/rustvx/openvx-buffer/src/lib.rs /home/simon/.openclaw/workspace/rustvx/openvx-core/src/c_api.rs /home/simon/.openclaw/workspace/rustvx/openvx-core/src/c_api_data.rs /home/simon/.openclaw/workspace/rustvx/openvx-core/src/context.rs /home/simon/.openclaw/workspace/rustvx/openvx-core/src/lib.rs /home/simon/.openclaw/workspace/rustvx/openvx-core/src/reference.rs /home/simon/.openclaw/workspace/rustvx/openvx-core/src/types.rs /home/simon/.openclaw/workspace/rustvx/openvx-core/src/unified_c_api.rs /home/simon/.openclaw/workspace/rustvx/openvx-core/src/vxu_impl.rs /home/simon/.openclaw/workspace/rustvx/openvx-ffi/src/lib.rs /home/simon/.openclaw/workspace/rustvx/openvx-image/src/c_api.rs /home/simon/.openclaw/workspace/rustvx/openvx-image/src/ct_image.rs /home/simon/.openclaw/workspace/rustvx/openvx-image/src/lib.rs /home/simon/.openclaw/workspace/rustvx/openvx-vision/src/arithmetic.rs /home/simon/.openclaw/workspace/rustvx/openvx-vision/src/color.rs /home/simon/.openclaw/workspace/rustvx/openvx-vision/src/features.rs /home/simon/.openclaw/workspace/rustvx/openvx-vision/src/filter.rs /home/simon/.openclaw/workspace/rustvx/openvx-vision/src/geometric.rs /home/simon/.openclaw/workspace/rustvx/openvx-vision/src/gradient.rs /home/simon/.openclaw/workspace/rustvx/openvx-vision/src/kernel_enums.rs /home/simon/.openclaw/workspace/rustvx/openvx-vision/src/lib.rs /home/simon/.openclaw/workspace/rustvx/openvx-vision/src/morphology.rs /home/simon/.openclaw/workspace/rustvx/openvx-vision/src/object_detection.rs /home/simon/.openclaw/workspace/rustvx/openvx-vision/src/optical_flow.rs /home/simon/.openclaw/workspace/rustvx/openvx-vision/src/register.rs /home/simon/.openclaw/workspace/rustvx/openvx-vision/src/simd_utils.rs /home/simon/.openclaw/workspace/rustvx/openvx-vision/src/statistics.rs /home/simon/.openclaw/workspace/rustvx/openvx-vision/src/utils.rs +>>>>>>> origin/master diff --git a/target/release/libopenvx_ffi.so b/target/release/libopenvx_ffi.so index c7b193f..30774f0 100755 Binary files a/target/release/libopenvx_ffi.so and b/target/release/libopenvx_ffi.so differ diff --git a/target/release/libopenvx_image.d b/target/release/libopenvx_image.d index 5bd7d3c..981f1fa 100644 --- a/target/release/libopenvx_image.d +++ b/target/release/libopenvx_image.d @@ -1 +1,5 @@ +<<<<<<< HEAD +/home/simon/.openclaw/workspace/rustVX/target/release/libopenvx_image.rlib: /home/simon/.openclaw/workspace/rustVX/openvx-core/src/c_api.rs /home/simon/.openclaw/workspace/rustVX/openvx-core/src/c_api_data.rs /home/simon/.openclaw/workspace/rustVX/openvx-core/src/context.rs /home/simon/.openclaw/workspace/rustVX/openvx-core/src/lib.rs /home/simon/.openclaw/workspace/rustVX/openvx-core/src/reference.rs /home/simon/.openclaw/workspace/rustVX/openvx-core/src/types.rs /home/simon/.openclaw/workspace/rustVX/openvx-core/src/unified_c_api.rs /home/simon/.openclaw/workspace/rustVX/openvx-core/src/vxu_impl.rs /home/simon/.openclaw/workspace/rustVX/openvx-image/src/c_api.rs /home/simon/.openclaw/workspace/rustVX/openvx-image/src/ct_image.rs /home/simon/.openclaw/workspace/rustVX/openvx-image/src/lib.rs +======= /home/simon/.openclaw/workspace/rustvx/target/release/libopenvx_image.rlib: /home/simon/.openclaw/workspace/rustvx/openvx-core/src/c_api.rs /home/simon/.openclaw/workspace/rustvx/openvx-core/src/c_api_data.rs /home/simon/.openclaw/workspace/rustvx/openvx-core/src/context.rs /home/simon/.openclaw/workspace/rustvx/openvx-core/src/lib.rs /home/simon/.openclaw/workspace/rustvx/openvx-core/src/reference.rs /home/simon/.openclaw/workspace/rustvx/openvx-core/src/types.rs /home/simon/.openclaw/workspace/rustvx/openvx-core/src/unified_c_api.rs /home/simon/.openclaw/workspace/rustvx/openvx-core/src/vxu_impl.rs /home/simon/.openclaw/workspace/rustvx/openvx-image/src/c_api.rs /home/simon/.openclaw/workspace/rustvx/openvx-image/src/ct_image.rs /home/simon/.openclaw/workspace/rustvx/openvx-image/src/lib.rs +>>>>>>> origin/master diff --git a/target/release/libopenvx_image.rlib b/target/release/libopenvx_image.rlib index 83dc610..f658cca 100644 Binary files a/target/release/libopenvx_image.rlib and b/target/release/libopenvx_image.rlib differ diff --git a/target/release/libopenvx_vision.d b/target/release/libopenvx_vision.d index 5f7d02c..70643b9 100644 --- a/target/release/libopenvx_vision.d +++ b/target/release/libopenvx_vision.d @@ -1 +1,5 @@ +<<<<<<< HEAD +/home/simon/.openclaw/workspace/rustVX/target/release/libopenvx_vision.rlib: /home/simon/.openclaw/workspace/rustVX/openvx-buffer/src/c_api.rs /home/simon/.openclaw/workspace/rustVX/openvx-buffer/src/lib.rs /home/simon/.openclaw/workspace/rustVX/openvx-core/src/c_api.rs /home/simon/.openclaw/workspace/rustVX/openvx-core/src/c_api_data.rs /home/simon/.openclaw/workspace/rustVX/openvx-core/src/context.rs /home/simon/.openclaw/workspace/rustVX/openvx-core/src/lib.rs /home/simon/.openclaw/workspace/rustVX/openvx-core/src/reference.rs /home/simon/.openclaw/workspace/rustVX/openvx-core/src/types.rs /home/simon/.openclaw/workspace/rustVX/openvx-core/src/unified_c_api.rs /home/simon/.openclaw/workspace/rustVX/openvx-core/src/vxu_impl.rs /home/simon/.openclaw/workspace/rustVX/openvx-image/src/c_api.rs /home/simon/.openclaw/workspace/rustVX/openvx-image/src/ct_image.rs /home/simon/.openclaw/workspace/rustVX/openvx-image/src/lib.rs /home/simon/.openclaw/workspace/rustVX/openvx-vision/src/arithmetic.rs /home/simon/.openclaw/workspace/rustVX/openvx-vision/src/color.rs /home/simon/.openclaw/workspace/rustVX/openvx-vision/src/features.rs /home/simon/.openclaw/workspace/rustVX/openvx-vision/src/filter.rs /home/simon/.openclaw/workspace/rustVX/openvx-vision/src/geometric.rs /home/simon/.openclaw/workspace/rustVX/openvx-vision/src/gradient.rs /home/simon/.openclaw/workspace/rustVX/openvx-vision/src/lib.rs /home/simon/.openclaw/workspace/rustVX/openvx-vision/src/morphology.rs /home/simon/.openclaw/workspace/rustVX/openvx-vision/src/object_detection.rs /home/simon/.openclaw/workspace/rustVX/openvx-vision/src/optical_flow.rs /home/simon/.openclaw/workspace/rustVX/openvx-vision/src/simd_utils.rs /home/simon/.openclaw/workspace/rustVX/openvx-vision/src/statistics.rs /home/simon/.openclaw/workspace/rustVX/openvx-vision/src/utils.rs +======= /home/simon/.openclaw/workspace/rustvx/target/release/libopenvx_vision.rlib: /home/simon/.openclaw/workspace/rustvx/openvx-buffer/src/c_api.rs /home/simon/.openclaw/workspace/rustvx/openvx-buffer/src/lib.rs /home/simon/.openclaw/workspace/rustvx/openvx-core/src/c_api.rs /home/simon/.openclaw/workspace/rustvx/openvx-core/src/c_api_data.rs /home/simon/.openclaw/workspace/rustvx/openvx-core/src/context.rs /home/simon/.openclaw/workspace/rustvx/openvx-core/src/lib.rs /home/simon/.openclaw/workspace/rustvx/openvx-core/src/reference.rs /home/simon/.openclaw/workspace/rustvx/openvx-core/src/types.rs /home/simon/.openclaw/workspace/rustvx/openvx-core/src/unified_c_api.rs /home/simon/.openclaw/workspace/rustvx/openvx-core/src/vxu_impl.rs /home/simon/.openclaw/workspace/rustvx/openvx-image/src/c_api.rs /home/simon/.openclaw/workspace/rustvx/openvx-image/src/ct_image.rs /home/simon/.openclaw/workspace/rustvx/openvx-image/src/lib.rs /home/simon/.openclaw/workspace/rustvx/openvx-vision/src/arithmetic.rs /home/simon/.openclaw/workspace/rustvx/openvx-vision/src/color.rs /home/simon/.openclaw/workspace/rustvx/openvx-vision/src/features.rs /home/simon/.openclaw/workspace/rustvx/openvx-vision/src/filter.rs /home/simon/.openclaw/workspace/rustvx/openvx-vision/src/geometric.rs /home/simon/.openclaw/workspace/rustvx/openvx-vision/src/gradient.rs /home/simon/.openclaw/workspace/rustvx/openvx-vision/src/kernel_enums.rs /home/simon/.openclaw/workspace/rustvx/openvx-vision/src/lib.rs /home/simon/.openclaw/workspace/rustvx/openvx-vision/src/morphology.rs /home/simon/.openclaw/workspace/rustvx/openvx-vision/src/object_detection.rs /home/simon/.openclaw/workspace/rustvx/openvx-vision/src/optical_flow.rs /home/simon/.openclaw/workspace/rustvx/openvx-vision/src/register.rs /home/simon/.openclaw/workspace/rustvx/openvx-vision/src/simd_utils.rs /home/simon/.openclaw/workspace/rustvx/openvx-vision/src/statistics.rs /home/simon/.openclaw/workspace/rustvx/openvx-vision/src/utils.rs +>>>>>>> origin/master diff --git a/target/release/libopenvx_vision.rlib b/target/release/libopenvx_vision.rlib index 0ef5e71..29374fe 100644 Binary files a/target/release/libopenvx_vision.rlib and b/target/release/libopenvx_vision.rlib differ