ralexstokes / ssz-rs

Implementation of ethereum's `ssz`
Apache License 2.0
102 stars 40 forks source link

Do we have any idea to achieve a `no-std` feature of ssz-rs? #24

Closed ashuralyk closed 1 year ago

ralexstokes commented 1 year ago

I think the main thing will be working around uses of types that allocate and rely on std features

I haven't looked myself but one way to start would be to just declare the crate no-std and see what the compiler doesn't like

ashuralyk commented 1 year ago

I think the main thing will be working around uses of types that allocate and rely on std features

I haven't looked myself but one way to start would be to just declare the crate no-std and see what the compiler doesn't like

I see

ralexstokes commented 1 year ago

25 sets out to handle this, will close this issue