Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

expose getters for cache and hit spans #14

Open
wants to merge 2 commits into
base: main
Choose a base branch
from

Conversation

khulnasoft-bot
Copy link
Contributor

@khulnasoft-bot khulnasoft-bot commented Dec 18, 2024

User description

Notes for Reviewers

This PR fixes #

Signed commits

  • Yes, I signed my commits.

PR Type

Enhancement


Description

  • Added two new getter methods to CacheTraceCTX struct to expose span handles:
    • get_cache_span(): Returns the handle for the cache span
    • get_hit_span(): Returns the handle for the hit span
  • These methods improve the observability and tracing capabilities by allowing external access to span handles

Changes walkthrough 📝

Relevant files
Enhancement
trace.rs
Add getter methods for cache and hit spans                             

bongonet-cache/src/trace.rs

  • Added get_cache_span() method to expose cache span handle
  • Added get_hit_span() method to expose hit span handle
  • +7/-0     

    💡 PR-Agent usage: Comment /help "your question" on any pull request to receive relevant information

    Summary by CodeRabbit

    • New Features
      • Introduced two new public methods to enhance the CacheTraceCTX functionality: get_cache_span and get_hit_span, allowing access to span handles.
      • Added new methods to the HttpCache struct: get_cache_span and get_hit_span, improving tracing capabilities.
      • Updated the get_miss_span method to allow access without requiring a mutable reference.

    Signed-off-by: KhulnaSoft bot <43526132+khulnasoft-bot@users.noreply.github.com>
    Copy link

    sourcery-ai bot commented Dec 18, 2024

    Reviewer's Guide by Sourcery

    This PR adds new getter methods to expose span handles for cache and hit spans in the CacheTraceCTX struct. The implementation adds two new public methods that return SpanHandle objects for existing span fields.

    Class diagram for CacheTraceCTX with new getter methods

    classDiagram
        class CacheTraceCTX {
            Span cache_span
            Span hit_span
            enable(Span cache_span)
            get_cache_span() SpanHandle
            child(name: &'static str) Span
            set_hit_status(hit_status: HitStatus)
            get_hit_span() SpanHandle
            finish_hit_span()
        }
    
        class Span {
            handle() SpanHandle
        }
    
        class SpanHandle {
        }
    
        CacheTraceCTX --> Span
        CacheTraceCTX --> SpanHandle
        Span --> SpanHandle
    
        note for CacheTraceCTX "New getter methods: get_cache_span and get_hit_span"
    
    Loading

    File-Level Changes

    Change Details Files
    Added getter methods for accessing span handles
    • Added get_cache_span() method to return the handle of cache_span
    • Added get_hit_span() method to return the handle of hit_span
    bongonet-cache/src/trace.rs

    Tips and commands

    Interacting with Sourcery

    • Trigger a new review: Comment @sourcery-ai review on the pull request.
    • Continue discussions: Reply directly to Sourcery's review comments.
    • Generate a GitHub issue from a review comment: Ask Sourcery to create an
      issue from a review comment by replying to it.
    • Generate a pull request title: Write @sourcery-ai anywhere in the pull
      request title to generate a title at any time.
    • Generate a pull request summary: Write @sourcery-ai summary anywhere in
      the pull request body to generate a PR summary at any time. You can also use
      this command to specify where the summary should be inserted.

    Customizing Your Experience

    Access your dashboard to:

    • Enable or disable review features such as the Sourcery-generated pull request
      summary, the reviewer's guide, and others.
    • Change the review language.
    • Add, remove or edit custom review instructions.
    • Adjust other review settings.

    Getting Help

    Copy link

    @sourcery-ai sourcery-ai bot left a comment

    Choose a reason for hiding this comment

    The reason will be displayed to describe this comment to others. Learn more.

    We have skipped reviewing this pull request. It seems to have been created by a bot (hey, khulnasoft-bot!). We assume it knows what it's doing!

    Copy link

    coderabbitai bot commented Dec 18, 2024

    Walkthrough

    The pull request introduces two new public methods to the CacheTraceCTX struct in the bongonet-cache/src/trace.rs file and several modifications to the HttpCache struct in the bongonet-cache/src/lib.rs file. The methods get_cache_span() and get_hit_span() provide access to span handles for cache and hit operations. Additionally, the get_miss_span() method's signature is updated to allow immutable access. These changes enhance the tracing capabilities of both structs without altering the core caching logic.

    Changes

    File Change Summary
    bongonet-cache/src/trace.rs Added two public methods to CacheTraceCTX struct:
    - pub fn get_cache_span(&self) -> SpanHandle
    - pub fn get_hit_span(&self) -> SpanHandle
    bongonet-cache/src/lib.rs Modified HttpCache struct:
    - Added pub fn get_cache_span(&self) -> Option<trace::SpanHandle>
    - Updated get_miss_span method signature from mutable to immutable:
    pub fn get_miss_span(&mut self) -> Option<trace::SpanHandle>pub fn get_miss_span(&self) -> Option<trace::SpanHandle>
    - Added pub fn get_hit_span(&self) -> Option<trace::SpanHandle>

    Poem

    🐰 Tracing Rabbit's Cache Dance 🕵️
    Two new methods hop into view,
    Spans revealed, a tracer's breakthrough!
    Cache and hit, their handles bright,
    Helping developers trace with delight!
    A rabbit's gift of insight so clear 🌟


    Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media?

    ❤️ Share
    🪧 Tips

    Chat

    There are 3 ways to chat with CodeRabbit:

    • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
      • I pushed a fix in commit <commit_id>, please review it.
      • Generate unit testing code for this file.
      • Open a follow-up GitHub issue for this discussion.
    • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
      • @coderabbitai generate unit testing code for this file.
      • @coderabbitai modularize this function.
    • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
      • @coderabbitai gather interesting stats about this repository and render them as a table. Additionally, render a pie chart showing the language distribution in the codebase.
      • @coderabbitai read src/utils.ts and generate unit testing code.
      • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.
      • @coderabbitai help me debug CodeRabbit configuration file.

    Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments.

    CodeRabbit Commands (Invoked using PR comments)

    • @coderabbitai pause to pause the reviews on a PR.
    • @coderabbitai resume to resume the paused reviews.
    • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
    • @coderabbitai full review to do a full review from scratch and review all the files again.
    • @coderabbitai summary to regenerate the summary of the PR.
    • @coderabbitai generate docstrings to generate docstrings for this PR. (Beta)
    • @coderabbitai resolve resolve all the CodeRabbit review comments.
    • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
    • @coderabbitai help to get help.

    Other keywords and placeholders

    • Add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.
    • Add @coderabbitai summary to generate the high-level summary at a specific location in the PR description.
    • Add @coderabbitai anywhere in the PR title to generate the title automatically.

    CodeRabbit Configuration File (.coderabbit.yaml)

    • You can programmatically configure CodeRabbit by adding a .coderabbit.yaml file to the root of your repository.
    • Please see the configuration documentation for more information.
    • If your editor has YAML language server enabled, you can add the path at the top of this file to enable auto-completion and validation: # yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json

    Documentation and Community

    • Visit our Documentation for detailed information on how to use CodeRabbit.
    • Join our Discord Community to get help, request features, and share feedback.
    • Follow us on X/Twitter for updates and announcements.

    Copy link

    PR Reviewer Guide 🔍

    Here are some key observations to aid the review process:

    ⏱️ Estimated effort to review: 1 🔵⚪⚪⚪⚪
    🧪 No relevant tests
    🔒 No security concerns identified
    ⚡ Recommended focus areas for review

    Code Consistency
    The new getter methods return SpanHandle while other methods work with Span directly. Consider documenting why SpanHandle is exposed instead of Span, or consider consistency in return types.

    Copy link

    PR Code Suggestions ✨

    Explore these optional code suggestions:

    CategorySuggestion                                                                                                                                    Score
    Possible issue
    Add error handling for uninitialized span access to prevent potential runtime panics

    Add error handling to ensure cache_span is initialized before accessing its handle.
    The current implementation might panic if enable() hasn't been called yet.

    bongonet-cache/src/trace.rs [48-50]

    -pub fn get_cache_span(&self) -> SpanHandle {
    -    self.cache_span.handle()
    +pub fn get_cache_span(&self) -> Option<SpanHandle> {
    +    Some(self.cache_span.handle())
     }
    • Apply this suggestion
    Suggestion importance[1-10]: 2

    Why: While the suggestion aims to add null-safety, it's likely unnecessary as the Rust type system already ensures cache_span is initialized in the struct. The enable() method must be called during struct initialization.

    2
    Implement null-safety check for span handle access to prevent runtime failures

    Add error handling to ensure hit_span is initialized before accessing its handle, as
    it might be accessed before start_hit_span() is called.

    bongonet-cache/src/trace.rs [76-78]

    -pub fn get_hit_span(&self) -> SpanHandle {
    -    self.hit_span.handle()
    +pub fn get_hit_span(&self) -> Option<SpanHandle> {
    +    Some(self.hit_span.handle())
     }
    • Apply this suggestion
    Suggestion importance[1-10]: 2

    Why: Similar to the first suggestion, adding Option is likely unnecessary as hit_span appears to be properly initialized in the struct and managed through start_hit_span(). The Rust type system already provides these guarantees.

    2

    Copy link

    @coderabbitai coderabbitai bot left a comment

    Choose a reason for hiding this comment

    The reason will be displayed to describe this comment to others. Learn more.

    Actionable comments posted: 0

    🧹 Nitpick comments (1)
    bongonet-cache/src/trace.rs (1)

    76-79: LGTM! Consider documenting the tracing patterns.

    The new getter is well-implemented and consistent with the codebase. Since we're expanding the public tracing API, it might be valuable to document common tracing patterns and use cases for these span handles in the module documentation.

    Consider adding documentation examples showing:

    • Common patterns for using span handles
    • Best practices for distributed tracing
    • Integration examples with the tracing system
    📜 Review details

    Configuration used: CodeRabbit UI
    Review profile: CHILL
    Plan: Pro

    📥 Commits

    Reviewing files that changed from the base of the PR and between 9e2a7db and 44502e4.

    📒 Files selected for processing (1)
    • bongonet-cache/src/trace.rs (2 hunks)
    🔇 Additional comments (1)
    bongonet-cache/src/trace.rs (1)

    48-50: LGTM! Verify usage patterns across the codebase.

    The new getter follows the established pattern and is consistent with the existing codebase.

    Let's verify the usage patterns of span handles across the codebase:

    ✅ Verification successful

    Consistent usage pattern confirmed across the codebase

    The verification shows that the .handle() method is consistently used across the codebase in similar contexts:

    • For span operations in tracing contexts
    • Following the same pattern as the existing miss_span and hit_span getters
    • Used appropriately in cache operations and lookups
    🏁 Scripts executed

    The following scripts were executed for the analysis:

    Script:

    #!/bin/bash
    # Search for existing span handle usage patterns to ensure consistency
    rg -A 2 "\.handle\(\)" 
    

    Length of output: 4131

    Signed-off-by: KhulnaSoft bot <43526132+khulnasoft-bot@users.noreply.github.com>
    Copy link

    codiumai-pr-agent-free bot commented Dec 18, 2024

    CI Failure Feedback 🧐

    (Checks updated until commit f1b17e0)

    Action: bongonet (1.82.0)

    Failed stage: Run cargo clippy [❌]

    Failure summary:

    The log shows a truncated build process of a Rust project, but doesn't show any actual failure. The
    log appears to be cut off in the middle of compiling dependencies like futures-macro, tokio, rand,
    etc. Without seeing the actual error message or failure point, I cannot determine why the check
    failed.

    Relevant error logs:
    1:  ##[group]Operating System
    2:  Ubuntu
    ...
    
    363:  ##[group]Run : set $CARGO_HOME
    364:  �[36;1m: set $CARGO_HOME�[0m
    365:  �[36;1mecho CARGO_HOME=${CARGO_HOME:-$HOME/.cargo} >> $GITHUB_ENV�[0m
    366:  shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0}
    367:  ##[endgroup]
    368:  ##[group]Run : install rustup if needed
    369:  �[36;1m: install rustup if needed�[0m
    370:  �[36;1mif ! command -v rustup &>/dev/null; then�[0m
    371:  �[36;1m  curl --proto '=https' --tlsv1.2 --retry 10 --retry-connrefused --location --silent --show-error --fail "https://sh.rustup.rs" | sh -s -- --default-toolchain none -y�[0m
    ...
    
    444:  �[36;1m  fi�[0m
    445:  �[36;1mfi�[0m
    446:  shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0}
    447:  env:
    448:  CARGO_HOME: /home/runner/.cargo
    449:  CARGO_INCREMENTAL: 0
    450:  CARGO_TERM_COLOR: always
    451:  ##[endgroup]
    452:  ##[group]Run : work around spurious network errors in curl 8.0
    453:  �[36;1m: work around spurious network errors in curl 8.0�[0m
    ...
    
    549:  �[1m�[36m      Adding�[0m sentry-panic v0.26.0 �[1m�[33m(latest: v0.35.0)�[0m
    550:  �[1m�[36m      Adding�[0m sentry-types v0.26.0 �[1m�[33m(latest: v0.35.0)�[0m
    551:  �[1m�[36m      Adding�[0m serde_yaml v0.8.26 �[1m�[33m(latest: v0.9.34+deprecated)�[0m
    552:  �[1m�[36m      Adding�[0m strsim v0.10.0 �[1m�[33m(latest: v0.11.1)�[0m
    553:  �[1m�[36m      Adding�[0m syn v1.0.109 �[1m�[33m(latest: v2.0.90)�[0m
    554:  �[1m�[36m      Adding�[0m sync_wrapper v0.1.2 �[1m�[33m(latest: v1.0.2)�[0m
    555:  �[1m�[36m      Adding�[0m system-configuration v0.5.1 �[1m�[33m(latest: v0.6.1)�[0m
    556:  �[1m�[36m      Adding�[0m system-configuration-sys v0.5.0 �[1m�[33m(latest: v0.6.0)�[0m
    557:  �[1m�[36m      Adding�[0m thiserror v1.0.69 �[1m�[33m(latest: v2.0.8)�[0m
    558:  �[1m�[36m      Adding�[0m thiserror-impl v1.0.69 �[1m�[33m(latest: v2.0.8)�[0m
    ...
    
    668:  �[1m�[32m  Downloaded�[0m yoke-derive v0.7.5
    669:  �[1m�[32m  Downloaded�[0m yoke v0.7.5
    670:  �[1m�[32m  Downloaded�[0m walkdir v2.5.0
    671:  �[1m�[32m  Downloaded�[0m ring v0.17.8
    672:  �[1m�[32m  Downloaded�[0m unicase v2.8.0
    673:  �[1m�[32m  Downloaded�[0m triomphe v0.1.11
    674:  �[1m�[32m  Downloaded�[0m tokio-rustls v0.26.1
    675:  �[1m�[32m  Downloaded�[0m tokio v1.42.0
    676:  �[1m�[32m  Downloaded�[0m thiserror-impl v1.0.69
    ...
    
    701:  �[1m�[32m  Downloaded�[0m trackable_derive v1.0.0
    702:  �[1m�[32m  Downloaded�[0m tokio-test v0.4.4
    703:  �[1m�[32m  Downloaded�[0m tokio-openssl v0.6.5
    704:  �[1m�[32m  Downloaded�[0m tokio-macros v2.4.0
    705:  �[1m�[32m  Downloaded�[0m tinystr v0.7.6
    706:  �[1m�[32m  Downloaded�[0m thrift_codec v0.1.1
    707:  �[1m�[32m  Downloaded�[0m thread_local v1.1.8
    708:  �[1m�[32m  Downloaded�[0m thousands v0.2.0
    709:  �[1m�[32m  Downloaded�[0m thiserror v1.0.69
    ...
    
    760:  �[1m�[32m  Downloaded�[0m rustls-webpki v0.101.7
    761:  �[1m�[32m  Downloaded�[0m rustls-pki-types v1.10.1
    762:  �[1m�[32m  Downloaded�[0m rustls-native-certs v0.7.3
    763:  �[1m�[32m  Downloaded�[0m futures-util v0.3.31
    764:  �[1m�[32m  Downloaded�[0m brotli-decompressor v2.5.1
    765:  �[1m�[32m  Downloaded�[0m aho-corasick v1.1.3
    766:  �[1m�[32m  Downloaded�[0m icu_locid_transform v1.5.0
    767:  �[1m�[32m  Downloaded�[0m proc-macro2 v1.0.92
    768:  �[1m�[32m  Downloaded�[0m proc-macro-error v1.0.4
    ...
    
    779:  �[1m�[32m  Downloaded�[0m humantime v2.1.0
    780:  �[1m�[32m  Downloaded�[0m mime v0.3.17
    781:  �[1m�[32m  Downloaded�[0m zstd-safe v7.2.1
    782:  �[1m�[32m  Downloaded�[0m paste v1.0.15
    783:  �[1m�[32m  Downloaded�[0m rustls-pemfile v2.2.0
    784:  �[1m�[32m  Downloaded�[0m rustls v0.21.12
    785:  �[1m�[32m  Downloaded�[0m mintex v0.1.3
    786:  �[1m�[32m  Downloaded�[0m match_cfg v0.1.0
    787:  �[1m�[32m  Downloaded�[0m proc-macro-error-attr v1.0.4
    ...
    
    888:  �[1m�[32m  Downloaded�[0m autocfg v1.4.0
    889:  �[1m�[32m  Downloaded�[0m boring-sys v4.13.0
    890:  �[1m�[32m  Downloaded�[0m aws-lc-sys v0.24.0
    891:  �[1m�[32m  Downloaded�[0m openssl-src v300.4.1+3.4.0
    892:  �[1m�[32m   Compiling�[0m proc-macro2 v1.0.92
    893:  �[1m�[32m   Compiling�[0m unicode-ident v1.0.14
    894:  �[1m�[32m   Compiling�[0m cfg-if v1.0.0
    895:  �[1m�[32m   Compiling�[0m libc v0.2.168
    896:  �[1m�[32m     Running�[0m `/home/runner/.rustup/toolchains/1.82.0-x86_64-unknown-linux-gnu/bin/rustc --crate-name build_script_build --edition=2021 /home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.92/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no --cfg 'feature="default"' --cfg 'feature="proc-macro"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "nightly", "proc-macro", "span-locations"))' -C metadata=e42bb707597a9540 -C extra-filename=-e42bb707597a9540 --out-dir /home/runner/work/bongonet/bongonet/target/debug/build/proc-macro2-e42bb707597a9540 -L dependency=/home/runner/work/bongonet/bongonet/target/debug/deps --cap-lints allow`
    897:  �[1m�[32m     Running�[0m `/home/runner/.rustup/toolchains/1.82.0-x86_64-unknown-linux-gnu/bin/rustc --crate-name unicode_ident --edition=2018 /home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/unicode-ident-1.0.14/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=0c791808698d0f3c -C extra-filename=-0c791808698d0f3c --out-dir /home/runner/work/bongonet/bongonet/target/debug/deps -L dependency=/home/runner/work/bongonet/bongonet/target/debug/deps --cap-lints allow`
    898:  �[1m�[32m     Running�[0m `/home/runner/.rustup/toolchains/1.82.0-x86_64-unknown-linux-gnu/bin/rustc --crate-name build_script_build --edition=2021 /home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.168/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no --cfg 'feature="default"' --cfg 'feature="extra_traits"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("align", "const-extern-fn", "default", "extra_traits", "rustc-dep-of-std", "rustc-std-workspace-core", "std", "use_std"))' -C metadata=58bc12661a324245 -C extra-filename=-58bc12661a324245 --out-dir /home/runner/work/bongonet/bongonet/target/debug/build/libc-58bc12661a324245 -L dependency=/home/runner/work/bongonet/bongonet/target/debug/deps --cap-lints allow`
    899:  �[1m�[32m     Running�[0m `/home/runner/.rustup/toolchains/1.82.0-x86_64-unknown-linux-gnu/bin/rustc --crate-name cfg_if --edition=2018 /home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/cfg-if-1.0.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("compiler_builtins", "core", "rustc-dep-of-std"))' -C metadata=f331783c409103a0 -C extra-filename=-f331783c409103a0 --out-dir /home/runner/work/bongonet/bongonet/target/debug/deps -L dependency=/home/runner/work/bongonet/bongonet/target/debug/deps --cap-lints allow`
    900:  �[1m�[32m   Compiling�[0m autocfg v1.4.0
    901:  �[1m�[32m     Running�[0m `/home/runner/.rustup/toolchains/1.82.0-x86_64-unknown-linux-gnu/bin/rustc --crate-name autocfg --edition=2015 /home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/autocfg-1.4.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=134e5b9874ae68f2 -C extra-filename=-134e5b9874ae68f2 --out-dir /home/runner/work/bongonet/bongonet/target/debug/deps -L dependency=/home/runner/work/bongonet/bongonet/target/debug/deps --cap-lints allow`
    902:  �[1m�[32m     Running�[0m `/home/runner/.rustup/toolchains/1.82.0-x86_64-unknown-linux-gnu/bin/rustc --crate-name build_script_build --edition=2021 /home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.168/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("align", "const-extern-fn", "default", "extra_traits", "rustc-dep-of-std", "rustc-std-workspace-core", "std", "use_std"))' -C metadata=08fcdfb411b222fb -C extra-filename=-08fcdfb411b222fb --out-dir /home/runner/work/bongonet/bongonet/target/debug/build/libc-08fcdfb411b222fb -L dependency=/home/runner/work/bongonet/bongonet/target/debug/deps --cap-lints allow`
    903:  �[1m�[32m     Running�[0m `/home/runner/work/bongonet/bongonet/target/debug/build/proc-macro2-e42bb707597a9540/build-script-build`
    904:  �[1m�[32m     Running�[0m `/home/runner/work/bongonet/bongonet/target/debug/build/libc-58bc12661a324245/build-script-build`
    905:  �[1m�[32m     Running�[0m `/home/runner/.rustup/toolchains/1.82.0-x86_64-unknown-linux-gnu/bin/rustc --crate-name libc --edition=2021 /home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.168/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="extra_traits"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("align", "const-extern-fn", "default", "extra_traits", "rustc-dep-of-std", "rustc-std-workspace-core", "std", "use_std"))' -C metadata=f71ccc134b801692 -C extra-filename=-f71ccc134b801692 --out-dir /home/runner/work/bongonet/bongonet/target/debug/deps -L dependency=/home/runner/work/bongonet/bongonet/target/debug/deps --cap-lints allow --cfg freebsd11 --cfg libc_const_extern_fn --check-cfg 'cfg(emscripten_new_stat_abi)' --check-cfg 'cfg(espidf_time32)' --check-cfg 'cfg(freebsd10)' --check-cfg 'cfg(freebsd11)' --check-cfg 'cfg(freebsd12)' --check-cfg 'cfg(freebsd13)' --check-cfg 'cfg(freebsd14)' --check-cfg 'cfg(freebsd15)' --check-cfg 'cfg(libc_const_extern_fn)' --check-cfg 'cfg(libc_deny_warnings)' --check-cfg 'cfg(libc_thread_local)' --check-cfg 'cfg(libc_ctest)' --check-cfg 'cfg(target_os,values("switch","aix","ohos","hurd","rtems","visionos","nuttx"))' --check-cfg 'cfg(target_env,values("illumos","wasi","aix","ohos"))' --check-cfg 'cfg(target_arch,values("loongarch64","mips32r6","mips64r6","csky"))'`
    906:  �[1m�[32m     Running�[0m `/home/runner/.rustup/toolchains/1.82.0-x86_64-unknown-linux-gnu/bin/rustc --crate-name proc_macro2 --edition=2021 /home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/proc-macro2-1.0.92/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no --cfg 'feature="default"' --cfg 'feature="proc-macro"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "nightly", "proc-macro", "span-locations"))' -C metadata=390e634b2391ac60 -C extra-filename=-390e634b2391ac60 --out-dir /home/runner/work/bongonet/bongonet/target/debug/deps -L dependency=/home/runner/work/bongonet/bongonet/target/debug/deps --extern unicode_ident=/home/runner/work/bongonet/bongonet/target/debug/deps/libunicode_ident-0c791808698d0f3c.rmeta --cap-lints allow --cfg wrap_proc_macro --check-cfg 'cfg(fuzzing)' --check-cfg 'cfg(no_is_available)' --check-cfg 'cfg(no_literal_byte_character)' --check-cfg 'cfg(no_literal_c_string)' --check-cfg 'cfg(no_source_text)' --check-cfg 'cfg(proc_macro_span)' --check-cfg 'cfg(procmacro2_backtrace)' --check-cfg 'cfg(procmacro2_nightly_testing)' --check-cfg 'cfg(procmacro2_semver_exempt)' --check-cfg 'cfg(randomize_layout)' --check-cfg 'cfg(span_locations)' --check-cfg 'cfg(super_unstable)' --check-cfg 'cfg(wrap_proc_macro)'`
    907:  �[1m�[32m   Compiling�[0m shlex v1.3.0
    908:  �[1m�[32m     Running�[0m `/home/runner/.rustup/toolchains/1.82.0-x86_64-unknown-linux-gnu/bin/rustc --crate-name shlex --edition=2015 /home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/shlex-1.3.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "std"))' -C metadata=d106222457ada843 -C extra-filename=-d106222457ada843 --out-dir /home/runner/work/bongonet/bongonet/target/debug/deps -L dependency=/home/runner/work/bongonet/bongonet/target/debug/deps --cap-lints allow`
    909:  �[1m�[32m     Running�[0m `/home/runner/work/bongonet/bongonet/target/debug/build/libc-08fcdfb411b222fb/build-script-build`
    910:  �[1m�[32m     Running�[0m `/home/runner/.rustup/toolchains/1.82.0-x86_64-unknown-linux-gnu/bin/rustc --crate-name libc --edition=2021 /home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/libc-0.2.168/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("align", "const-extern-fn", "default", "extra_traits", "rustc-dep-of-std", "rustc-std-workspace-core", "std", "use_std"))' -C metadata=1773975a1fcc2c18 -C extra-filename=-1773975a1fcc2c18 --out-dir /home/runner/work/bongonet/bongonet/target/debug/deps -L dependency=/home/runner/work/bongonet/bongonet/target/debug/deps --cap-lints allow --cfg freebsd11 --cfg libc_const_extern_fn --check-cfg 'cfg(emscripten_new_stat_abi)' --check-cfg 'cfg(espidf_time32)' --check-cfg 'cfg(freebsd10)' --check-cfg 'cfg(freebsd11)' --check-cfg 'cfg(freebsd12)' --check-cfg 'cfg(freebsd13)' --check-cfg 'cfg(freebsd14)' --check-cfg 'cfg(freebsd15)' --check-cfg 'cfg(libc_const_extern_fn)' --check-cfg 'cfg(libc_deny_warnings)' --check-cfg 'cfg(libc_thread_local)' --check-cfg 'cfg(libc_ctest)' --check-cfg 'cfg(target_os,values("switch","aix","ohos","hurd","rtems","visionos","nuttx"))' --check-cfg 'cfg(target_env,values("illumos","wasi","aix","ohos"))' --check-cfg 'cfg(target_arch,values("loongarch64","mips32r6","mips64r6","csky"))'`
    911:  �[1m�[32m   Compiling�[0m smallvec v1.13.2
    912:  �[1m�[32m     Running�[0m `/home/runner/.rustup/toolchains/1.82.0-x86_64-unknown-linux-gnu/bin/rustc --crate-name smallvec --edition=2018 /home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/smallvec-1.13.2/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="const_generics"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("arbitrary", "const_generics", "const_new", "debugger_visualizer", "drain_filter", "drain_keep_rest", "may_dangle", "serde", "specialization", "union", "write"))' -C metadata=ab6096b9c8a390c2 -C extra-filename=-ab6096b9c8a390c2 --out-dir /home/runner/work/bongonet/bongonet/target/debug/deps -L dependency=/home/runner/work/bongonet/bongonet/target/debug/deps --cap-lints allow`
    913:  �[1m�[32m   Compiling�[0m lock_api v0.4.12
    914:  �[1m�[32m     Running�[0m `/home/runner/.rustup/toolchains/1.82.0-x86_64-unknown-linux-gnu/bin/rustc --crate-name build_script_build --edition=2021 /home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/lock_api-0.4.12/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no --cfg 'feature="arc_lock"' --cfg 'feature="atomic_usize"' --cfg 'feature="default"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("arc_lock", "atomic_usize", "default", "nightly", "owning_ref", "serde"))' -C metadata=3b209bc624fd1b14 -C extra-filename=-3b209bc624fd1b14 --out-dir /home/runner/work/bongonet/bongonet/target/debug/build/lock_api-3b209bc624fd1b14 -L dependency=/home/runner/work/bongonet/bongonet/target/debug/deps --extern autocfg=/home/runner/work/bongonet/bongonet/target/debug/deps/libautocfg-134e5b9874ae68f2.rlib --cap-lints allow`
    915:  �[1m�[32m   Compiling�[0m quote v1.0.37
    916:  �[1m�[32m     Running�[0m `/home/runner/.rustup/toolchains/1.82.0-x86_64-unknown-linux-gnu/bin/rustc --crate-name quote --edition=2018 /home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/quote-1.0.37/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no --cfg 'feature="default"' --cfg 'feature="proc-macro"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "proc-macro"))' -C metadata=573d6817e75b5eae -C extra-filename=-573d6817e75b5eae --out-dir /home/runner/work/bongonet/bongonet/target/debug/deps -L dependency=/home/runner/work/bongonet/bongonet/target/debug/deps --extern proc_macro2=/home/runner/work/bongonet/bongonet/target/debug/deps/libproc_macro2-390e634b2391ac60.rmeta --cap-lints allow`
    917:  �[1m�[32m   Compiling�[0m jobserver v0.1.32
    918:  �[1m�[32m     Running�[0m `/home/runner/.rustup/toolchains/1.82.0-x86_64-unknown-linux-gnu/bin/rustc --crate-name jobserver --edition=2021 /home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/jobserver-0.1.32/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=bbb0cfffb9b3ba0d -C extra-filename=-bbb0cfffb9b3ba0d --out-dir /home/runner/work/bongonet/bongonet/target/debug/deps -L dependency=/home/runner/work/bongonet/bongonet/target/debug/deps --extern libc=/home/runner/work/bongonet/bongonet/target/debug/deps/liblibc-1773975a1fcc2c18.rmeta --cap-lints allow`
    919:  �[1m�[32m   Compiling�[0m parking_lot_core v0.9.10
    920:  �[1m�[32m     Running�[0m `/home/runner/.rustup/toolchains/1.82.0-x86_64-unknown-linux-gnu/bin/rustc --crate-name build_script_build --edition=2021 /home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/parking_lot_core-0.9.10/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("backtrace", "deadlock_detection", "nightly", "petgraph", "thread-id"))' -C metadata=05fa9a51e9684625 -C extra-filename=-05fa9a51e9684625 --out-dir /home/runner/work/bongonet/bongonet/target/debug/build/parking_lot_core-05fa9a51e9684625 -L dependency=/home/runner/work/bongonet/bongonet/target/debug/deps --cap-lints allow`
    921:  �[1m�[32m   Compiling�[0m syn v2.0.90
    922:  �[1m�[32m     Running�[0m `/home/runner/.rustup/toolchains/1.82.0-x86_64-unknown-linux-gnu/bin/rustc --crate-name syn --edition=2021 /home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-2.0.90/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no --cfg 'feature="clone-impls"' --cfg 'feature="default"' --cfg 'feature="derive"' --cfg 'feature="extra-traits"' --cfg 'feature="fold"' --cfg 'feature="full"' --cfg 'feature="parsing"' --cfg 'feature="printing"' --cfg 'feature="proc-macro"' --cfg 'feature="visit"' --cfg 'feature="visit-mut"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("clone-impls", "default", "derive", "extra-traits", "fold", "full", "parsing", "printing", "proc-macro", "test", "visit", "visit-mut"))' -C metadata=e39642c17ee14539 -C extra-filename=-e39642c17ee14539 --out-dir /home/runner/work/bongonet/bongonet/target/debug/deps -L dependency=/home/runner/work/bongonet/bongonet/target/debug/deps --extern proc_macro2=/home/runner/work/bongonet/bongonet/target/debug/deps/libproc_macro2-390e634b2391ac60.rmeta --extern quote=/home/runner/work/bongonet/bongonet/target/debug/deps/libquote-573d6817e75b5eae.rmeta --extern unicode_ident=/home/runner/work/bongonet/bongonet/target/debug/deps/libunicode_ident-0c791808698d0f3c.rmeta --cap-lints allow`
    923:  �[1m�[32m   Compiling�[0m cc v1.2.4
    924:  �[1m�[32m     Running�[0m `/home/runner/.rustup/toolchains/1.82.0-x86_64-unknown-linux-gnu/bin/rustc --crate-name cc --edition=2018 /home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/cc-1.2.4/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no --cfg 'feature="parallel"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("jobserver", "parallel"))' -C metadata=3e8a136108e80e8e -C extra-filename=-3e8a136108e80e8e --out-dir /home/runner/work/bongonet/bongonet/target/debug/deps -L dependency=/home/runner/work/bongonet/bongonet/target/debug/deps --extern jobserver=/home/runner/work/bongonet/bongonet/target/debug/deps/libjobserver-bbb0cfffb9b3ba0d.rmeta --extern libc=/home/runner/work/bongonet/bongonet/target/debug/deps/liblibc-1773975a1fcc2c18.rmeta --extern shlex=/home/runner/work/bongonet/bongonet/target/debug/deps/libshlex-d106222457ada843.rmeta --cap-lints allow`
    925:  �[1m�[32m   Compiling�[0m once_cell v1.20.2
    926:  �[1m�[32m     Running�[0m `/home/runner/.rustup/toolchains/1.82.0-x86_64-unknown-linux-gnu/bin/rustc --crate-name once_cell --edition=2021 /home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/once_cell-1.20.2/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="alloc"' --cfg 'feature="default"' --cfg 'feature="race"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "atomic-polyfill", "critical-section", "default", "parking_lot", "portable-atomic", "race", "std", "unstable"))' -C metadata=81fced44dd10fca0 -C extra-filename=-81fced44dd10fca0 --out-dir /home/runner/work/bongonet/bongonet/target/debug/deps -L dependency=/home/runner/work/bongonet/bongonet/target/debug/deps --cap-lints allow`
    927:  �[1m�[32m     Running�[0m `/home/runner/work/bongonet/bongonet/target/debug/build/parking_lot_core-05fa9a51e9684625/build-script-build`
    928:  �[1m�[32m     Running�[0m `/home/runner/work/bongonet/bongonet/target/debug/build/lock_api-3b209bc624fd1b14/build-script-build`
    929:  �[1m�[32m   Compiling�[0m scopeguard v1.2.0
    930:  �[1m�[32m     Running�[0m `/home/runner/.rustup/toolchains/1.82.0-x86_64-unknown-linux-gnu/bin/rustc --crate-name parking_lot_core --edition=2021 /home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/parking_lot_core-0.9.10/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("backtrace", "deadlock_detection", "nightly", "petgraph", "thread-id"))' -C metadata=f93214d335c75066 -C extra-filename=-f93214d335c75066 --out-dir /home/runner/work/bongonet/bongonet/target/debug/deps -L dependency=/home/runner/work/bongonet/bongonet/target/debug/deps --extern cfg_if=/home/runner/work/bongonet/bongonet/target/debug/deps/libcfg_if-f331783c409103a0.rmeta --extern libc=/home/runner/work/bongonet/bongonet/target/debug/deps/liblibc-f71ccc134b801692.rmeta --extern smallvec=/home/runner/work/bongonet/bongonet/target/debug/deps/libsmallvec-ab6096b9c8a390c2.rmeta --cap-lints allow`
    931:  �[1m�[32m     Running�[0m `/home/runner/.rustup/toolchains/1.82.0-x86_64-unknown-linux-gnu/bin/rustc --crate-name scopeguard --edition=2015 /home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/scopeguard-1.2.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "use_std"))' -C metadata=b9526facf6e3d829 -C extra-filename=-b9526facf6e3d829 --out-dir /home/runner/work/bongonet/bongonet/target/debug/deps -L dependency=/home/runner/work/bongonet/bongonet/target/debug/deps --cap-lints allow`
    932:  �[1m�[32m     Running�[0m `/home/runner/.rustup/toolchains/1.82.0-x86_64-unknown-linux-gnu/bin/rustc --crate-name lock_api --edition=2021 /home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/lock_api-0.4.12/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="arc_lock"' --cfg 'feature="atomic_usize"' --cfg 'feature="default"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("arc_lock", "atomic_usize", "default", "nightly", "owning_ref", "serde"))' -C metadata=c6b8f983afbd81af -C extra-filename=-c6b8f983afbd81af --out-dir /home/runner/work/bongonet/bongonet/target/debug/deps -L dependency=/home/runner/work/bongonet/bongonet/target/debug/deps --extern scopeguard=/home/runner/work/bongonet/bongonet/target/debug/deps/libscopeguard-b9526facf6e3d829.rmeta --cap-lints allow --cfg has_const_fn_trait_bound`
    933:  �[1m�[32m   Compiling�[0m parking_lot v0.12.3
    934:  �[1m�[32m     Running�[0m `/home/runner/.rustup/toolchains/1.82.0-x86_64-unknown-linux-gnu/bin/rustc --crate-name parking_lot --edition=2021 /home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/parking_lot-0.12.3/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="arc_lock"' --cfg 'feature="default"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("arc_lock", "deadlock_detection", "default", "hardware-lock-elision", "nightly", "owning_ref", "send_guard", "serde"))' -C metadata=f90e96951e974040 -C extra-filename=-f90e96951e974040 --out-dir /home/runner/work/bongonet/bongonet/target/debug/deps -L dependency=/home/runner/work/bongonet/bongonet/target/debug/deps --extern lock_api=/home/runner/work/bongonet/bongonet/target/debug/deps/liblock_api-c6b8f983afbd81af.rmeta --extern parking_lot_core=/home/runner/work/bongonet/bongonet/target/debug/deps/libparking_lot_core-f93214d335c75066.rmeta --cap-lints allow`
    935:  �[1m�[32m   Compiling�[0m bytes v1.9.0
    936:  �[1m�[32m     Running�[0m `/home/runner/.rustup/toolchains/1.82.0-x86_64-unknown-linux-gnu/bin/rustc --crate-name bytes --edition=2018 /home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/bytes-1.9.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "serde", "std"))' -C metadata=b472344376efa8ca -C extra-filename=-b472344376efa8ca --out-dir /home/runner/work/bongonet/bongonet/target/debug/deps -L dependency=/home/runner/work/bongonet/bongonet/target/debug/deps --cap-lints allow`
    937:  �[1m�[32m   Compiling�[0m getrandom v0.2.15
    938:  �[1m�[32m     Running�[0m `/home/runner/.rustup/toolchains/1.82.0-x86_64-unknown-linux-gnu/bin/rustc --crate-name getrandom --edition=2018 /home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/getrandom-0.2.15/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("compiler_builtins", "core", "custom", "js", "js-sys", "linux_disable_fallback", "rdrand", "rustc-dep-of-std", "std", "test-in-browser", "wasm-bindgen"))' -C metadata=30bf1f54b25ca4ba -C extra-filename=-30bf1f54b25ca4ba --out-dir /home/runner/work/bongonet/bongonet/target/debug/deps -L dependency=/home/runner/work/bongonet/bongonet/target/debug/deps --extern cfg_if=/home/runner/work/bongonet/bongonet/target/debug/deps/libcfg_if-f331783c409103a0.rmeta --extern libc=/home/runner/work/bongonet/bongonet/target/debug/deps/liblibc-f71ccc134b801692.rmeta --cap-lints allow`
    939:  �[1m�[32m   Compiling�[0m pin-project-lite v0.2.15
    940:  �[1m�[32m     Running�[0m `/home/runner/.rustup/toolchains/1.82.0-x86_64-unknown-linux-gnu/bin/rustc --crate-name pin_project_lite --edition=2018 /home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/pin-project-lite-0.2.15/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --warn=unreachable_pub --warn=unexpected_cfgs '--warn=clippy::undocumented_unsafe_blocks' '--warn=clippy::transmute_undefined_repr' '--warn=clippy::trailing_empty_array' --warn=single_use_lifetimes --warn=rust_2018_idioms '--warn=clippy::pedantic' --warn=non_ascii_idents '--warn=clippy::inline_asm_x86_att_syntax' --warn=improper_ctypes_definitions --warn=improper_ctypes --warn=deprecated_safe '--warn=clippy::default_union_representation' '--warn=clippy::as_underscore' '--warn=clippy::as_ptr_cast_mut' '--warn=clippy::all' '--allow=clippy::unreadable_literal' '--allow=clippy::type_complexity' '--allow=clippy::too_many_lines' '--allow=clippy::too_many_arguments' '--allow=clippy::struct_field_names' '--allow=clippy::struct_excessive_bools' '--allow=clippy::single_match_else' '--allow=clippy::single_match' '--allow=clippy::similar_names' '--allow=clippy::range_plus_one' '--allow=clippy::nonminimal_bool' '--allow=clippy::naive_bytecount' '--allow=clippy::module_name_repetitions' '--allow=clippy::missing_errors_doc' '--allow=clippy::manual_range_contains' '--allow=clippy::manual_assert' '--allow=clippy::lint_groups_priority' '--allow=clippy::incompatible_msrv' '--allow=clippy::float_cmp' '--allow=clippy::doc_markdown' '--allow=clippy::declare_interior_mutable_const' '--allow=clippy::cast_lossless' '--allow=clippy::borrow_as_ptr' '--allow=clippy::bool_assert_comparison' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=ccb0773c85ffd230 -C extra-filename=-ccb0773c85ffd230 --out-dir /home/runner/work/bongonet/bongonet/target/debug/deps -L dependency=/home/runner/work/bongonet/bongonet/target/debug/deps --cap-lints allow`
    941:  �[1m�[32m   Compiling�[0m version_check v0.9.5
    942:  �[1m�[32m     Running�[0m `/home/runner/.rustup/toolchains/1.82.0-x86_64-unknown-linux-gnu/bin/rustc --crate-name version_check --edition=2015 /home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/version_check-0.9.5/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=e27fc58427564cd1 -C extra-filename=-e27fc58427564cd1 --out-dir /home/runner/work/bongonet/bongonet/target/debug/deps -L dependency=/home/runner/work/bongonet/bongonet/target/debug/deps --cap-lints allow`
    943:  �[1m�[32m   Compiling�[0m memchr v2.7.4
    944:  �[1m�[32m     Running�[0m `/home/runner/.rustup/toolchains/1.82.0-x86_64-unknown-linux-gnu/bin/rustc --crate-name memchr --edition=2021 /home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/memchr-2.7.4/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="alloc"' --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "compiler_builtins", "core", "default", "libc", "logging", "rustc-dep-of-std", "std", "use_std"))' -C metadata=1b168b9546aea45e -C extra-filename=-1b168b9546aea45e --out-dir /home/runner/work/bongonet/bongonet/target/debug/deps -L dependency=/home/runner/work/bongonet/bongonet/target/debug/deps --cap-lints allow`
    945:  �[1m�[32m   Compiling�[0m signal-hook-registry v1.4.2
    946:  �[1m�[32m     Running�[0m `/home/runner/.rustup/toolchains/1.82.0-x86_64-unknown-linux-gnu/bin/rustc --crate-name signal_hook_registry --edition=2015 /home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/signal-hook-registry-1.4.2/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=58531cfc92dd66b3 -C extra-filename=-58531cfc92dd66b3 --out-dir /home/runner/work/bongonet/bongonet/target/debug/deps -L dependency=/home/runner/work/bongonet/bongonet/target/debug/deps --extern libc=/home/runner/work/bongonet/bongonet/target/debug/deps/liblibc-f71ccc134b801692.rmeta --cap-lints allow`
    947:  �[1m�[32m   Compiling�[0m mio v1.0.3
    948:  �[1m�[32m     Running�[0m `/home/runner/.rustup/toolchains/1.82.0-x86_64-unknown-linux-gnu/bin/rustc --crate-name mio --edition=2021 /home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/mio-1.0.3/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --warn=unexpected_cfgs --cfg 'feature="net"' --cfg 'feature="os-ext"' --cfg 'feature="os-poll"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "log", "net", "os-ext", "os-poll"))' --check-cfg 'cfg(mio_unsupported_force_poll_poll)' --check-cfg 'cfg(mio_unsupported_force_waker_pipe)' -C metadata=bd4c585ccde65617 -C extra-filename=-bd4c585ccde65617 --out-dir /home/runner/work/bongonet/bongonet/target/debug/deps -L dependency=/home/runner/work/bongonet/bongonet/target/debug/deps --extern libc=/home/runner/work/bongonet/bongonet/target/debug/deps/liblibc-f71ccc134b801692.rmeta --cap-lints allow`
    949:  �[1m�[32m   Compiling�[0m socket2 v0.5.8
    950:  �[1m�[32m     Running�[0m `/home/runner/.rustup/toolchains/1.82.0-x86_64-unknown-linux-gnu/bin/rustc --crate-name socket2 --edition=2021 /home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/socket2-0.5.8/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="all"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("all"))' -C metadata=ca2a27f0b6969e9c -C extra-filename=-ca2a27f0b6969e9c --out-dir /home/runner/work/bongonet/bongonet/target/debug/deps -L dependency=/home/runner/work/bongonet/bongonet/target/debug/deps --extern libc=/home/runner/work/bongonet/bongonet/target/debug/deps/liblibc-f71ccc134b801692.rmeta --cap-lints allow`
    951:  �[1m�[32m   Compiling�[0m byteorder v1.5.0
    952:  �[1m�[32m     Running�[0m `/home/runner/.rustup/toolchains/1.82.0-x86_64-unknown-linux-gnu/bin/rustc --crate-name byteorder --edition=2021 /home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/byteorder-1.5.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "i128", "std"))' -C metadata=1a0ff0d66dbec9a4 -C extra-filename=-1a0ff0d66dbec9a4 --out-dir /home/runner/work/bongonet/bongonet/target/debug/deps -L dependency=/home/runner/work/bongonet/bongonet/target/debug/deps --cap-lints allow`
    953:  �[1m�[32m   Compiling�[0m itoa v1.0.14
    954:  �[1m�[32m     Running�[0m `/home/runner/.rustup/toolchains/1.82.0-x86_64-unknown-linux-gnu/bin/rustc --crate-name itoa --edition=2018 /home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/itoa-1.0.14/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("no-panic"))' -C metadata=e6f86edc0590ab38 -C extra-filename=-e6f86edc0590ab38 --out-dir /home/runner/work/bongonet/bongonet/target/debug/deps -L dependency=/home/runner/work/bongonet/bongonet/target/debug/deps --cap-lints allow`
    955:  �[1m�[32m   Compiling�[0m cmake v0.1.52
    956:  �[1m�[32m     Running�[0m `/home/runner/.rustup/toolchains/1.82.0-x86_64-unknown-linux-gnu/bin/rustc --crate-name cmake --edition=2021 /home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/cmake-0.1.52/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=ddefc002000c0e2c -C extra-filename=-ddefc002000c0e2c --out-dir /home/runner/work/bongonet/bongonet/target/debug/deps -L dependency=/home/runner/work/bongonet/bongonet/target/debug/deps --extern cc=/home/runner/work/bongonet/bongonet/target/debug/deps/libcc-3e8a136108e80e8e.rmeta --cap-lints allow`
    957:  �[1m�[32m   Compiling�[0m crossbeam-utils v0.8.21
    958:  �[1m�[32m     Running�[0m `/home/runner/.rustup/toolchains/1.82.0-x86_64-unknown-linux-gnu/bin/rustc --crate-name build_script_build --edition=2021 /home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-utils-0.8.21/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no --warn=unexpected_cfgs '--allow=clippy::lint_groups_priority' '--allow=clippy::declare_interior_mutable_const' --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "loom", "nightly", "std"))' --check-cfg 'cfg(crossbeam_loom)' --check-cfg 'cfg(crossbeam_sanitize)' -C metadata=84d1e246c9e872e8 -C extra-filename=-84d1e246c9e872e8 --out-dir /home/runner/work/bongonet/bongonet/target/debug/build/crossbeam-utils-84d1e246c9e872e8 -L dependency=/home/runner/work/bongonet/bongonet/target/debug/deps --cap-lints allow`
    959:  �[1m�[32m   Compiling�[0m futures-core v0.3.31
    960:  �[1m�[32m     Running�[0m `/home/runner/.rustup/toolchains/1.82.0-x86_64-unknown-linux-gnu/bin/rustc --crate-name futures_core --edition=2018 /home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/futures-core-0.3.31/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --warn=unreachable_pub --warn=unexpected_cfgs --warn=single_use_lifetimes --warn=rust_2018_idioms --warn=missing_debug_implementations --cfg 'feature="alloc"' --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "cfg-target-has-atomic", "default", "portable-atomic", "std", "unstable"))' --check-cfg 'cfg(futures_sanitizer)' -C metadata=e3f144a67969b365 -C extra-filename=-e3f144a67969b365 --out-dir /home/runner/work/bongonet/bongonet/target/debug/deps -L dependency=/home/runner/work/bongonet/bongonet/target/debug/deps --cap-lints allow`
    961:  �[1m�[32m   Compiling�[0m fnv v1.0.7
    962:  �[1m�[32m     Running�[0m `/home/runner/.rustup/toolchains/1.82.0-x86_64-unknown-linux-gnu/bin/rustc --crate-name fnv --edition=2015 /home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/fnv-1.0.7/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "std"))' -C metadata=e0a183b082e9aec3 -C extra-filename=-e0a183b082e9aec3 --out-dir /home/runner/work/bongonet/bongonet/target/debug/deps -L dependency=/home/runner/work/bongonet/bongonet/target/debug/deps --cap-lints allow`
    963:  �[1m�[32m   Compiling�[0m pkg-config v0.3.31
    964:  �[1m�[32m     Running�[0m `/home/runner/.rustup/toolchains/1.82.0-x86_64-unknown-linux-gnu/bin/rustc --crate-name pkg_config --edition=2018 /home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/pkg-config-0.3.31/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=954336a67e0c8c57 -C extra-filename=-954336a67e0c8c57 --out-dir /home/runner/work/bongonet/bongonet/target/debug/deps -L dependency=/home/runner/work/bongonet/bongonet/target/debug/deps --cap-lints allow`
    965:  �[1m�[32m     Running�[0m `/home/runner/work/bongonet/bongonet/target/debug/build/crossbeam-utils-84d1e246c9e872e8/build-script-build`
    966:  �[1m�[32m     Running�[0m `/home/runner/.rustup/toolchains/1.82.0-x86_64-unknown-linux-gnu/bin/rustc --crate-name crossbeam_utils --edition=2021 /home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crossbeam-utils-0.8.21/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --warn=unexpected_cfgs '--allow=clippy::lint_groups_priority' '--allow=clippy::declare_interior_mutable_const' --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "loom", "nightly", "std"))' --check-cfg 'cfg(crossbeam_loom)' --check-cfg 'cfg(crossbeam_sanitize)' -C metadata=08c3e2d17f762de5 -C extra-filename=-08c3e2d17f762de5 --out-dir /home/runner/work/bongonet/bongonet/target/debug/deps -L dependency=/home/runner/work/bongonet/bongonet/target/debug/deps --cap-lints allow --check-cfg 'cfg(crossbeam_no_atomic,crossbeam_sanitize_thread)'`
    967:  �[1m�[32m   Compiling�[0m serde v1.0.216
    968:  �[1m�[32m     Running�[0m `/home/runner/.rustup/toolchains/1.82.0-x86_64-unknown-linux-gnu/bin/rustc --crate-name build_script_build --edition=2018 /home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.216/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no --cfg 'feature="alloc"' --cfg 'feature="default"' --cfg 'feature="derive"' --cfg 'feature="serde_derive"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "default", "derive", "rc", "serde_derive", "std", "unstable"))' -C metadata=0cd11ed3438271e3 -C extra-filename=-0cd11ed3438271e3 --out-dir /home/runner/work/bongonet/bongonet/target/debug/build/serde-0cd11ed3438271e3 -L dependency=/home/runner/work/bongonet/bongonet/target/debug/deps --cap-lints allow`
    969:  �[1m�[32m     Running�[0m `/home/runner/work/bongonet/bongonet/target/debug/build/serde-0cd11ed3438271e3/build-script-build`
    970:  �[1m�[32m   Compiling�[0m equivalent v1.0.1
    971:  �[1m�[32m     Running�[0m `/home/runner/.rustup/toolchains/1.82.0-x86_64-unknown-linux-gnu/bin/rustc --crate-name equivalent --edition=2015 /home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/equivalent-1.0.1/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=facef75f2f5239b0 -C extra-filename=-facef75f2f5239b0 --out-dir /home/runner/work/bongonet/bongonet/target/debug/deps -L dependency=/home/runner/work/bongonet/bongonet/target/debug/deps --cap-lints allow`
    972:  �[1m�[32m   Compiling�[0m foldhash v0.1.3
    973:  �[1m�[32m     Running�[0m `/home/runner/.rustup/toolchains/1.82.0-x86_64-unknown-linux-gnu/bin/rustc --crate-name foldhash --edition=2021 /home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/foldhash-0.1.3/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "std"))' -C metadata=03688ffcc3b564d5 -C extra-filename=-03688ffcc3b564d5 --out-dir /home/runner/work/bongonet/bongonet/target/debug/deps -L dependency=/home/runner/work/bongonet/bongonet/target/debug/deps --cap-lints allow`
    974:  �[1m�[32m   Compiling�[0m allocator-api2 v0.2.21
    975:  �[1m�[32m     Running�[0m `/home/runner/.rustup/toolchains/1.82.0-x86_64-unknown-linux-gnu/bin/rustc --crate-name allocator_api2 --edition=2018 /home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/allocator-api2-0.2.21/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --warn=unexpected_cfgs --cfg 'feature="alloc"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "default", "fresh-rust", "nightly", "serde", "std"))' --check-cfg 'cfg(no_global_oom_handling)' -C metadata=f51f0f0c6af6d2df -C extra-filename=-f51f0f0c6af6d2df --out-dir /home/runner/work/bongonet/bongonet/target/debug/deps -L dependency=/home/runner/work/bongonet/bongonet/target/debug/deps --cap-lints allow`
    976:  �[1m�[32m   Compiling�[0m rand_core v0.6.4
    977:  �[1m�[32m     Running�[0m `/home/runner/.rustup/toolchains/1.82.0-x86_64-unknown-linux-gnu/bin/rustc --crate-name rand_core --edition=2018 /home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rand_core-0.6.4/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="alloc"' --cfg 'feature="getrandom"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "getrandom", "serde", "serde1", "std"))' -C metadata=482ae8976fa879eb -C extra-filename=-482ae8976fa879eb --out-dir /home/runner/work/bongonet/bongonet/target/debug/deps -L dependency=/home/runner/work/bongonet/bongonet/target/debug/deps --extern getrandom=/home/runner/work/bongonet/bongonet/target/debug/deps/libgetrandom-30bf1f54b25ca4ba.rmeta --cap-lints allow`
    978:  �[1m�[32m   Compiling�[0m log v0.4.22
    979:  �[1m�[32m     Running�[0m `/home/runner/.rustup/toolchains/1.82.0-x86_64-unknown-linux-gnu/bin/rustc --crate-name log --edition=2021 /home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/log-0.4.22/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("kv", "kv_serde", "kv_std", "kv_sval", "kv_unstable", "kv_unstable_serde", "kv_unstable_std", "kv_unstable_sval", "max_level_debug", "max_level_error", "max_level_info", "max_level_off", "max_level_trace", "max_level_warn", "release_max_level_debug", "release_max_level_error", "release_max_level_info", "release_max_level_off", "release_max_level_trace", "release_max_level_warn", "serde", "std", "sval", "sval_ref", "value-bag"))' -C metadata=9a81c62b68727b6d -C extra-filename=-9a81c62b68727b6d --out-dir /home/runner/work/bongonet/bongonet/target/debug/deps -L dependency=/home/runner/work/bongonet/bongonet/target/debug/deps --cap-lints allow`
    980:  �[1m�[32m   Compiling�[0m syn v1.0.109
    981:  �[1m�[32m     Running�[0m `/home/runner/.rustup/toolchains/1.82.0-x86_64-unknown-linux-gnu/bin/rustc --crate-name build_script_build --edition=2018 /home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no --cfg 'feature="clone-impls"' --cfg 'feature="default"' --cfg 'feature="derive"' --cfg 'feature="extra-traits"' --cfg 'feature="full"' --cfg 'feature="parsing"' --cfg 'feature="printing"' --cfg 'feature="proc-macro"' --cfg 'feature="quote"' --cfg 'feature="visit"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("clone-impls", "default", "derive", "extra-traits", "fold", "full", "parsing", "printing", "proc-macro", "quote", "test", "visit", "visit-mut"))' -C metadata=c5a4a8012f2e73dc -C extra-filename=-c5a4a8012f2e73dc --out-dir /home/runner/work/bongonet/bongonet/target/debug/build/syn-c5a4a8012f2e73dc -L dependency=/home/runner/work/bongonet/bongonet/target/debug/deps --cap-lints allow`
    982:  �[1m�[32m   Compiling�[0m hashbrown v0.15.2
    983:  �[1m�[32m     Running�[0m `/home/runner/.rustup/toolchains/1.82.0-x86_64-unknown-linux-gnu/bin/rustc --crate-name hashbrown --edition=2021 /home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/hashbrown-0.15.2/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="allocator-api2"' --cfg 'feature="default"' --cfg 'feature="default-hasher"' --cfg 'feature="equivalent"' --cfg 'feature="inline-more"' --cfg 'feature="raw-entry"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "allocator-api2", "compiler_builtins", "core", "default", "default-hasher", "equivalent", "inline-more", "nightly", "raw-entry", "rayon", "rustc-dep-of-std", "rustc-internal-api", "serde"))' -C metadata=d3b14f82519f8ec8 -C extra-filename=-d3b14f82519f8ec8 --out-dir /home/runner/work/bongonet/bongonet/target/debug/deps -L dependency=/home/runner/work/bongonet/bongonet/target/debug/deps --extern allocator_api2=/home/runner/work/bongonet/bongonet/target/debug/deps/liballocator_api2-f51f0f0c6af6d2df.rmeta --extern equivalent=/home/runner/work/bongonet/bongonet/target/debug/deps/libequivalent-facef75f2f5239b0.rmeta --extern foldhash=/home/runner/work/bongonet/bongonet/target/debug/deps/libfoldhash-03688ffcc3b564d5.rmeta --cap-lints allow`
    984:  �[1m�[32m   Compiling�[0m slab v0.4.9
    985:  �[1m�[32m     Running�[0m `/home/runner/.rustup/toolchains/1.82.0-x86_64-unknown-linux-gnu/bin/rustc --crate-name build_script_build --edition=2018 /home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/slab-0.4.9/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "serde", "std"))' -C metadata=a5c4d40b9587da5a -C extra-filename=-a5c4d40b9587da5a --out-dir /home/runner/work/bongonet/bongonet/target/debug/build/slab-a5c4d40b9587da5a -L dependency=/home/runner/work/bongonet/bongonet/target/debug/deps --extern autocfg=/home/runner/work/bongonet/bongonet/target/debug/deps/libautocfg-134e5b9874ae68f2.rlib --cap-lints allow`
    986:  �[1m�[32m     Running�[0m `/home/runner/work/bongonet/bongonet/target/debug/build/syn-c5a4a8012f2e73dc/build-script-build`
    987:  �[1m�[32m   Compiling�[0m crunchy v0.2.2
    988:  �[1m�[32m     Running�[0m `/home/runner/.rustup/toolchains/1.82.0-x86_64-unknown-linux-gnu/bin/rustc --crate-name build_script_build --edition=2015 /home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crunchy-0.2.2/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no --cfg 'feature="default"' --cfg 'feature="limit_128"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "limit_1024", "limit_128", "limit_2048", "limit_256", "limit_512", "limit_64", "std"))' -C metadata=a92031dfbeb34c65 -C extra-filename=-a92031dfbeb34c65 --out-dir /home/runner/work/bongonet/bongonet/target/debug/build/crunchy-a92031dfbeb34c65 -L dependency=/home/runner/work/bongonet/bongonet/target/debug/deps --cap-lints allow`
    989:  �[1m�[32m   Compiling�[0m futures-sink v0.3.31
    990:  �[1m�[32m     Running�[0m `/home/runner/.rustup/toolchains/1.82.0-x86_64-unknown-linux-gnu/bin/rustc --crate-name futures_sink --edition=2018 /home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/futures-sink-0.3.31/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --warn=unreachable_pub --warn=unexpected_cfgs --warn=single_use_lifetimes --warn=rust_2018_idioms --warn=missing_debug_implementations --cfg 'feature="alloc"' --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "default", "std"))' --check-cfg 'cfg(futures_sanitizer)' -C metadata=67a71846c925eaca -C extra-filename=-67a71846c925eaca --out-dir /home/runner/work/bongonet/bongonet/target/debug/deps -L dependency=/home/runner/work/bongonet/bongonet/target/debug/deps --cap-lints allow`
    991:  �[1m�[32m     Running�[0m `/home/runner/work/bongonet/bongonet/target/debug/build/slab-a5c4d40b9587da5a/build-script-build`
    992:  �[1m�[32m     Running�[0m `/home/runner/.rustup/toolchains/1.82.0-x86_64-unknown-linux-gnu/bin/rustc --crate-name syn --edition=2018 /home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/syn-1.0.109/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no --cfg 'feature="clone-impls"' --cfg 'feature="default"' --cfg 'feature="derive"' --cfg 'feature="extra-traits"' --cfg 'feature="full"' --cfg 'feature="parsing"' --cfg 'feature="printing"' --cfg 'feature="proc-macro"' --cfg 'feature="quote"' --cfg 'feature="visit"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("clone-impls", "default", "derive", "extra-traits", "fold", "full", "parsing", "printing", "proc-macro", "quote", "test", "visit", "visit-mut"))' -C metadata=40029fcad70fbf24 -C extra-filename=-40029fcad70fbf24 --out-dir /home/runner/work/bongonet/bongonet/target/debug/deps -L dependency=/home/runner/work/bongonet/bongonet/target/debug/deps --extern proc_macro2=/home/runner/work/bongonet/bongonet/target/debug/deps/libproc_macro2-390e634b2391ac60.rmeta --extern quote=/home/runner/work/bongonet/bongonet/target/debug/deps/libquote-573d6817e75b5eae.rmeta --extern unicode_ident=/home/runner/work/bongonet/bongonet/target/debug/deps/libunicode_ident-0c791808698d0f3c.rmeta --cap-lints allow --cfg syn_disable_nightly_tests`
    993:  �[1m�[32m     Running�[0m `/home/runner/work/bongonet/bongonet/target/debug/build/crunchy-a92031dfbeb34c65/build-script-build`
    994:  �[1m�[32m   Compiling�[0m synstructure v0.13.1
    995:  �[1m�[32m     Running�[0m `/home/runner/.rustup/toolchains/1.82.0-x86_64-unknown-linux-gnu/bin/rustc --crate-name synstructure --edition=2018 /home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/synstructure-0.13.1/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no --cfg 'feature="default"' --cfg 'feature="proc-macro"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "proc-macro"))' -C metadata=61643f6c410ea44d -C extra-filename=-61643f6c410ea44d --out-dir /home/runner/work/bongonet/bongonet/target/debug/deps -L dependency=/home/runner/work/bongonet/bongonet/target/debug/deps --extern proc_macro2=/home/runner/work/bongonet/bongonet/target/debug/deps/libproc_macro2-390e634b2391ac60.rmeta --extern quote=/home/runner/work/bongonet/bongonet/target/debug/deps/libquote-573d6817e75b5eae.rmeta --extern syn=/home/runner/work/bongonet/bongonet/target/debug/deps/libsyn-e39642c17ee14539.rmeta --cap-lints allow`
    996:  �[1m�[32m   Compiling�[0m num-traits v0.2.19
    997:  �[1m�[32m     Running�[0m `/home/runner/.rustup/toolchains/1.82.0-x86_64-unknown-linux-gnu/bin/rustc --crate-name build_script_build --edition=2021 /home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/num-traits-0.2.19/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no --cfg 'feature="default"' --cfg 'feature="i128"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "i128", "libm", "std"))' -C metadata=3ef936651d6430ac -C extra-filename=-3ef936651d6430ac --out-dir /home/runner/work/bongonet/bongonet/target/debug/build/num-traits-3ef936651d6430ac -L dependency=/home/runner/work/bongonet/bongonet/target/debug/deps --extern autocfg=/home/runner/work/bongonet/bongonet/target/debug/deps/libautocfg-134e5b9874ae68f2.rlib --cap-lints allow`
    998:  �[1m�[32m   Compiling�[0m tiny-keccak v2.0.2
    999:  �[1m�[32m     Running�[0m `/home/runner/.rustup/toolchains/1.82.0-x86_64-unknown-linux-gnu/bin/rustc --crate-name build_script_build --edition=2018 /home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/tiny-keccak-2.0.2/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no --cfg 'feature="default"' --cfg 'feature="shake"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("cshake", "default", "fips202", "k12", "keccak", "kmac", "parallel_hash", "sha3", "shake", "sp800", "tuple_hash"))' -C metadata=c28061f0420e613e -C extra-filename=-c28061f0420e613e --out-dir /home/runner/work/bongonet/bongonet/target/debug/build/tiny-keccak-c28061f0420e613e -L dependency=/home/runner/work/bongonet/bongonet/target/debug/deps --cap-lints allow`
    1000:  �[1m�[32m   Compiling�[0m stable_deref_trait v1.2.0
    1001:  �[1m�[32m     Running�[0m `/home/runner/.rustup/toolchains/1.82.0-x86_64-unknown-linux-gnu/bin/rustc --crate-name stable_deref_trait --edition=2015 /home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/stable_deref_trait-1.2.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="alloc"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "default", "std"))' -C metadata=92ba8e37dfe6c30e -C extra-filename=-92ba8e37dfe6c30e --out-dir /home/runner/work/bongonet/bongonet/target/debug/deps -L dependency=/home/runner/work/bongonet/bongonet/target/debug/deps --cap-lints allow`
    1002:  �[1m�[32m     Running�[0m `/home/runner/work/bongonet/bongonet/target/debug/build/tiny-keccak-c28061f0420e613e/build-script-build`
    1003:  �[1m�[32m     Running�[0m `/home/runner/work/bongonet/bongonet/target/debug/build/num-traits-3ef936651d6430ac/build-script-build`
    1004:  �[1m�[32m     Running�[0m `/home/runner/.rustup/toolchains/1.82.0-x86_64-unknown-linux-gnu/bin/rustc --crate-name crunchy --edition=2015 /home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/crunchy-0.2.2/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no --cfg 'feature="default"' --cfg 'feature="limit_128"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "limit_1024", "limit_128", "limit_2048", "limit_256", "limit_512", "limit_64", "std"))' -C metadata=6714985a8af88466 -C extra-filename=-6714985a8af88466 --out-dir /home/runner/work/bongonet/bongonet/target/debug/deps -L dependency=/home/runner/work/bongonet/bongonet/target/debug/deps --cap-lints allow`
    1005:  �[1m�[32m     Running�[0m `/home/runner/.rustup/toolchains/1.82.0-x86_64-unknown-linux-gnu/bin/rustc --crate-name slab --edition=2018 /home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/slab-0.4.9/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "serde", "std"))' -C metadata=511ec82b8607cb5e -C extra-filename=-511ec82b8607cb5e --out-dir /home/runner/work/bongonet/bongonet/target/debug/deps -L dependency=/home/runner/work/bongonet/bongonet/target/debug/deps --cap-lints allow`
    1006:  �[1m�[32m   Compiling�[0m httparse v1.9.5
    1007:  �[1m�[32m     Running�[0m `/home/runner/.rustup/toolchains/1.82.0-x86_64-unknown-linux-gnu/bin/rustc --crate-name build_script_build --edition=2018 /home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/httparse-1.9.5/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no --warn=unexpected_cfgs --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "std"))' --check-cfg 'cfg(httparse_simd)' --check-cfg 'cfg(httparse_simd_target_feature_avx2)' --check-cfg 'cfg(httparse_simd_target_feature_sse42)' --check-cfg 'cfg(httparse_simd_neon_intrinsics)' -C metadata=76b4d6a6bd1d3fbf -C extra-filename=-76b4d6a6bd1d3fbf --out-dir /home/runner/work/bongonet/bongonet/target/debug/build/httparse-76b4d6a6bd1d3fbf -L dependency=/home/runner/work/bongonet/bongonet/target/debug/deps --cap-lints allow`
    1008:  �[1m�[32m   Compiling�[0m ryu v1.0.18
    1009:  �[1m�[32m     Running�[0m `/home/runner/.rustup/toolchains/1.82.0-x86_64-unknown-linux-gnu/bin/rustc --crate-name ryu --edition=2018 /home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ryu-1.0.18/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("no-panic", "small"))' -C metadata=31b5f0a51298ef5c -C extra-filename=-31b5f0a51298ef5c --out-dir /home/runner/work/bongonet/bongonet/target/debug/deps -L dependency=/home/runner/work/bongonet/bongonet/target/debug/deps --cap-lints allow`
    1010:  �[1m�[32m   Compiling�[0m adler2 v2.0.0
    1011:  �[1m�[32m     Running�[0m `/home/runner/.rustup/toolchains/1.82.0-x86_64-unknown-linux-gnu/bin/rustc --crate-name adler2 --edition=2021 /home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/adler2-2.0.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("compiler_builtins", "core", "default", "rustc-dep-of-std", "std"))' -C metadata=6413a2fe75603fbf -C extra-filename=-6413a2fe75603fbf --out-dir /home/runner/work/bongonet/bongonet/target/debug/deps -L dependency=/home/runner/work/bongonet/bongonet/target/debug/deps --cap-lints allow`
    1012:  �[1m�[32m   Compiling�[0m miniz_oxide v0.8.2
    1013:  �[1m�[32m     Running�[0m `/home/runner/.rustup/toolchains/1.82.0-x86_64-unknown-linux-gnu/bin/rustc --crate-name miniz_oxide --edition=2021 /home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/miniz_oxide-0.8.2/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --warn=unexpected_cfgs --cfg 'feature="with-alloc"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "compiler_builtins", "core", "default", "rustc-dep-of-std", "simd", "simd-adler32", "std", "with-alloc"))' --check-cfg 'cfg(fuzzing)' -C metadata=43ec50f90c378eff -C extra-filename=-43ec50f90c378eff --out-dir /home/runner/work/bongonet/bongonet/target/debug/deps -L dependency=/home/runner/work/bongonet/bongonet/target/debug/deps --extern adler2=/home/runner/work/bongonet/bongonet/target/debug/deps/libadler2-6413a2fe75603fbf.rmeta --cap-lints allow`
    1014:  �[1m�[32m     Running�[0m `/home/runner/work/bongonet/bongonet/target/debug/build/httparse-76b4d6a6bd1d3fbf/build-script-build`
    1015:  �[1m�[32m     Running�[0m `/home/runner/.rustup/toolchains/1.82.0-x86_64-unknown-linux-gnu/bin/rustc --crate-name num_traits --edition=2021 /home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/num-traits-0.2.19/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,lin...

    Copy link

    @coderabbitai coderabbitai bot left a comment

    Choose a reason for hiding this comment

    The reason will be displayed to describe this comment to others. Learn more.

    Actionable comments posted: 0

    🧹 Nitpick comments (1)
    bongonet-cache/src/lib.rs (1)

    432-436: Documentation could be improved for the getter methods.

    The implementation looks good, but consider adding more detailed documentation comments that explain:

    • The purpose of the span
    • When it's available/None
    • Usage examples

    Consider adding documentation like this:

    -    // Get the cache parent tracing span
    +    /// Returns the cache parent tracing span handle if tracing is enabled.
    +    ///
    +    /// This span represents the overall caching operation and is the parent of all other cache-related spans.
    +    /// Returns None if tracing is disabled or if the cache is not initialized.
         pub fn get_cache_span(&self) -> Option<trace::SpanHandle> {
    📜 Review details

    Configuration used: CodeRabbit UI
    Review profile: CHILL
    Plan: Pro

    📥 Commits

    Reviewing files that changed from the base of the PR and between 44502e4 and f1b17e0.

    📒 Files selected for processing (1)
    • bongonet-cache/src/lib.rs (1 hunks)
    🔇 Additional comments (2)
    bongonet-cache/src/lib.rs (2)

    439-441: Good change: Removed mutable requirement from get_miss_span.

    The change from &mut self to &self is a good improvement as it:

    • Allows multiple readers to access the span
    • Better reflects that reading a span handle doesn't modify state
    • Maintains consistency with other getter methods

    442-444: LGTM: get_hit_span implementation is consistent.

    The implementation follows the established pattern and properly handles the Option case.

    Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
    Projects
    None yet
    Development

    Successfully merging this pull request may close these issues.

    1 participant