mirror of
https://github.com/emilk/egui.git
synced 2026-09-02 23:00:04 -04:00
Update ahash to 0.8.1 (#2255)
This commit is contained in:
@@ -57,7 +57,10 @@ serde = ["dep:serde", "epaint/serde"]
|
||||
[dependencies]
|
||||
epaint = { version = "0.19.0", path = "../epaint", default-features = false }
|
||||
|
||||
ahash = "0.8"
|
||||
ahash = { version = "0.8.1", default-features = false, features = [
|
||||
"no-rng", # we don't need DOS-protection, so we let users opt-in to it instead
|
||||
"std",
|
||||
] }
|
||||
nohash-hasher = "0.2"
|
||||
|
||||
#! ### Optional dependencies
|
||||
@@ -68,4 +71,6 @@ ron = { version = "0.8", optional = true }
|
||||
serde = { version = "1", optional = true, features = ["derive", "rc"] }
|
||||
|
||||
# egui doesn't log much, but when it does, it uses [`tracing`](https://docs.rs/tracing).
|
||||
tracing = { version = "0.1", optional = true, default-features = false, features = ["std"] }
|
||||
tracing = { version = "0.1", optional = true, default-features = false, features = [
|
||||
"std",
|
||||
] }
|
||||
|
||||
Reference in New Issue
Block a user