twenty-first 2.0.0

Collection of mathematics routines and cryptography for the twenty-first century.
Documentation
1
2
3
4
5
6
7
8
9
use twenty_first::math::bfield_codec::BFieldCodec;

#[derive(BFieldCodec)]
struct MyStruct {
    #[bfield_codec(skip)]
    a: u32,
}

fn main() {}