From 277f199df4b819899f19911e0a18992e5cad6545 Mon Sep 17 00:00:00 2001 From: Emil Ernerfeldt Date: Fri, 19 Aug 2022 12:04:08 +0200 Subject: [PATCH] eframe: make sure we can serialize i128/u128 with ron Some eframe users may be relying on this. --- eframe/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eframe/Cargo.toml b/eframe/Cargo.toml index bbe1cc81..440248d1 100644 --- a/eframe/Cargo.toml +++ b/eframe/Cargo.toml @@ -74,7 +74,7 @@ document-features = { version = "0.2", optional = true } egui_glow = { version = "0.18.0", path = "../egui_glow", optional = true, default-features = false } egui-wgpu = { version = "0.18.0", path = "../egui-wgpu", optional = true, features = ["winit"] } glow = { version = "0.11", optional = true } -ron = { version = "0.8", optional = true } +ron = { version = "0.8", optional = true, features = ["integer128"] } serde = { version = "1", optional = true, features = ["derive"] } wgpu = { version = "0.13", optional = true }