fix(deps): update minor and patch dependencies#30
Open
renovate[bot] wants to merge 1 commit into
Open
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
4.5.60→4.6.1trixie→trixie-202605180.11→0.120.17→0.180.2.183→0.2.1860.16→0.170.29→0.310.8→0.100.12→0.130.32→0.391.0.149→1.0.1501.0.149→1.0.1500.10→0.110.3→0.41.50.0→1.52.30.8→0.90.3.22→0.3.230.31.13→0.31.140.8→0.95.14.0→5.15.05.10.0→5.11.05.10.0→5.11.0Release Notes
clap-rs/clap (clap)
v4.6.1Compare Source
Fixes
v4.6.0Compare Source
Compatibility
v4.5.61Compare Source
Internal
console-rs/dialoguer (dialoguer)
v0.12.0: 0.12.0Compare Source
What's Changed
select.rsexample by @jwodder in #289thiserrorwith a manual impl by @CosmicHorrorDev in #327console-rs/indicatif (indicatif)
v0.18.4Compare Source
What's Changed
v0.18.3Compare Source
What's Changed
v0.18.2Compare Source
What's Changed
v0.18.1Compare Source
What's Changed
v0.18.0Compare Source
Unfortunately 0.17.12 had to be yanked because the console upgrade was a semver-incompatible change. Rerelease as 0.18.0 instead.
What's Changed
v0.17.12Compare Source
What's Changed
HumanFloatCountvalues by @ReagentX in #696ProgressStyleenable/disable colors based on draw target by @tonywu6 in #699rust-lang/libc (libc)
v0.2.186Compare Source
Added
KEVENT_FLAG_*constants (#5070)PR_SET_MEMORY_MERGEandPR_GET_MEMORY_MERGE(#5060)Changed
v0.2.185Compare Source
Added
espidf_picolibccfg for picolibcO_*flag values (#5035)sprintf,snprintf, and thescanffamily (#5024)Fixed
time64types from musl symbol redirects (#5040)POLLconstants fromc_shorttoc_int(#5045)v0.2.184Compare Source
MSRV
This release increases the MSRV of
libcto 1.65. With this update, you can now always use thecore::ffi::c_*types withlibcdefinitions, sincelibchas been changed to reexport fromcorerather than redefining them. (This usually worked before but had edge cases.)(#4972)
Added
IP_MINTTLto bsd (#5026)TIOCM_DSR(#5031)xfilestructe and file descriptor types (#5002)struct ethhdr(#4239)struct ifinfomsg(#5012)max_align_tfor riscv64 (#5029)CLOCK_constants (#5020)_SC_HOST_NAME_MAX(#5004)flockandF_*LCKconstants (#4043)_SC_*sysconf constants (#5023)Deprecated
The remaining fixed-width integer aliases,
__uint128_t,__uint128,__int128_t, and__int128,have been deprecated. Use
i128andu128instead. (#4343)Fixed
DT_*constants (#5034)RTLD_NOLOAD, some TCP constants (#5025)Padding::new(<zeroed>)rather thanPadding::uninit()(#5036)Changed
struct ptrace_syscall_info(#4966)core::ffiinteger types rather than redefining (#5015)F_DUPFD,IP, andTCPconstants to match relibc (#4990)rust-ndarray/ndarray (ndarray)
v0.17.2Compare Source
===========================
Version 0.17.2 is mainly a patch fix to bugs related to the new
ArrayRefimplementation.In addition,
ndarrayhas reduced its packaging footprint to ease supply chain reviews (and shrink the binary size!).A special thanks to @SwishSwushPow and @weiznich for bringing this to our attention and making the necessary changes.
Added
Fixed
Documentation
v0.17.1Compare Source
===========================
Version 0.17.1 provides a patch to fix the originally-unsound implementation of the new array reference types.
The reference types are now all unsized.
Practically speaking, this has one major implication: writing functions and traits that accept
RawRefandLayoutRefwill now need a+ ?Sizedbound to work ergonomically withArrayRef.For example, the release notes for 0.17.0 said
However, these functions now need an additional bound to allow for callers to pass in
&ArrayReftypes:A huge thank you to Sarah Quiñones (@sarah-quinones) for catching the original unsound bug and helping to fix it.
She does truly excellent work with
faer-rs; check it out!v0.17.0Compare Source
===========================
Version 0.17.0 introduces a new array reference type — the preferred way to write functions and extension traits in
ndarray.This release is fully backwards-compatible but represents a major usability improvement.
The first section of this changelog explains the change in detail.
It also includes numerous new methods, math functions, and internal improvements — all credited below.
A New Way to Write Functions
TL;DR
ndarray0.17.0 adds new reference types for writing functions and traits that work seamlessly with owned arrays and views.When writing functions that accept array arguments:
&ArrayRef<A, D>to read elements from any array.&mut ArrayRef<A, D>to modify elements.&T where T: AsRef<LayoutRef<A, D>>to inspect shape/stride only.&mut T where T: AsMut<LayoutRef<A, D>>to modify shape/stride only.All existing function signatures continue to work; these new types are fully opt-in.
Background
ndarray has multiple ways to write functions that take arrays (a problem captured well in issue #1059).
For example:
All of these work, but having several equivalent forms causes confusion.
The most general solution, writing generically over storage types:
is powerful but verbose and often hard to read.
Version 0.17.0 introduces a new, simpler pattern that expresses the same flexibility more clearly.
Solution
Three new reference types make it easier to write functions that accept any kind of array while clearly expressing what kind of access (data or layout) they need.
Reading / Writing Elements:
ArrayRef<A, D>ArrayRefis theDereftarget ofArrayBase.It behaves like
&[T]forVec<T>, giving access to elements and layout.Mutability is expressed through the reference itself (
&vs&mut), not through a trait bound or the type itself.It is used as follows:
(ArrayRef1 is available from the prelude.)
Reading / Writing Shape:
LayoutRef<A, D>LayoutRef lets functions view or modify shape/stride information without touching data.
This replaces verbose signatures like:
Use AsRef / AsMut for best compatibility:
(Accepting a
LayoutRefdirectly can cause unnecessary copies; see #1440.)Reading / Writing Unsafe Elements:
RawRef<A, D>RawRefaugmentsRawArrayViewandRawArrayViewMutfor power users needing unsafe element access (e.g. uninitialized buffers).Like
LayoutRef, it is best used viaAsRef/AsMut.Added
diffmethod for calculating the difference between elements by @johann-cm #1437partitionmethod for partially sorting an array by @NewBornRustacean #1498meshgridmethod for building regular grids of values by @akern40 #1477cumprodmethod for cumulative products by @NewBornRustacean #1491exp_m1,ln_1p,asin,acos,atan,sinh,cosh,tanh,asinh,acosh,atanh, andhypotaxis_windows_with_stridemethod for strided windows by @goertzenator #1460permute_axes) and reversing (reverse_axes) axes by @NewBornRustacean #1505into_*_iterfunctions as lifetime-preserving versions of into-iterator functionality by @akern40 #1510Changed
remove_indexcan now be called on views, in addition to owned arrays by @akern40Removed
serde-1,test, anddocsfeature flags; by @akern40 #1479approx,serde,rayoninstead ofdocs.serdeinstead ofserde-1Fixed
last_mut()now guarantees that the underlying data is uniquely held by @bluss #1429ArrayViewis now covariant over lifetime by @akern40 #1480, so that the following code now compilesDocumentation
selectby @Drazharinto_raw_vec_and_offsetby @benliepertArray::zeroswith how to control the return type by @akern40Other
no_stdby @akern40nix-rust/nix (nix)
v0.31.3Compare Source
Added
ioctlfor Cygwin(#2715)
CLOCK_BOOTTIME/CLOCK_PROCESS_CPUTIME_ID/CLOCK_THREAD_CPUTIME_ID/CLOCK_UPTIMEto NetBSD-like platforms (#2716)
(#2749)
kevent64support on apple targets:Kqueue::kevent64,KEvent64,and
Kevent64Flags. (#2781)Fixed
(#2751)
EpollEvent::events()to usefrom_bits_retaininstead offrom_bits().unwrap(), preventing panics when the kernel returnsunknown epoll flags. (#2783)
KEvent::flags()andKEvent::fflags()to usefrom_bits_retaininstead of
from_bits().unwrap(), preventing panics when the kernelreturns unknown kqueue flags.
(#2784)
v0.31.2Compare Source
Added
(#2718)
(#2725)
(#2728)
Fixed
0.2.181, rather than pinned to 0.2.180.(#2744)
v0.31.1Compare Source
Added
(#2702)
(#2703)
v0.31.0Compare Source
Added
Added the UDP GSO/GRO socket options and CMsgs on Android. This includes the
following types:
(#2666)
Define errno EWOULDBLOCK as an alias of EAGAIN to match the AIX libc
definition. (#2692)
Enable module
ifaddrson GNU Hurd(#2697)
Add termios
OutputFlags::OFILLfor Linux, Android, Aix, Cygwin, Fuchsia,Haiku,
GNU/Hurd, Nto, Redox, Illumos, Solaris and Apple OSes.
(#2701)
add sync() for cygwin (#2708)
Changed
EpollEventmethods to beconst(#2656)
0.2.180
(#2724)
Fixed
nix::sys::ptrace::syscall_info, which was not setting thedataargument properly, causing garbage values to be returned.
(#2653)
signature in the AIX libc.
(#2655)
The
d_name field was not copied correctly on those platforms. For some other
platforms, it could be copied incorrectly for files with very long pathnames.
(#2674)
Removed
EqandPartialEqimplementations fromSigHandler, because theynever worked reliably. The suggested alternative is
matches!. Forexample:
IFF_NOTRAILERSby NetBSD, as it has been removed upstream and fromlibc (#2724)
[0.30.1] - 2025-05-04
Fixed
(#2634)
[0.30.0] - 2025-04-29
Added
IPV6_PKTINFOfor BSDs/Linux/Android, alsoIPV6_RECVPKTINFOfor DragonFlyBSD(#2113)
fcntl'sF_PREALLOCATEconstant for Apple targets.(#2393)
and support for DSCP (ToS / Traffic Class).
(#2425)
(nix::sys::socket::sockopt::Ipv6TClass) on Android/FreeBSD
(#2464)
SeekDataandSeekHoletoWhencefor hurd and apple targets(#2473)
Fromtrait implementation betweenSocketAddrandSockaddr,Sockaddr6(#2474)posix_spawnAPI(#2475)
(#2477)
F_RDADVISEfor Apple target(#2480)
F_RDAHEADfor Apple target(#2482)
F_LOG2PHYSandF_LOG2PHYS_EXTfor Apple target(#2483)
MAP_SHARED_VALIDATEwas added for all linux targets. &MAP_SYNCwas addedfor linux with the exclusion of mips architecures, and uclibc
(#2499)
getregs()/getregset()/setregset()for Linux/musl/aarch64(#2502)
F_TRANSFEREXTENTSconstant for Apple targets(#2504)
MapFlags::MAP_STACKinsys::manfor netbsd(#2526)
libc::LOCAL_PEERTOKENingetsockopt.(#2529)
syslog,openlog,closelogon allunix.(#2537)
TCP_FUNCTION_BLKsockopt, on FreeBSD.(#2539)
Into<OwnedFd>forPtyMaster/Fanotify/Inotify/SignalFd/TimerFd(#2548)
MremapFlags::MREMAP_DONTUNMAPtosys::mman::mremapfor linux target.(#2555)
sockopt_impl!to the public API. It's now possible for users todefine
their own sockopts without needing to make a PR to Nix.
(#2556)
TCP_FUNCTION_ALIASsockopt, on FreeBSD.(#2558)
sys::mman::MmapAdviseMADV_PAGEOUT,MADV_COLD,MADV_WIPEONFORK,MADV_KEEPONFORKfor Linux and Android targets(#2559)
Sctp, as well asMSG_NOTIFICATIONfor non-AndroidLinux targets. (#2562)
from_owned_fdconstructor toEventFd(#2563)
sys::mman::MmapAdviseMADV_POPULATE_READ,MADV_POPULATE_WRITEforLinux and Android targets
(#2565)
from_owned_fdconstructor toPtyMaster/Fanotify/Inotify/SignalFd/TimerFd(#2566)
FcntlArg::F_READAHEADfor FreeBSD target(#2569)
sockopt::LingerSecfor Apple targets(#2572)
sockopt::EsclBindfor solarish targets(#2573)
std::os::fd::AsRawFdtrait method fornix::sys::fanotify::Fanotifystruct(#2575)
setlogmaskon allunix.(#2579)
ioctl.(#2580)
sys::socket::SockProtocol::EthIp,sys::socket::SockProtocol::EthIpv6,sys::socket::SockProtocol::EthLoop(#2581)
(#2599)
setsockoptoption for apple targets(#2603)
FilAttachandFilDetachto socket::sockopt for Illumos(#2611)
PeerPidfd(SO_PEERPIDFD) tosocket::sockoptfor Linux(#2620)
socket::sockopt::AttachReusePortCbpffor Linux(#2621)
ptrace::syscall_infofor linux/glibc(#2627)
Changed
(#1936)
nameargument ofmemfd_create()from&CStrto<P: NixPath>(name: &P)(#2431)fcntl.rsanddir.rsnow use I/O-safe types.(#2434)
sys/statnow adopts I/O safety.(#2439)
(#2440)
(#2443)
IpToshas been renamed toIpv4Tos, the old symbol isdeprecated since 0.30.0 (#2465)
EventFlagtoEvFlags, andMemFdCreateFlagtoMFdFlags(#2476)
nix::sys::socket::UnknownCmsgpublic and more readable(#2520)
(#2524)
(#2582)
Fixed
(#2454)
(#2456)
nsargument ofsys::prctl::set_timerslack()should be of typec_ulong(#2505)OSStrings returned bygetsockopt.(#2557)
(#2587)
Removed
SigevNotifyis no longerPartialEq,EqandHashdue to the useof
BorrowedFd(#1936)EventFd::defuse()is removed because it does nothing,EventFd::arm()isalso removed for symmetry reasons.
(#2452)
Copytrait fromPollFd(#2631)
[0.29.0] - 2024-05-24
Added
getregset()/setregset()for Linux/glibc/x86/x86_64/aarch64/riscv64 andgetregs()/setregs()for Linux/glibc/aarch64/riscv64(#2044)
(#2287)
(#2325)
(#2326)
Fromtrait implementation for conversions betweensockaddr_inandSockaddrIn,sockaddr_in6andSockaddrIn6(#2328)
(#2332)
(#2339)
(#2340)
mountandunmountAPI for apple targets.(#2347)
_PC_MIN_HOLE_SIZEforpathconfandfpathconf.(#2349)
impl AsFd for pty::PtyMaster(#2355)
openflagO_SEARCHto AIX, Empscripten, FreeBSD, Fuchsia, solarish,WASI (#2374)
prctl_set_vma_anon_namefor Linux/Android.(#2378)
sync(2)forapple_targets/solarish/haiku/aix/hurd,syncfs(2)forhurdandfdatasync(2)foraix/hurd(#2379)
(#2380)
fcntl::OFlag::O_PATHfor FreeBSD and Fuchsia(#2382)
PathconfVar::MIN_HOLE_SIZEfor apple_targets.(#2388)
openflagO_SEARCHto apple_targets(#2391)
O_DSYNCmay now be used withaio_fsyncandfcntlon FreeBSD.(#2404)
Flock::relockfor upgrading and downgrading locks.(#2407)
Changed
Change the
ForkptyResulttype to the following repr so that theuninitialized
masterfield won't be accessed in the child process:Updated
cfg_aliasesdependency from version 0.1 to 0.2(#2322)
Change the signature of
ptrace::writeandptrace::write_userto make themsafe (#2324)
Allow use of
SignalFdthrough shared referenceLike with many other file descriptors, concurrent use of signalfds is safe.
Changing the signal mask of and reading signals from a signalfd can now be
done
with the
SignalFdAPI even if other references to it exist.(#2367)
Changed tee, splice and vmsplice RawFd arguments to AsFd.
(#2387)
Added I/O safety to the sys/aio module. Most functions that previously
accepted a
AsRawFdargument now accept anAsFdinstead.(#2401)
RecvMsg::cmsgs()now returns aResult, and checks that cmsgs were nottruncated. (#2413)
Fixed
fanotifyqueue overflows.(#2399)
reflect the used kernel's one.
(#2406)
[0.28.0] - 2024-02-24
Added
Added
mkdtempwrapper (#1297)Add associated constants
UTIME_OMITUTIME_NOWforTimeSpec(#1879)
Added
EventFdtype. (#1945)impl From<Signal> for SigSet.impl std::ops::BitOr for SigSet.impl std::ops::BitOr for Signal.impl std::ops::BitOr<Signal> for SigSet(#1959)
Added
TlsGetRecordTypecontrol message type and corresponding enum forlinux (#2065)
Added
Ipv6HopLimitto::nix::sys::socket::ControlMessagefor Linux,MacOS, FreeBSD, DragonflyBSD, Android, iOS and Haiku.
(#2074)
Added
IcmpandIcmpV6toSockProtocol(#2103)
Added rfork support for FreeBSD in
unistd(#2121)
Added
MapFlags::map_hugetlb_with_size_log2method for Linux targets(#2125)
Added
mmap_anonymousfunction(#2127)
Added
mips32r6andmips64r6support for signal, ioctl and ptrace(#2138)
Added
F_GETPATHFcntlFlags entry on Apple/NetBSD/DragonflyBSD for::nix::fcntl. (#2142)Added
F_KINFOFcntlFlags entry on FreeBSD for::nix::fcntl.(#2152)
Added
F_GETPATH_NOFIRMLINKandF_BARRIERFSYNCFcntlFlags entryon Apple for
::nix::fcntl.(#2155)
Added newtype
Flockto automatically unlock a held flock upon drop.Added
Flockabletrait to represent valid types forFlock.(#2170)
Added
SetSockOptimpls to enable Linux Kernel TLS on a TCP socket and toimport TLS parameters. (#2175)
::nix::sys::socket::SocketTimestampenum for configuring theTsClock(a.k.aSO_TS_CLOCK) sockoptScmRealtimeandScmMonotonicas new options in::nix::sys::socket::ControlMessageOwned(#2187)
Added new fanotify API: wrappers for
fanotify_initandfanotify_mark(#2194)
Added
SpecialCharacterindicessupport for haiku.(#2195)
Added
sys::sendfilesupport for solaris/illumos.(#2198)
impl Display for InterfaceFlags
(#2206)
Added
sendfilevin sys::sendfile for solarish(#2207)
Added
fctrl::SealFlag::F_SEAL_FUTURE_WRITE(#2213)
Added
Ipv6MulticastHopsas socket option to set and read.(#2234)
Enable
ControlMessageOwned::Ipv4RecvIfandControlMessageOwned::Ipv4RecvDstAddrfor DragonFlyBSD(#2240)
ClockId::set_time()andtime::clock_settime()are now enabled on macOS(#2241)
Added
IpBindAddressNoPortsockopt to supportIP_BIND_ADDRESS_NO_PORTavailable on linux. (#2244)
Enable
MapFlags::map_hugetlb_with_size_log2method for Android/Fuchsia(#2245)
Added
TcpFastOpenConnectsockopt to supportTCP_FASTOPEN_CONNECTavailable on linux. (#2247)
Add
reboot(2)for OpenBSD/NetBSD(#2251)
Added new
MemFdCreateFlagconstants tosys::memfdon Linux and Androidrelated to hugetlbfs support.
(#2252)
Expose the inner fd of
Kqueuethrough:(#2258)
Added
sys::eventfdsupport on FreeBSD(#2259)
Added
MmapFlags::MAP_FIXEDconstant insys::mmanfor netbsd and openbsd(#2260)
Added the
SO_LISTENQLIMITsockopt.(#2263)
Enable the
AT_EMPTY_PATHflag for thefchownat()function(#2267)
Add
AtFlags::AT_EMPTY_PATHfor FreeBSD and Hurd(#2270)
Enable `OFlag::O_DIRECTORY for Solarish
(#2275)
Added the
Backlogwrapper type for thelistencall.(#2276)
Add
clock_nanosleep()(#2277)Enabled
O_DIRECTinfcntl::OFlagsfor solarish(#2278)
Added a new API sigsuspend.
(#2279)
errno::Errno::setfunctionerrno::Errno::set_rawfunctionerrno::Errno::last_rawfunctionerrno::Errno::from_rawfunction(#2283)
Enable the
AT_EMPTY_PATHflag for thelinkat()function(#2284)
Enable unistd::{sync, syncfs} for Android
(#2296)
Changed
pollnow takesPollTimeoutreplacinglibc::c_int.(#1876)
Deprecated
sys::eventfd::eventfd.(#1945)
mmap,mmap_anonymous,munmap,mremap,madvise,msync,mprotect,munlockandmlockupdated to useNonNull.(#2000)
mmapfunction now acceptsFinstead ofOption<F>(#2127)
PollFd::newnow takes aBorrowedFdargument, with relaxed lifetimerequirements relative to the previous version.
(#2134)
FdSet::{insert, remove, contains}now takeBorrowedFdarguments, and haverelaxed lifetime requirements relative to 0.27.1.
(#2136)
The following APIs now take an implementation of
AsFdrather than aRawFd:unistd::tcgetpgrpunistd::tcsetpgrpunistd::fpathconfunistd::ttynameunistd::getpeereid(#2137)Changed
openat()andDir::openat(), now take optionaldirfds(#2139)
The MSRV is now 1.69 (#2144)
Changed function
SockaddrIn::ip()to returnnet::Ipv4Addrand refactoredSocketAddrV6::ip()to beconst(#2151)
The following APIs now take optional
dirfds:readlinkat()fstatat()mknodat()mkdirat()execveat()(#2157)
Epoll::waitnow takesEpollTimeoutreplacingisize.(#2202)
errno::errno()function (useErrno::last_raw())errno::from_i32()function (useErrno::from_raw())errno::Errno::from_i32()function (useErrno::from_raw())(#2283)
Fixed
SigSetincorrect implementation ofEq,PartialEqandHash(#1946)
::sys::socket::sockopt::IpMulticastTtlby fixing the value of optlenpassed to
libc::setsockoptand added tests.(#2072)
recvmmsg, potentially causing UB(#2119)
SignalFd::set_mask. In 0.27.0 it would actually close the filedescriptor. (#2141)
sun_lenvalue asneeded.
Fixed
sys::socket::addr::from_raw_partsandsys::socket::Sockaddrlike::lenbuild for solaris.(#2242)
(#2248)
dup3wrapper to perform a real call todup3instead ofemulating it via
dup2andfcntlto get rid of race condition(#2268)
::unistd::Group::membersusing read_unaligned to avoid crash onmisaligned pointers (#2311)
Removed
FchownatFlagstype has been deprecated, please useAtFlagsinstead.(#2267)
dup3wrapper on macOS, which was emulated viadup2andfcntland could cause a race condition. Thedup3system call is notsupported on macOS. (#2268)
LinkatFlagstype has been deprecated, please useAtFlagsinstead.(#2284)
[0.27.1] - 2023-08-28
Fixed
(#2111)
[0.27.0] - 2023-08-28
Added
AT_EACCESStoAtFlagson all platforms but android(#1995)
PF_ROUTEtoSockTypeon macOS, iOS, all of the BSDs, Fuchsia, Haiku, Illumos.(#1867)
nix::ucontextmodule onaarch64-unknown-linux-gnu.(#1662)
CanRawtoSockProtocolandCanBcmas a separateSocProtocolconstant.(#1912)
GenericandNFLOGtoSockProtocol.(#2092)
mq_timedreceiveto::nix::mqueue.([#1966])(#1966)
LocalPeerPidtonix::sys::socket::sockoptfor macOS. (#1967)TFD_TIMER_CANCEL_ON_SETto::nix::sys::time::TimerSetTimeFlagson Linux and Android.(#2040)
SOF_TIMESTAMPING_OPT_IDandSOF_TIMESTAMPING_OPT_TSONLYtonix::sys::socket::TimestampingFlag.(#2048)
SO_SETFIBandSO_USER_COOKIEtonix::sys::socket::sockoptfor FreeBSD.(#2085)
SO_RTABLEfor OpenBSD andSO_ACCEPTFILTERfor FreeBSD/NetBSD tonix::sys::socket::sockopt.(#2085)
MSG_WAITFORONEtoMsgFlagson Android, Fuchsia, Linux, NetBSD,FreeBSD, OpenBSD, and Solaris.
(#2014)
SO_TS_CLOCKfor FreeBSD tonix::sys::socket::sockopt.(#2093)
(#1550)
nix::socketandnix::selectare now available on Redox.(#2012)
Configuration
📅 Schedule: (UTC)
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.
This PR was generated by Mend Renovate. View the repository job log.