proof_of_sql/base/
mod.rs

1//! This module contains basic shared functionalities of the library.
2/// TODO: add docs
3#[cfg(feature = "arrow")]
4pub mod arrow;
5
6pub(crate) mod bit;
7pub mod commitment;
8pub mod database;
9/// TODO: add docs
10pub(crate) mod encode;
11pub mod math;
12/// TODO: add docs
13pub(crate) mod polynomial;
14/// Module for Proof of SQL datetime types.
15pub mod posql_time;
16pub(crate) mod proof;
17pub use proof::{PlaceholderError, PlaceholderResult};
18pub(crate) mod ref_into;
19/// This module contains the `Scalar` trait as well as the main, generic, implementations of it.
20pub mod scalar;
21mod serialize;
22pub(crate) use serialize::{impl_serde_for_ark_serde_checked, impl_serde_for_ark_serde_unchecked};
23pub(crate) mod map;
24pub(crate) mod slice_ops;
25
26mod rayon_cfg;
27pub(crate) use rayon_cfg::if_rayon;