Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Invisible tiles #7

Merged
merged 24 commits into from
Jun 28, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Remove need for getrandom
  • Loading branch information
emilk committed Jun 28, 2023
commit 15f5b2cc9d6a2c718a7aa7850122e2b236ba9e17
5 changes: 4 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,10 @@ all-features = true


[dependencies]
ahash = "0.8"
ahash = { version = "0.8.1", default-features = false, features = [
"no-rng", # we don't need DOS-protection for what we use ahash for
"std",
] }
egui = { version = "0.22", default-features = false }
itertools = "0.11"
log = { version = "0.4", features = ["std"] }
Expand Down