diff options
| author | zy <[email protected]> | 2023-10-26 03:22:32 +0000 |
|---|---|---|
| committer | zy <[email protected]> | 2023-10-26 03:22:32 +0000 |
| commit | f06a49fcac21b5c124bd76873f0d86a921716aa1 (patch) | |
| tree | 37b1874b2d3d53758df03ee31ad70f6efd04b5d5 | |
| parent | 9ca7caa4bf91f87088d0e4093b267c6a5d818b1b (diff) | |
lib: add runtime , enable some feature
| -rw-r--r-- | src/lib.rs | 11 |
1 files changed, 8 insertions, 3 deletions
@@ -1,7 +1,12 @@ +#![feature(type_alias_impl_trait)] +#![feature(impl_trait_in_assoc_type)] +#![feature(return_position_impl_trait_in_trait)] + +pub mod event; pub mod packet; +pub mod plugin; pub mod protocol; -pub mod event; +pub mod runtime; pub mod session; -pub mod plugin; pub mod thread; -pub mod utils;
\ No newline at end of file +pub mod utils; |
