Skip to content

Commit

Permalink
chore: Test using miette with thiserror 2
Browse files Browse the repository at this point in the history
  • Loading branch information
PhilippGackstatter committed Nov 29, 2024
1 parent 08556cb commit 34fc6a6
Show file tree
Hide file tree
Showing 3 changed files with 54 additions and 66 deletions.
106 changes: 42 additions & 64 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 6 additions & 1 deletion assembly/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,12 @@ testing = ["dep:regex"]
[dependencies]
aho-corasick = { version = "1.1", default-features = false }
lalrpop-util = { version = "0.20", default-features = false }
miette = { package = "miden-miette", version = "7.1", default-features = false, features = [
# miette = { path = "../../miden-miette/", version = "7.1", default-features = false, features = [
# "fancy-no-syscall",
# "derive"
# ] }
# TODO: Temporary change to test updated miden-miette.
miette = { version = "7.1", git = "https://github.com/0xPolygonMiden/miette", branch = "pgackst-thiserror-2", default-features = false,features = [
"fancy-no-syscall",
"derive"
] }
Expand Down
7 changes: 6 additions & 1 deletion core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,12 @@ math = { package = "winter-math", version = "0.11", default-features = false }
memchr = { version = "2.7", default-features = false }
miden-crypto = { version = "0.13", default-features = false }
miden-formatting = { version = "0.1", default-features = false }
miette = { package = "miden-miette", version = "7.1", default-features = false, optional = true, features = [
# miette = { path = "../miden-miette/", version = "7.1", default-features = false, optional = true, features = [
# "fancy-no-syscall",
# "derive"
# ] }
# TODO: Temporary change to test updated miden-miette.
miette = { version = "7.1", git = "https://github.com/0xPolygonMiden/miette", branch = "pgackst-thiserror-2", default-features = false, optional = true, features = [
"fancy-no-syscall",
"derive"
] }
Expand Down

0 comments on commit 34fc6a6

Please sign in to comment.