craftql/
lib.rs

1#![warn(missing_debug_implementations, missing_docs, unreachable_pub)]
2#![deny(unsafe_code, nonstandard_style)]
3
4//! This library provides all the necessary methods and shared state for the craftql binary.
5//! Not meant to be used on its own! Primarily made for integration testing.
6
7/// Main onfiguration.
8pub mod config;
9/// Trait providing extension methods for graphql_parser::schema.
10pub mod extend_types;
11/// Global state.
12pub mod state;
13/// Utilities consumed by the binary.
14pub mod utils;