dependabot[bot] opened a new pull request, #10310:
URL: https://github.com/apache/arrow-rs/pull/10310

   Bumps the all-other-cargo-deps group with 2 updates in the / directory: 
[md5](https://github.com/stainless-steel/md5) and 
[regex](https://github.com/rust-lang/regex).
   
   Updates `md5` from 0.8.0 to 0.8.1
   <details>
   <summary>Commits</summary>
   <ul>
   <li>See full diff in <a 
href="https://github.com/stainless-steel/md5/commits";>compare view</a></li>
   </ul>
   </details>
   <br />
   
   Updates `regex` from 1.12.4 to 1.13.0
   <details>
   <summary>Changelog</summary>
   <p><em>Sourced from <a 
href="https://github.com/rust-lang/regex/blob/master/CHANGELOG.md";>regex's 
changelog</a>.</em></p>
   <blockquote>
   <h1>1.13.0 (2026-07-09)</h1>
   <p>This release includes a new API, a <code>regex!</code> macro, for lazy 
compilation of
   a regex from a string literal. If you use regexes a lot, it's likely you've
   already written one exactly like it. The new macro can be used like this:</p>
   <pre lang="rust"><code>use regex::regex;
   <p>fn is_match(line: &amp;str) -&gt; bool {<br />
   // The regex will be compiled approximately once and reused 
automatically.<br />
   // This avoids the footgun of using <code>Regex::new</code> here, which 
would<br />
   // guarantee that it would be compiled every time this routine is called.<br 
/>
   // This would likely make this routine much slower than it needs to be.<br />
   regex!(r&quot;bar|baz&quot;).is_match(line)<br />
   }</p>
   <p>let hay = &quot;<br />
   path/to/foo:54:Blue Harvest<br />
   path/to/bar:90:Something, Something, Something, Dark Side<br />
   path/to/baz:3:It's a Trap!<br />
   &quot;;</p>
   <p>let matches = hay.lines().filter(|line| is_match(line)).count();<br />
   assert_eq!(matches, 2);<br />
   </code></pre></p>
   <p>Improvements:</p>
   <ul>
   <li><a 
href="https://redirect.github.com/rust-lang/regex/issues/709";>#709</a>:
   Add a new <code>regex!</code> macro for efficient and automatic reuse of a 
compiled regex.</li>
   </ul>
   </blockquote>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a 
href="https://github.com/rust-lang/regex/commit/926af2e68eca3ce089815790541cf50759ba2c59";><code>926af2e</code></a>
 1.13.0</li>
   <li><a 
href="https://github.com/rust-lang/regex/commit/7d941a93561430cd259bb9ceb84cc66f33ae7be8";><code>7d941a9</code></a>
 regex-automata-0.4.15</li>
   <li><a 
href="https://github.com/rust-lang/regex/commit/e358341229ebd5feb9a78d8cc85b459c3c7b6600";><code>e358341</code></a>
 api: add <code>regex!</code> macro for lazy compilation</li>
   <li><a 
href="https://github.com/rust-lang/regex/commit/c42033379c8760105ef90287f319de73d1572242";><code>c420333</code></a>
 automata: disable miri on a couple doc tests</li>
   <li><a 
href="https://github.com/rust-lang/regex/commit/b9d2cf724f89754ea879b6c223d2292c4d3e2dd3";><code>b9d2cf7</code></a>
 github: add FUNDING link</li>
   <li><a 
href="https://github.com/rust-lang/regex/commit/0858006b1460ba781deda54b8d2b01b3f9f949f7";><code>0858006</code></a>
 docs: add AI policy for contributors</li>
   <li><a 
href="https://github.com/rust-lang/regex/commit/468fc64ecd6493caaca40dbe8319c31c5c08a83d";><code>468fc64</code></a>
 automata: reject dense DFA start states that are match states</li>
   <li>See full diff in <a 
href="https://github.com/rust-lang/regex/compare/1.12.4...1.13.0";>compare 
view</a></li>
   </ul>
   </details>
   <br />
   
   
   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 <dependency name> major version` will close this group 
update PR and stop Dependabot creating any more for the specific dependency's 
major version (unless you unignore this specific dependency's major version or 
upgrade to it yourself)
   - `@dependabot ignore <dependency name> minor version` will close this group 
update PR and stop Dependabot creating any more for the specific dependency's 
minor version (unless you unignore this specific dependency's minor version or 
upgrade to it yourself)
   - `@dependabot ignore <dependency name>` will close this group update PR and 
stop Dependabot creating any more for the specific dependency (unless you 
unignore this specific dependency or upgrade to it yourself)
   - `@dependabot unignore <dependency name>` will remove all of the ignore 
conditions of the specified dependency
   - `@dependabot unignore <dependency name> <ignore condition>` will remove 
the ignore condition of the specified dependency and ignore conditions
   
   
   </details>


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to