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
ahash = { version = "0.7", features = ["std"], default-features = false }
62
-
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.
63
-
bytemuck = { version = "1.7.2", features = ["derive"], optional = true }
61
+
ahash = { version = "0.7", default-features = false, features = ["std"] }
62
+
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.
63
+
bytemuck = { version = "1.7.2", optional = true, features = ["derive"] }
64
64
cint = { version = "^0.2.2", optional = true }
65
65
nohash-hasher = "0.2"
66
-
parking_lot = { version = "0.12", optional = true } # Using parking_lot over std::sync::Mutex gives 50% speedups in some real-world scenarios.
67
-
serde = { version = "1", features = ["derive", "rc"], optional = true }
66
+
parking_lot = { version = "0.12", optional = true } # Using parking_lot over std::sync::Mutex gives 50% speedups in some real-world scenarios.
67
+
serde = { version = "1", optional = true, features = ["derive", "rc"] }
68
68
69
69
[dev-dependencies]
70
70
criterion = { version = "0.3", default-features = false }
0 commit comments