proof_of_sql/
lib.rs

1#![cfg_attr(test, expect(clippy::missing_panics_doc))]
2#![doc = include_str!("../README.md")]
3#![cfg_attr(not(feature = "std"), no_std)]
4
5extern crate alloc;
6
7pub mod base;
8pub mod proof_primitive;
9pub mod sql;
10/// Utilities for working with the library
11pub mod utils;