Skip to content

Commit 26c688d

Browse files
fix(deps): update rust crate thiserror to 1.0.50
1 parent ed5e070 commit 26c688d

File tree

7 files changed

+10
-10
lines changed

7 files changed

+10
-10
lines changed

Cargo.lock

+4-4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package/origlang-cli/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ edition = "2021"
99
clap = { version = "4.4.6", features = ["derive"] }
1010
env_logger = "0.10.0"
1111
log = "0.4.20"
12-
thiserror = "1.0.49"
12+
thiserror = "1.0.50"
1313
origlang-compiler = { path = "../origlang-compiler" }
1414
origlang-typesystem-model = { path = "../origlang-typesystem-model" }
1515
origlang-runtime = { path = "../origlang-runtime" }

package/origlang-compiler-entrypoint/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@ origlang-compiler = { path = "../origlang-compiler" }
1212
origlang-diagnostics = { path = "../origlang-diagnostics" }
1313
origlang-ir = { path = "../origlang-ir" }
1414
origlang-ir-optimizer = { path = "../origlang-ir-optimizer" }
15-
thiserror = { version = "1.0.49" }
15+
thiserror = { version = "1.0.50" }

package/origlang-compiler/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ origlang-ast = { path = "../origlang-ast" }
1010
origlang-typesystem-model = { path = "../origlang-typesystem-model" }
1111
derive_more = "0.99.17"
1212
log = "0.4.20"
13-
thiserror = "1.0.49"
13+
thiserror = "1.0.50"
1414
origlang-platform = { path = "../origlang-platform" }
1515
origlang-source-span = { path = "../origlang-source-span" }
1616
origlang-diagnostics = { path = "../origlang-diagnostics" }

package/origlang-interop/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@ origlang-ir = { path = "../origlang-ir" }
1818
js-sys = "0.3.64"
1919
console_error_panic_hook = "0.1.7"
2020
web-sys = { version = "0.3.64", features = ["console"] }
21-
thiserror = "1.0.49"
21+
thiserror = "1.0.50"

package/origlang-runtime/Cargo.toml

+1-1
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-
thiserror = "1.0.49"
9+
thiserror = "1.0.50"
1010
derivative = "2.2.0"
1111
derive_more = "0.99.17"
1212
log = "0.4.20"

package/origlang-testsuite/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ origlang-compiler = { version = "0.1.0", path = "../origlang-compiler" }
1313
origlang-ir = { version = "0.1.0", path = "../origlang-ir" }
1414
origlang-ir-optimizer = { version = "0.1.0", path = "../origlang-ir-optimizer" }
1515
origlang-runtime = { version = "0.1.0", path = "../origlang-runtime" }
16-
thiserror = "1.0.49"
16+
thiserror = "1.0.50"

0 commit comments

Comments
 (0)