Stable features only

This commit is contained in:
August 2026-05-06 19:30:50 -04:00
parent a2b0e2e8a8
commit dbd4886a4f
Signed by: shibedrill
SSH Key Fingerprint: SHA256:M0m3JW1s38BgO2t0fG146Yxd9OJ2IOqkvCAsuRHQ6Pw
2 changed files with 1 additions and 1 deletions

View File

@ -25,6 +25,7 @@ pub fn build_handlers(conf: Config) -> Vec<Box<dyn ServerInfo>> {
assert_eq!(conf.version, "0.1.0");
let mut results: Vec<Box<dyn ServerInfo>> = vec![];
for item in conf.entries {
#[allow(clippy::single_match)]
match item.handler_type.as_str() {
"minecraft" => results.push(Box::new(handlers::minecraft::Server::new(
item.token,

View File

@ -1,4 +1,3 @@
#![feature(impl_trait_in_bindings)]
mod bot_runner;
mod config_parser;
mod handlers;