elseware/src/lib.rs

17 lines
321 B
Rust
Raw Normal View History

2023-01-30 18:05:36 -07:00
#![allow(clippy::type_complexity)]
2020-05-30 10:37:15 -06:00
#![allow(incomplete_features)]
2021-06-14 18:46:02 -06:00
#![feature(inline_const)]
2023-11-10 13:35:16 -07:00
#![feature(extract_if)]
2021-12-27 00:43:25 -07:00
#![feature(try_blocks)]
2022-10-18 04:46:21 -06:00
#![feature(test)]
2023-01-28 20:12:20 -07:00
#![feature(error_generic_member_access)]
2023-11-10 13:35:16 -07:00
#![feature(lazy_cell)]
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;
2020-05-30 10:37:15 -06:00
pub mod patch;
pub mod login;
pub mod ship;