18 lines
346 B
Rust
18 lines
346 B
Rust
#![allow(clippy::type_complexity)]
|
|
#![allow(incomplete_features)]
|
|
#![feature(inline_const)]
|
|
#![feature(drain_filter)]
|
|
#![feature(try_blocks)]
|
|
#![feature(once_cell)]
|
|
#![feature(test)]
|
|
#![feature(error_generic_member_access)]
|
|
#![feature(provide_any)]
|
|
|
|
extern crate test;
|
|
|
|
pub mod common;
|
|
pub mod entity;
|
|
pub mod patch;
|
|
pub mod login;
|
|
pub mod ship;
|