fuel_core_syscall/lib.rs
1//! The crate `fuel-core-syscall` contains the syscall handler and types for fuel-core.
2//! It also exposes supported syscall numbers and parameters as constants.
3
4#![cfg_attr(not(feature = "std"), no_std)]
5#![deny(clippy::arithmetic_side_effects)]
6#![deny(clippy::cast_possible_truncation)]
7#![deny(unused_crate_dependencies)]
8#![deny(missing_docs)]
9#![deny(warnings)]
10
11#[cfg(feature = "alloc")]
12extern crate alloc;
13
14/// Syscall handlers and types.
15pub mod handlers;