tangled
alpha
login
or
join now
sachy.dev
/
sachy-embed-core
0
fork
atom
Repo of no-std crates for my personal embedded projects
0
fork
atom
overview
issues
pulls
pipelines
Add missing int types
sachy.dev
1 month ago
c089bc6b
3456a20b
2/2
miri.yml
success
1m 16s
test.yml
success
59s
+2
1 changed file
expand all
collapse all
unified
split
sachy-config
src
lib.rs
+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
92
+
"usize" => validate_kind_to_string::<usize>(name, kind, value)?,
93
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),