2020-05-30 10:37:15 -06:00
|
|
|
#![allow(incomplete_features)]
|
2021-06-14 18:46:02 -06:00
|
|
|
#![feature(inline_const)]
|
2020-05-30 10:37:15 -06:00
|
|
|
#![feature(drain_filter)]
|
2021-12-27 00:43:25 -07:00
|
|
|
#![feature(try_blocks)]
|
2022-08-02 00:08:55 -06:00
|
|
|
#![feature(once_cell)]
|
2022-10-18 04:46:21 -06:00
|
|
|
#![feature(test)]
|
2023-01-28 20:12:20 -07:00
|
|
|
#![feature(error_generic_member_access)]
|
|
|
|
#![feature(provide_any)]
|
2022-09-18 21:01:32 -06:00
|
|
|
|
2022-10-18 04:46:21 -06:00
|
|
|
extern crate test;
|
2020-05-30 10:37:15 -06:00
|
|
|
|
|
|
|
pub mod common;
|
|
|
|
pub mod entity;
|
|
|
|
pub mod patch;
|
|
|
|
pub mod login;
|
|
|
|
pub mod ship;
|