Repo of no-std crates for my personal embedded projects

Add missing int types

+2
+2
sachy-config/src/lib.rs
··· 89 89 "i64" => validate_kind_to_string::<i64>(name, kind, value)?, 90 90 "u128" => validate_kind_to_string::<u128>(name, kind, value)?, 91 91 "i128" => validate_kind_to_string::<i128>(name, kind, value)?, 92 + "usize" => validate_kind_to_string::<usize>(name, kind, value)?, 93 + "isize" => validate_kind_to_string::<isize>(name, kind, value)?, 92 94 "f32" => validate_kind_to_string::<f32>(name, kind, value)?, 93 95 "f64" => validate_kind_to_string::<f64>(name, kind, value)?, 94 96 "&str" => bail!("{} is a {}, use [statics] for these", name, kind),