vertx_rust/lib.rs
1#![feature(get_mut_unchecked)]
2#![feature(fn_traits)]
3#![feature(type_name_of_val)]
4#![feature(array_methods)]
5#![allow(non_upper_case_globals)]
6
7#[global_allocator]
8static GLOBAL: mimalloc_rust::GlobalMiMalloc = mimalloc_rust::GlobalMiMalloc;
9
10extern crate hypospray;
11#[macro_use]
12extern crate jvm_macro;
13extern crate jvm_serializable;
14#[macro_use]
15extern crate lazy_static;
16
17pub mod http;
18pub mod net;
19pub mod vertx;
20
21#[cfg(feature = "zk")]
22pub mod zk;