Zac Burns
Zac Burns
Dismayed by the licensing, I went ahead to build a replacement for the GPL licensed `eip-712` crate that is MIT licensed and is based on structs instead of JSON. It's...
I'm working on something similar here - [solidity-bindgen](https://github.com/graphprotocol/solidity-bindgen) It's not yet well documented, or in any sort of publishable state but you can do something like `solidity_bindgen::contract_abis!("../contracts/build/abis");` where the path...
I'm open to new APIs, but don't have much time for maintenance. Could you open a PR? Also, I wonder if it would be beneficial to export an intermediate value...
I don't have the skills to review this, being unfamiliar with CI. Not sure how to proceed.
I don't have the skills to review this, being unfamiliar with CI. Not sure how to proceed.
The arrays are concatenated for purposes of compression. There is a separate path for the length of the arrays to compress as well. So, imagine you have `[[0, 1, 2],...
Thanks for your contribution @danieleades. After two years of stagnation, I'm probably not going to take time to review this. Though it's absolutely no fault of your own, it's the...
@danieleades Thanks for understanding.
Of course as soon as I open an issue I find another way. Is this equivalent to the previous? ``` pub fn new_utf8_reader(data: &[u8]) -> impl Read + '_ {...
The `commit_thread` idea doesn't seem to work. Here's what I tried... ```rust let pool = rayon::ThreadPoolBuilder::new().exit_handler(|_| flame::commit_thread()).build().unwrap(); pool.install(|| { /* code which does rayon things */ }); drop(pool); flame::commit_thread(); flame::dump_html(&mut...