dharitri_sc_wasm_adapter/
lib.rs

1#![no_std]
2#![allow(unknown_lints)]
3
4// Allows us to use alloc::vec::Vec;
5// TODO: get rid of the legacy API and also of this.
6extern crate alloc;
7
8pub use dharitri_sc;
9
10pub mod api;
11pub mod error_hook;
12pub mod panic;
13pub mod wasm_alloc;
14mod wasm_macros;