fuel-core-syscall 0.48.1

Fuel core syscall support
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! The crate `fuel-core-syscall` contains the syscall handler and types for fuel-core.
//! It also exposes supported syscall numbers and parameters as constants.

#![cfg_attr(not(feature = "std"), no_std)]
#![deny(clippy::arithmetic_side_effects)]
#![deny(clippy::cast_possible_truncation)]
#![deny(unused_crate_dependencies)]
#![deny(missing_docs)]
#![deny(warnings)]

#[cfg(feature = "alloc")]
extern crate alloc;

/// Syscall handlers and types.
pub mod handlers;