ruint/support/
mod.rs

1//! Support for external crates.
2
3#![allow(missing_docs, clippy::missing_inline_in_public_items)]
4
5mod alloy_rlp;
6mod arbitrary;
7mod ark_ff;
8mod ark_ff_04;
9mod bigdecimal;
10mod bn_rs;
11mod borsh;
12mod bytemuck;
13mod der;
14pub mod diesel;
15mod fastrlp_03;
16mod fastrlp_04;
17mod num_bigint;
18mod num_integer;
19mod num_traits;
20pub mod postgres;
21mod primitive_types;
22mod proptest;
23mod pyo3;
24mod quickcheck;
25mod rand;
26mod rand_09;
27pub mod rkyv;
28mod rlp;
29pub mod scale;
30mod serde;
31pub mod sqlx;
32pub mod ssz;
33mod subtle;
34mod valuable;
35mod zeroize;
36
37// FEATURE: Support for many more traits and crates.
38// * https://crates.io/crates/der
39// * https://crates.io/crates/bitvec
40
41// * open-fastrlp
42
43// Big int types:
44// * https://crates.io/crates/crypto-bigint
45// * https://crates.io/crates/rug
46// * https://crates.io/crates/rust_decimal
47
48// * wasm-bindgen `JsValue` bigint: https://docs.rs/wasm-bindgen/latest/wasm_bindgen/struct.JsValue.html#method.bigint_from_str
49//   or from_f64.
50// * Neon `JsBigInt` once it lands: https://github.com/neon-bindings/neon/pull/861