From 849870448069fa55b3cfb1ec9ffaa0c413ff7ea9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=90=D1=80=D1=82=D0=B5=D0=BC?= <_mag12@yahoo.com> Date: Fri, 24 Mar 2023 09:20:26 +0700 Subject: [PATCH] Fix https://github.com/servo/euclid/issues/500 --- Cargo.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 9b7d992..c65b6de 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,8 +1,8 @@ [package] name = "euclid" -version = "0.22.8" +version = "0.22.9" authors = ["The Servo Project Developers"] -edition = "2018" +edition = "2021" description = "Geometry primitives" documentation = "https://docs.rs/euclid/" repository = "https://github.com/servo/euclid" @@ -17,7 +17,7 @@ std = ["num-traits/std"] libm = ["num-traits/libm"] [dependencies] -num-traits = { version = "0.2.10", default-features = false } +num-traits = { version = "0.2.15", default-features = false } serde = { version = "1.0", default-features = false, features = ["serde_derive"], optional = true } mint = {version = "0.5.1", optional = true} arbitrary = { version = "1", optional = true, features = ["derive"] }