Skip to content

Commit

Permalink
fix(deps): update rust crate thiserror to v2
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Nov 11, 2024
1 parent 336ef5e commit 1719dd2
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion lang-cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ argh = "0.1"

serde_json = { version = "1.0", optional = true }
miette = { version = "4.7", features = ["fancy"] }
thiserror = "1.0"
thiserror = "2.0"

[features]
default = ["json"]
Expand Down
2 changes: 1 addition & 1 deletion lang-lexer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ categories = ["parser-implementations", "rendering"]
glsl-lang-types = "=0.7.1"
lang-util = { version = "=0.7.1", features = ["lalrpop"] }

thiserror = "1.0"
thiserror = "2.0"

rserde = { version = "1.0", optional = true, features = ["derive"], package = "serde" }

Expand Down
2 changes: 1 addition & 1 deletion lang-pp/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ build = "build.rs"
lang-util = "=0.7.1"

string_cache = "0.8"
thiserror = "1.0"
thiserror = "2.0"
arrayvec = "0.7"
derive_more = { version = "1.0", features = ["display"] }

Expand Down
2 changes: 1 addition & 1 deletion lang-types/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ categories = ["rendering"]

[dependencies]
lang-util = "=0.7.1"
thiserror = "1.0"
thiserror = "2.0"

rserde = { version = "1.0", optional = true, features = ["derive"], package = "serde" }

Expand Down
2 changes: 1 addition & 1 deletion lang/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ categories = ["parser-implementations", "rendering"]
[dependencies]
lalrpop-util = { version = "0.20.0", default-features = false, features = ["std"] }
once_cell = "1.17.1"
thiserror = "1.0"
thiserror = "2.0"

lang-util = { version = "=0.7.1", features = ["lalrpop"] }
glsl-lang-pp = { version = "=0.7.1", optional = true }
Expand Down

0 comments on commit 1719dd2

Please sign in to comment.