-
Notifications
You must be signed in to change notification settings - Fork 140
Closed
Labels
A-parseArea: Parsing TOMLArea: Parsing TOMLA-serdeArea: Serde integrationArea: Serde integrationC-bugCategory: Things not working as expectedCategory: Things not working as expected
Description
Past issue: toml-rs/toml-rs#256
u64 cannot be deserialized as it's backed by a i64 format
This causes this to fail:
let data = format!("id = {}", u64::MAX);
let val : toml::Value = toml::from_str(&data).unwrap();
println!("{:?}", val);And any number > i64::MAX will also fail.
AhmedSoliman, fred314159265, toolCHAINZ, zyy17 and stormshield-frb
Metadata
Metadata
Assignees
Labels
A-parseArea: Parsing TOMLArea: Parsing TOMLA-serdeArea: Serde integrationArea: Serde integrationC-bugCategory: Things not working as expectedCategory: Things not working as expected