1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
// FEATURE: Support for many more traits and crates.
// * https://crates.io/crates/num-traits
// * https://crates.io/crates/der
// * https://crates.io/crates/bitvec
// * open-fastrlp
// * https://docs.rs/bytemuck/1.9.1/bytemuck/trait.Zeroable.html
// * https://docs.rs/bytemuck/1.9.1/bytemuck/trait.Pod.html
// Big int types:
// * https://crates.io/crates/crypto-bigint
// * https://crates.io/crates/rug
// * https://crates.io/crates/bigdecimal
// * https://crates.io/crates/rust_decimal
// * wasm-bindgen `JsValue` bigint: https://docs.rs/wasm-bindgen/latest/wasm_bindgen/struct.JsValue.html#method.bigint_from_str
// or from_f64.
// * Neon `JsBigInt` once it lands: https://github.com/neon-bindings/neon/pull/861
// More databases:
// * https://crates.io/crates/diesel
// FEATURE: Make sure `Bits` has the same level of support.
// TODO: Add more support for `Bits`, for example `rand` and `quickcheck`.