twenty-first 2.0.2

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

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

fn main() {}