Skip to content

Commit 1f6b254

Browse files
Update Rust crate error-stack to 0.3.1 (#2045)
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [error-stack](https://togithub.com/hashintel/hash) | dev-dependencies | patch | `0.3.0` -> `0.3.1` | | [error-stack](https://togithub.com/hashintel/hash) | dependencies | patch | `0.3.0` -> `0.3.1` | --- ### Release Notes <details> <summary>hashintel/hash</summary> ### [`v0.3.1`](https://togithub.com/hashintel/hash/blob/HEAD/libs/error-stack/CHANGELOG.md#&#8203;031-httpsgithubcomhashintelhashtreeerror-stack40031libserror-stack---2023-02-08) [Compare Source](https://togithub.com/hashintel/hash/compare/error-stack@0.3.0...error-stack@0.3.1) - Fix multiline attachments not being aligned ([#&#8203;2022](https://togithub.com/hashintel/hash/pull/2022)) </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about these updates again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://app.renovatebot.com/dashboard#github/hashintel/hash). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNC4xMjQuMiIsInVwZGF0ZWRJblZlciI6IjM0LjEyNC4yIn0=-->
1 parent 0eaf6bd commit 1f6b254

7 files changed

Lines changed: 7 additions & 7 deletions

File tree

apps/hash-graph/bin/cli/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ type-fetcher = { path = "../../lib/type-fetcher", optional = true }
1313
axum = "0.6.3"
1414
clap = { version = "4.1.4", features = ["cargo", "derive", "env", "wrap_help"] }
1515
clap_complete = "4.1.1"
16-
error-stack = { version = "0.3.0", features = ["spantrace"] }
16+
error-stack = { version = "0.3.1", features = ["spantrace"] }
1717
futures = { version = "0.3.25", optional = true }
1818
graph = { path = "../../lib/graph", features = ["clap"] }
1919
reqwest = { version = "0.11", default-features = false, features = ["rustls-tls"] }

apps/hash-graph/lib/graph/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ bb8-postgres = "0.8.1"
1414
clap = { version = "4.1.4", features = ["derive", "env"], optional = true }
1515
time = { version = "0.3.17", features = ['serde', 'serde-well-known'] }
1616
derivative = "2.2.0"
17-
error-stack = { version = "0.3.0", features = ["spantrace"] }
17+
error-stack = { version = "0.3.1", features = ["spantrace"] }
1818
futures = "0.3.25"
1919
hyper = "0.14.23"
2020
postgres-types = { version = "0.2.4", default-features = false, features = ["derive", "with-uuid-1", "with-serde_json-1", "with-time-0_3"] }

apps/hash-graph/lib/type-fetcher/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ publish = false
66
description = "RPC service definition to fetch external BP types"
77

88
[dependencies]
9-
error-stack = { version = "0.3.0", features = ["spantrace"] }
9+
error-stack = { version = "0.3.1", features = ["spantrace"] }
1010
type-system = { git = "https://github.com/blockprotocol/blockprotocol", rev = "2ea406f" }
1111

1212
serde = { version = "1.0.152", features = ["derive"] }

libs/deer/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ exclude = ["package.json"]
66
publish = false
77

88
[dependencies]
9-
error-stack = { version = "0.3.0", default_features = false }
9+
error-stack = { version = "0.3.1", default_features = false }
1010

1111
num-traits = { version = "0.2.15", default_features = false }
1212

libs/deer/desert/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ publish = false
99

1010
[dependencies]
1111
deer = { path = ".." }
12-
error-stack = { version = "0.3.0", default_features = false }
12+
error-stack = { version = "0.3.1", default_features = false }
1313
serde_json = { version = "1.0.91", default_features = false, features = ['alloc'] }
1414
serde = { version = "1.0.152", default_features = false, features = ['alloc'] }
1515
bitvec = { version = "1", default_features = false, features = ['alloc', 'atomic'] }

libs/deer/json/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ edition = "2021"
66
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
77

88
[dependencies]
9-
error-stack = { version = "0.3.0", default_features = false }
9+
error-stack = { version = "0.3.1", default_features = false }
1010

1111
serde_json = { version = "1.0.91", default_features = false, features = ['alloc'] }
1212

libs/error-stack/macros/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@ proc-macro = true
1818
[dependencies]
1919

2020
[dev-dependencies]
21-
error-stack = { version = "0.3.0", default-features = false }
21+
error-stack = { version = "0.3.1", default-features = false }

0 commit comments

Comments
 (0)