fuel_core_client/lib.rs
1#![deny(clippy::arithmetic_side_effects)]
2#![deny(clippy::cast_possible_truncation)]
3#![deny(unused_crate_dependencies)]
4#![deny(warnings)]
5pub mod client;
6pub mod reqwest_ext;
7pub mod schema;
8
9/// The GraphQL schema used by the library.
10pub const SCHEMA_SDL: &[u8] = include_bytes!("../assets/schema.sdl");