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 schema;
7
8/// The GraphQL schema used by the library.
9pub const SCHEMA_SDL: &[u8] = include_bytes!("../assets/schema.sdl");