Zac Burns
Zac Burns
I came back to this to try and optimize [stable-hash](https://github.com/graphprotocol/stable-hash) which does a multiply of a large number and there seem to be at least two issues here. One is...
And a third issue... This panics the compiler. ```rust construct_uint! { pub struct U1088(17); } ``` With this panic: ``` Checking u4160 v0.1.0 (/Users/zacharyburns/Documents/git/the-graph/u4160) thread 'rustc' panicked at 'assertion failed:...
In the same vein, I'd like to see a version of `copy_to` for typed arrays that can take a `&mut MaybeUninit`. Right now the only way to access the memory...
Oops, I think I meant `&mut [MaybeUninit]`, sorry.
@ibaryshnikov > Do you mean you want to be able to pass the uninitialized `MaybeUninit` to the `copy_to_xxx` and let it deal with the allocation? `MaybeUninit` deals with memory that...
@lshlyapnikov I just took a look at #1855 . I think that what you built there is a decent step toward a more performant version of the existing `to_vec` method....
@danieleades If I'm being realistic I'd sadly have to report that I've abandoned this library for the foreseeable future. My present role as Principal System Architect at Edge & Node...
@danieleades Just to make sure there is no lingering false advertising, I verified that the status of this library is still set to `experimental` https://github.com/That3Percent/tree-buf/blob/master/tree-buf/Cargo.toml#L13
@azf20 @mangas I previously advised holding off merging, but I don't think there is any stability around what changes we may like to make, and there are perhaps other changes...
There is a separate crate which may fit the bill here: [eip-712](https://crates.io/crates/eip-712)