Various pre-release cosmetic fixes

This commit is contained in:
2026-05-21 21:21:32 +03:00
parent cb0abb3e3b
commit f817c7b93e
8 changed files with 373 additions and 38 deletions

View File

@@ -12,6 +12,7 @@
pub mod l01_minimum;
pub mod l02_kv;
pub mod l03_dict;
use serde::{Deserialize, Serialize};
@@ -81,5 +82,6 @@ pub fn registry() -> Vec<Box<dyn Level>> {
vec![
Box::new(l01_minimum::Minimum),
Box::new(l02_kv::KeyValue),
Box::new(l03_dict::Dict),
]
}