Skip to content

Commit 7886fce

Browse files
Merge #116 #118
116: Bump anyhow from 1.0.23 to 1.0.25 r=MikailBag a=dependabot-preview[bot] Bumps [anyhow](https://github.com/dtolnay/anyhow) from 1.0.23 to 1.0.25. <details> <summary>Release notes</summary> *Sourced from [anyhow's releases](https://github.com/dtolnay/anyhow/releases).* > ## 1.0.25 > - Add no-std support ([#53](https://github-redirect.dependabot.com/dtolnay/anyhow/issues/53)) > > In no_std mode, the same API is almost all available and works the same way. To depend on Anyhow in no_std mode, disable our default enabled "std" feature in Cargo.toml. A global allocator is required. > > ```toml > [dependencies] > anyhow = { version = "1.0", default-features = false } > ``` > > Since the `?`-based error conversions would normally rely on the `std::error::Error` trait which is only available through std, no_std mode will require an explicit `.map_err(Error::msg)` when working with a non-Anyhow error type inside a function that returns Anyhow's error type. > > ## 1.0.24 > - Preserve cause chain when converting from Box\<dyn StdError + Send + Sync\> to anyhow::Error ([#50](https://github-redirect.dependabot.com/dtolnay/anyhow/issues/50)) > - Work around bug in NixOS package infrastructure ([#49](https://github-redirect.dependabot.com/dtolnay/anyhow/issues/49)) </details> <details> <summary>Commits</summary> - [`3cd0fcb`](dtolnay/anyhow@3cd0fcb) Release 1.0.25 - [`55343b9`](dtolnay/anyhow@55343b9) Merge pull request [#53](https://github-redirect.dependabot.com/dtolnay/anyhow/issues/53) from dtolnay/nostd - [`10156dd`](dtolnay/anyhow@10156dd) Require minimum rustc 1.36 to use alloc - [`3f134b2`](dtolnay/anyhow@3f134b2) Test no-std support in CI - [`9d944e6`](dtolnay/anyhow@9d944e6) Document no-std support - [`60c88bc`](dtolnay/anyhow@60c88bc) Expose reduced API in no_std mode - [`bacf886`](dtolnay/anyhow@bacf886) Import from core where possible - [`e48b330`](dtolnay/anyhow@e48b330) Merge pull request [#52](https://github-redirect.dependabot.com/dtolnay/anyhow/issues/52) from dtolnay/quoted - [`2e711d6`](dtolnay/anyhow@2e711d6) Remove std dependency from context's Debug impl - [`4f123ae`](dtolnay/anyhow@4f123ae) Remove need for allow(unused_imports) - Additional commits viewable in [compare view](dtolnay/anyhow@1.0.23...1.0.25) </details> <br /> [![Dependabot compatibility score](https://api.dependabot.com/badges/compatibility_score?dependency-name=anyhow&package-manager=cargo&previous-version=1.0.23&new-version=1.0.25)](https://dependabot.com/compatibility-score.html?dependency-name=anyhow&package-manager=cargo&previous-version=1.0.23&new-version=1.0.25) 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) --- **Note:** This repo was added to Dependabot recently, so you'll receive a maximum of 5 PRs for your first few update runs. Once an update run creates fewer than 5 PRs we'll remove that limit. You can always request more updates by clicking `Bump now` in your [Dependabot dashboard](https://app.dependabot.com). <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 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) - `@dependabot use these labels` will set the current labels as the default for future PRs for this repo and language - `@dependabot use these reviewers` will set the current reviewers as the default for future PRs for this repo and language - `@dependabot use these assignees` will set the current assignees as the default for future PRs for this repo and language - `@dependabot use this milestone` will set the current milestone as the default for future PRs for this repo and language - `@dependabot badge me` will comment on this PR with code to add a "Dependabot enabled" badge to your readme Additionally, you can set the following in your Dependabot [dashboard](https://app.dependabot.com): - Update frequency (including time of day and day of week) - Pull request limits (per update run and/or open at any time) - Out-of-range updates (receive only lockfile updates, if desired) - Security updates (receive only security updates, if desired) </details> 118: Bump syn from 1.0.8 to 1.0.11 r=MikailBag a=dependabot-preview[bot] Bumps [syn](https://github.com/dtolnay/syn) from 1.0.8 to 1.0.11. <details> <summary>Release notes</summary> *Sourced from [syn's releases](https://github.com/dtolnay/syn/releases).* > ## 1.0.9 > - Fix failure to parse tuple struct fields of tuple type starting with `crate` ([#720](https://github-redirect.dependabot.com/dtolnay/syn/issues/720), [#723](https://github-redirect.dependabot.com/dtolnay/syn/issues/723), thanks [@&#8203;mystor](https://github.com/mystor)) > - Fix unexpected tokens being ignored when using Speculative::advance_to ([#721](https://github-redirect.dependabot.com/dtolnay/syn/issues/721), [#723](https://github-redirect.dependabot.com/dtolnay/syn/issues/723), thanks [@&#8203;mystor](https://github.com/mystor)) </details> <details> <summary>Commits</summary> - [`e962586`](dtolnay/syn@e962586) Release 1.0.11 - [`b5e20c5`](dtolnay/syn@b5e20c5) Merge pull request [#725](https://github-redirect.dependabot.com/dtolnay/syn/issues/725) from dtolnay/fragment - [`ac2284a`](dtolnay/syn@ac2284a) Avoid dead_code lint on Reserved::private field - [`f9543d2`](dtolnay/syn@f9543d2) Implement quote::IdentFragment for Member and Index - [`854bf2b`](dtolnay/syn@854bf2b) Release 1.0.10 - [`01764f7`](dtolnay/syn@01764f7) Reenable the codegen build in CI - [`5a990fb`](dtolnay/syn@5a990fb) Use convenient std::fs functions - [`3512e13`](dtolnay/syn@3512e13) Parse manual_extra_traits on ast_enum in code generator - [`87e995d`](dtolnay/syn@87e995d) Print line/column for codegen parse errors - [`2e16ee3`](dtolnay/syn@2e16ee3) Print file path of codegen parse errors - Additional commits viewable in [compare view](dtolnay/syn@1.0.8...1.0.11) </details> <br /> [![Dependabot compatibility score](https://api.dependabot.com/badges/compatibility_score?dependency-name=syn&package-manager=cargo&previous-version=1.0.8&new-version=1.0.11)](https://dependabot.com/compatibility-score.html?dependency-name=syn&package-manager=cargo&previous-version=1.0.8&new-version=1.0.11) 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) --- **Note:** This repo was added to Dependabot recently, so you'll receive a maximum of 5 PRs for your first few update runs. Once an update run creates fewer than 5 PRs we'll remove that limit. You can always request more updates by clicking `Bump now` in your [Dependabot dashboard](https://app.dependabot.com). <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 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) - `@dependabot use these labels` will set the current labels as the default for future PRs for this repo and language - `@dependabot use these reviewers` will set the current reviewers as the default for future PRs for this repo and language - `@dependabot use these assignees` will set the current assignees as the default for future PRs for this repo and language - `@dependabot use this milestone` will set the current milestone as the default for future PRs for this repo and language - `@dependabot badge me` will comment on this PR with code to add a "Dependabot enabled" badge to your readme Additionally, you can set the following in your Dependabot [dashboard](https://app.dependabot.com): - Update frequency (including time of day and day of week) - Pull request limits (per update run and/or open at any time) - Out-of-range updates (receive only lockfile updates, if desired) - Security updates (receive only security updates, if desired) </details> Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com>
3 parents 6ce3f23 + 5d8201e + bd6b680 commit 7886fce

File tree

7 files changed

+30
-30
lines changed

7 files changed

+30
-30
lines changed

Cargo.lock

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

src/db/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ uuid = { version = "0.7.4", features = ["serde", "v4"] }
1111
r2d2 = "0.8.7"
1212
invoker-api = {path = "../invoker-api"}
1313
bincode = "1.2.0"
14-
anyhow = "1.0.23"
14+
anyhow = "1.0.25"

src/frontend-api-derive/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@ proc-macro = true
99

1010
[dependencies]
1111
quote = "1.0.2"
12-
syn = "1.0.8"
12+
syn = "1.0.11"
1313
proc-macro2 = "1.0.6"

src/frontend-engine/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ snafu = "0.6.0"
2727
ranker = {path = "../ranker"}
2828
util = {path = "../util"}
2929
slog-scope = "4.3.0"
30-
anyhow = "1.0.23"
30+
anyhow = "1.0.25"
3131
invoker-api = {path = "../invoker-api"}
3232
rocket_contrib = "0.4.2"
3333
my_internet_ip = "0.1.1"

src/invoker/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ base64 = "0.11.0"
3333
bitflags = "1.2.1"
3434
util = {path = "../util"}
3535
slog-scope = "4.3.0"
36-
anyhow = "1.0.23"
36+
anyhow = "1.0.25"
3737
thiserror = "1.0.6"
3838
reqwest = "0.9.22"
3939

src/setup/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@ structopt = "0.3.5"
1414
util = {path = "../util"}
1515
log = "0.4.8"
1616
url = "2.1.0"
17-
anyhow = "1.0.23"
17+
anyhow = "1.0.25"

src/soft/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ edition = "2018"
88
structopt = "0.3.5"
99
serde_json = "1.0.42"
1010
serde = { version = "1.0.103", features = ["derive"] }
11-
anyhow = "1.0.23"
11+
anyhow = "1.0.25"
1212
util = {path = "../util"}
1313
toml = "0.5.5"
1414
copy-ln = { git = "https://github.com/mikailbag/copy-ln", branch = "master" }

0 commit comments

Comments
 (0)