You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Serde conditionally supports 128-bit integers. Here's the relevant snippet from serde's build.rs:
// 128-bit integers stabilized in Rust 1.26:
// https://blog.rust-lang.org/2018/05/10/Rust-1.26.html
//
// Disabled on Emscripten targets as Emscripten doesn't
// currently support integers larger than 64 bits.
if minor >= 26 && !emscripten {
println!("cargo:rustc-cfg=integer128");
}
If we add the obvious implementations to de.rs and ser.rs then it works.
The text was updated successfully, but these errors were encountered:
Serde conditionally supports 128-bit integers. Here's the relevant snippet from serde's build.rs:
If we add the obvious implementations to
de.rs
andser.rs
then it works.The text was updated successfully, but these errors were encountered: