-
Notifications
You must be signed in to change notification settings - Fork 48
/
Copy pathmod.rs
48 lines (39 loc) · 1.18 KB
/
mod.rs
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
45
46
47
48
//! Support for external crates.
mod alloy_rlp;
mod arbitrary;
mod ark_ff;
mod ark_ff_04;
mod bn_rs;
mod fastrlp;
mod num_bigint;
pub mod postgres;
mod primitive_types;
mod proptest;
mod pyo3;
mod quickcheck;
mod rand;
mod rlp;
pub mod scale;
mod serde;
pub mod sqlx;
mod valuable;
mod zeroize;
// 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`.