aboutsummaryrefslogtreecommitdiffstats
path: root/crates/atuin-server-sqlite/src/lib.rs
diff options
context:
space:
mode:
authordependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>2026-03-02 18:21:15 +0100
committerGitHub <noreply@github.com>2026-03-02 18:21:15 +0100
commit0a8fb5f54c2dc9c45d8cc8195e8b2c15420b9525 (patch)
tree21f06ad6983fc00dd8e9eb461a52e739abec8523 /crates/atuin-server-sqlite/src/lib.rs
parentchore(deps): bump dashmap from 5.5.3 to 6.1.0 (#3221) (diff)
downloadatuin-0a8fb5f54c2dc9c45d8cc8195e8b2c15420b9525.zip
chore(deps): bump rustix from 0.38.44 to 1.1.4 (#3220)
Bumps [rustix](https://github.com/bytecodealliance/rustix) from 0.38.44 to 1.1.4. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/bytecodealliance/rustix/releases">rustix's releases</a>.</em></p> <blockquote> <h2>1.0.0</h2> <p>This release introduces the <a href="https://docs.rs/rustix/1.0.0/rustix/buffer/trait.Buffer.html"><code>Buffer</code> trait</a>, which is used in <a href="https://docs.rs/rustix/1.0.0/rustix/io/fn.read.html"><code>read</code></a>, <a href="https://docs.rs/rustix/1.0.0/rustix/io/fn.pread.html"><code>pread</code></a>, <a href="https://docs.rs/rustix/1.0.0/rustix/net/fn.recv.html"><code>recv</code></a>, <a href="https://docs.rs/rustix/1.0.0/rustix/net/fn.recvfrom.html"><code>recvfrom</code></a>, <a href="https://docs.rs/rustix/1.0.0/rustix/rand/fn.getrandom.html"><code>getrandom</code></a>, <a href="https://docs.rs/rustix/1.0.0/rustix/fs/fn.readlinkat_raw.html"><code>readlinkat_raw</code></a>, <a href="https://docs.rs/rustix/1.0.0/rustix/event/epoll/fn.wait.html"><code>epoll::wait</code></a>, <a href="https://docs.rs/rustix/1.0.0/x86_64-unknown-freebsd/rustix/event/kqueue/fn.kevent.html"><code>kevent</code></a>, <a href="https://docs.rs/rustix/1.0.0/x86_64-unknown-illumos/rustix/event/port/fn.getn.html"><code>port::getn</code></a>, <a href="https://docs.rs/rustix/1.0.0/rustix/fs/fn.getxattr.html"><code>getxattr</code></a>, <a href="https://docs.rs/rustix/1.0.0/rustix/fs/fn.lgetxattr.html"><code>lgetxattr</code></a>, <a href="https://docs.rs/rustix/1.0.0/rustix/fs/fn.fgetxattr.html"><code>fgetxattr</code></a>, <a href="https://docs.rs/rustix/1.0.0/rustix/fs/fn.listxattr.html"><code>listxattr</code></a>, <a href="https://docs.rs/rustix/1.0.0/rustix/fs/fn.llistxattr.html"><code>llistxattr</code></a>, and <a href="https://docs.rs/rustix/1.0.0/rustix/fs/fn.flistxattr.html"><code>flistxattr</code></a>, and adds support for reading data into uninitialized buffers, as well as safely reading data into the spare capacity of <code>Vec</code>s.</p> <p>This release also simplifies the way network addresses are handled. Instead of having separate functions with <code>_v4</code>, <code>_v6</code>, <code>_unix</code>, <code>_xdp</code>, and now <code>_netlink</code> suffixes, rustix now uses a <a href="https://docs.rs/rustix/1.0.0/rustix/net/trait.SocketAddrArg.html"><code>SocketAddrArg</code> trait</a> so that functions such as <a href="https://docs.rs/rustix/1.0.0/rustix/net/fn.bind.html"><code>bind</code></a>, <a href="https://docs.rs/rustix/1.0.0/rustix/net/fn.connect.html"><code>connect</code></a>, <a href="https://docs.rs/rustix/1.0.0/rustix/net/fn.sendto.html"><code>sendto</code></a>, and <a href="https://docs.rs/rustix/1.0.0/rustix/net/fn.sendmsg_addr.html"><code>sendmsg_addr</code></a> can accept any type of address, and are easier to extend to new address types in the future.</p> <p>And, this release simplifies the <code>ioctl</code> API, replacing opcode wrapper types with const generics.</p> <p>This updates several APIs to add Linux 6.13 features, and raw linux-raw-sys types are no longer exposed in the public API, so it should be easier to stay up to date with new Linux releases.</p> <p>And many more new features, bug fixes, and cleanups. See the <a href="https://github.com/bytecodealliance/rustix/blob/main/CHANGES.md#changes-from-038x-to-1x">CHANGES.md file</a> for the full list of breaking changes.</p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/bytecodealliance/rustix/commit/c4caf5caaa7e93828a2e4a4cdba1dd0171e45717"><code>c4caf5c</code></a> chore: Release rustix version 1.1.4</li> <li><a href="https://github.com/bytecodealliance/rustix/commit/5953a2c6bc7bc97c308a8e6a0fd4a8bf79997117"><code>5953a2c</code></a> Prune pins in CI that are no longer needed. (<a href="https://redirect.github.com/bytecodealliance/rustix/issues/1588">#1588</a>)</li> <li><a href="https://github.com/bytecodealliance/rustix/commit/9116c05d2eab3484748a629e72bdff17117c4f5b"><code>9116c05</code></a> Bump dependencies (<a href="https://redirect.github.com/bytecodealliance/rustix/issues/1567">#1567</a>)</li> <li><a href="https://github.com/bytecodealliance/rustix/commit/5ee0ca360f41b3699b7c543d1153e94c65988610"><code>5ee0ca3</code></a> hurd: Fix l_type and l_whence types (<a href="https://redirect.github.com/bytecodealliance/rustix/issues/1569">#1569</a>)</li> <li><a href="https://github.com/bytecodealliance/rustix/commit/89505893fc3b4b9b9a22625cd3a670f6d6cf2f44"><code>8950589</code></a> Clobber vector registers and do not use preserves_flags in riscv64 syscalls (...</li> <li><a href="https://github.com/bytecodealliance/rustix/commit/7b0d2ae013976c959627598c057644ae8922708e"><code>7b0d2ae</code></a> Update pins for MSRV compatibility (<a href="https://redirect.github.com/bytecodealliance/rustix/issues/1585">#1585</a>)</li> <li><a href="https://github.com/bytecodealliance/rustix/commit/99458d830840dafb8a8c5b8b54cf05beabc2e581"><code>99458d8</code></a> feat(redox): <code>renameat</code> and <code>renameat_with</code> (<a href="https://redirect.github.com/bytecodealliance/rustix/issues/1586">#1586</a>)</li> <li><a href="https://github.com/bytecodealliance/rustix/commit/a9c8dcbbb74df7a7c4ec6cf50629a810bab6500d"><code>a9c8dcb</code></a> Remove reference to yanked crate in README.md (<a href="https://redirect.github.com/bytecodealliance/rustix/issues/1587">#1587</a>)</li> <li><a href="https://github.com/bytecodealliance/rustix/commit/8bf15a0eb444087e4c3ed04e01ed488cc429af2d"><code>8bf15a0</code></a> Drop custom makedev implementation for Redox (<a href="https://redirect.github.com/bytecodealliance/rustix/issues/1582">#1582</a>)</li> <li><a href="https://github.com/bytecodealliance/rustix/commit/74b886d40d7b5209a8d448550e4595e8e06158a1"><code>74b886d</code></a> Update pins for MSRV compatibility (<a href="https://redirect.github.com/bytecodealliance/rustix/issues/1584">#1584</a>)</li> <li>Additional commits viewable in <a href="https://github.com/bytecodealliance/rustix/compare/v0.38.44...v1.1.4">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=rustix&package-manager=cargo&previous-version=0.38.44&new-version=1.1.4)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Diffstat (limited to 'crates/atuin-server-sqlite/src/lib.rs')
0 files changed, 0 insertions, 0 deletions