-
Notifications
You must be signed in to change notification settings - Fork 6
chore: check-in Cargo.lock #51
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
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #51 +/- ##
==========================================
- Coverage 93.61% 93.42% -0.20%
==========================================
Files 5 5
Lines 517 517
==========================================
- Hits 484 483 -1
- Misses 33 34 +1 ☔ View full report in Codecov by Sentry. |
I think |
Thanks for the hint @larseggert. I will make a change. Note that mozilla-central is using Thus we will need to update |
mozilla#29 added the following `libc` import: ``` rust use libc::{ freeifaddrs, getifaddrs, getpid, if_data, if_indextoname, ifaddrs, in6_addr, in_addr, sockaddr_in, sockaddr_in6, sockaddr_storage, AF_UNSPEC, PF_ROUTE, RTAX_MAX, }; ``` `RTAX_MAX` was added in `libc` `0.2.160`: https://github.com/rust-lang/libc/releases/tag/0.2.160 More specifically rust-lang/libc#3714. This commit makes sure the above new requirement is encoded in the `mtu` `Cargo.toml` `libc` dependency declaration. See CI failure without discussed in mozilla#51 (comment).
See same change in Neqo mozilla/neqo#2208.
See same change in Neqo mozilla/neqo#2208.