fuel_core_client/
lib.rs

1
2
3
4
5
6
7
8
9
#![deny(clippy::arithmetic_side_effects)]
#![deny(clippy::cast_possible_truncation)]
#![deny(unused_crate_dependencies)]
#![deny(warnings)]
pub mod client;
pub mod schema;

/// The GraphQL schema used by the library.
pub const SCHEMA_SDL: &[u8] = include_bytes!("../assets/schema.sdl");