-
Notifications
You must be signed in to change notification settings - Fork 12
Update SimplicityHL to latest released version #57
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
Update SimplicityHL to latest released version #57
Conversation
`mod merkle` was removed in 24b11af but the file it refers to was left hanging around. This results in an unused code warning. With this change, I can run a clean cargo +nightly clippy --all-targets --workspace --all-features --all -- -D warnings
|
cc @canndrew @uncomputable (if you're around) |
Cargo.toml
Outdated
| itertools = "0.13.0" | ||
| #simplicityhl = "0.2.0" | ||
| simplicityhl = { package = "simfony", git = "https://github.com/BlockstreamResearch/simplicityhl", rev = "d5284014e9f67593e50b272f1f676ea8d09f6ec8" } | ||
| simplicityhl = { version = "0.3.0", path = "/home/apoelstra/code/BlockstreamResearch/SimplicityHL/master" } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This isn't compiling :)
| simplicityhl = { version = "0.3.0", path = "/home/apoelstra/code/BlockstreamResearch/SimplicityHL/master" } | |
| simplicityhl = { version = "0.3.0" } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
lol oops
95f10ae to
28e775f
Compare
These are stylistic things that have no effect and don't require moving whole blocks of code around.
This updates a couple APIs. Most notably it breaks our ability to read a value from the output frame of a jet in a reasonable-efficient way; however, it does give us the tools we need to just execute the jet in the bit machine.
28e775f to
66e1a6a
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ACK 66e1a6a; ran cargo test locally
|
I am no longer going to test the docs.rs deployment on this repo. rustc made an apparently-permanent breaking change in rust-lang/rust#138907 and now multiple dependencies do not build with the docsrs flags on. There are hundreds of linked issues to that one but nobody is budging. What a joke. In particular: |
apoelstra
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
On 66e1a6a successfully ran local tests
Should unblock #56
After this and #56 we should cut a new release and attempt to update the production site.