Skip to content

Commit 693a6fc

Browse files
build(deps): Bump quote from 1.0.41 to 1.0.42 (#760)
Bumps [quote](https://github.com/dtolnay/quote) from 1.0.41 to 1.0.42. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/dtolnay/quote/releases">quote's releases</a>.</em></p> <blockquote> <h2>1.0.42</h2> <ul> <li>Tweaks to improve build speed (<a href="https://redirect.github.com/dtolnay/quote/issues/305">#305</a>, <a href="https://redirect.github.com/dtolnay/quote/issues/306">#306</a>, <a href="https://redirect.github.com/dtolnay/quote/issues/307">#307</a>, <a href="https://redirect.github.com/dtolnay/quote/issues/308">#308</a>, thanks <a href="https://github.com/dishmaker"><code>@​dishmaker</code></a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/dtolnay/quote/commit/bb9e7a46b3105e11c73416bd59b4455a71068949"><code>bb9e7a4</code></a> Release 1.0.42</li> <li><a href="https://github.com/dtolnay/quote/commit/683c1d66024486f81bce49415cccf424b3a7cce8"><code>683c1d6</code></a> Merge pull request <a href="https://redirect.github.com/dtolnay/quote/issues/311">#311</a> from dtolnay/append</li> <li><a href="https://github.com/dtolnay/quote/commit/ed93e8e5ae08437cf49029266adb3c29e1174353"><code>ed93e8e</code></a> Revert PR 305</li> <li><a href="https://github.com/dtolnay/quote/commit/1f2a9592ea12cbf97ed0eac81c80bea66308ee80"><code>1f2a959</code></a> Merge pull request <a href="https://redirect.github.com/dtolnay/quote/issues/310">#310</a> from dtolnay/up</li> <li><a href="https://github.com/dtolnay/quote/commit/37448aa53275d6427e3ae509aee7ebe72d6fc925"><code>37448aa</code></a> Raise required compiler to Rust 1.68</li> <li><a href="https://github.com/dtolnay/quote/commit/39ac89ef78ceb0972be66587e80977e383ad4bb5"><code>39ac89e</code></a> Resolve manual_let_else pedantic clippy lint</li> <li><a href="https://github.com/dtolnay/quote/commit/f3eac361ed51045b6793dbf9f776849fa628711c"><code>f3eac36</code></a> Raise required compiler to Rust 1.65</li> <li><a href="https://github.com/dtolnay/quote/commit/7b490c568e5c5cd9bd75b6fd3c04fedb79304dc4"><code>7b490c5</code></a> Merge pull request <a href="https://redirect.github.com/dtolnay/quote/issues/309">#309</a> from dtolnay/append</li> <li><a href="https://github.com/dtolnay/quote/commit/71dfa847b8fa2e3e151bae023745f2443571726e"><code>71dfa84</code></a> Apply pattern from PR 306 to append_separated &amp; append_terminated</li> <li><a href="https://github.com/dtolnay/quote/commit/df32af77ccbb28b12efb2e9577c0348b1974b00d"><code>df32af7</code></a> Touch up PR 306</li> <li>Additional commits viewable in <a href="https://github.com/dtolnay/quote/compare/1.0.41...1.0.42">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=quote&package-manager=cargo&previous-version=1.0.41&new-version=1.0.42)](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 merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@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> Co-authored-by: Yota Toyama <raviqqe@gmail.com>
1 parent d23af6a commit 693a6fc

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

melior/src/ir/type/id.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,8 +83,8 @@ mod tests {
8383
#[test]
8484
#[should_panic]
8585
fn reject_invalid_alignment() {
86-
static VALUES: [u8; 2] = [1u8; 2];
86+
let values: (u32, u8) = Default::default();
8787

88-
TypeId::create(&VALUES[1]);
88+
TypeId::create(&values.1);
8989
}
9090
}

0 commit comments

Comments
 (0)