-
Notifications
You must be signed in to change notification settings - Fork 44
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
Create benchmarks for proof generation and verification #162
base: main
Are you sure you want to change the base?
Conversation
i'm getting warnings about code unrelated to the PR which is making the build check not pass. Should i fix these warnings? |
looks like the issue is directly related to this PR error[E0554]: `#![feature]` may not be used on the stable release channel
--> ssz-rs/src/lib.rs:86:12
|
86 | #![feature(test)]
| ^^^^
For more information about this error, try `rustc --explain E0554`. and it seems like the issue is that the "native" rustc support for benchmarks is not on a stable version of the compiler yet it looks like a common alternative is I think it will also be nicer if we have the benchmarks collected outside of the |
This was what i was referring to:
|
…nchmarking framework
I see a different error, need to update the MSRV |
Addresses issue #160