-
Notifications
You must be signed in to change notification settings - Fork 211
build(vm): remove thiserror form deps #1279
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -18,6 +18,7 @@ std = [ | |
| "starknet-crypto/std", | ||
| "felt/std", | ||
| "dep:num-prime", | ||
| "thiserror-no-std/std", | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. All of this makes me wonder, do we actually use anything that requires the
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yes. The std version of thiserror generate the following line (which is not generated in no_std): impl std::error::Error for <MyErrorType> {}
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. In the future rust will move the |
||
| ] | ||
| cairo-1-hints = ["dep:cairo-lang-starknet", "dep:cairo-lang-casm", "dep:ark-ff", "dep:ark-std"] | ||
| lambdaworks-felt = [ | ||
|
|
@@ -53,7 +54,6 @@ generic-array = { workspace = true } | |
| keccak = { workspace = true } | ||
| hashbrown = { workspace = true } | ||
| anyhow = { workspace = true } | ||
| thiserror = { workspace = true } | ||
| thiserror-no-std = { workspace = true } | ||
|
|
||
| # only for std | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.