1
0
mirror of https://github.com/emilk/egui.git synced 2026-09-01 14:20:04 -04:00

Disable default features of ord-float (#440)

* Might fix #439

* `cargo update`

If the page builds, then this did fix it.
This commit is contained in:
Violeta Hernández
2021-05-27 13:25:30 -05:00
committed by GitHub
parent 3b807e1ad6
commit 66095b69a7
2 changed files with 63 additions and 45 deletions

View File

@@ -27,7 +27,7 @@ emath = { version = "0.12.0", path = "../emath" }
ahash = { version = "0.7", features = ["std"], default-features = false }
atomic_refcell = { version = "0.1", optional = true } # Used instead of parking_lot when you are always using epaint in a single thread. About as fast as parking_lot. Panics on multi-threaded use.
cint = { version = "^0.2.1", optional = true }
ordered-float = "2"
ordered-float = { version = "2", default-features = false }
parking_lot = { version = "0.11", optional = true } # Using parking_lot over std::sync::Mutex gives 50% speedups in some real-world scenarios.
rusttype = "0.9"
serde = { version = "1", features = ["derive"], optional = true }