-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCargo.toml
More file actions
44 lines (37 loc) · 1.24 KB
/
Cargo.toml
File metadata and controls
44 lines (37 loc) · 1.24 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
[package]
name = "morton"
version = "0.3.1"
authors = ["Reinier Maas <reiniermaas@hotmail.com>"]
edition = "2018"
description = "Morton space filling curve functions"
documentation = "https://docs.rs/morton/"
homepage = "https://github.com/ReinierMaas/morton/"
repository = "https://github.com/ReinierMaas/morton/"
readme = "README.md"
keywords = ["morton", "iterator", "cache-coherence", "spatial-locality", "data-locality"]
categories = ["algorithms", "caching", "data-structures", "game-engines", "memory-management"]
license = "MIT"
[[bench]]
harness = false
name = "morton"
[dev-dependencies]
bencher = "0.1"
rand = "0.9"
[lints.clippy]
cargo = { level = "warn", priority = -1 }
complexity = { level = "warn", priority = -1 }
correctness = { level = "deny", priority = -1 }
# nursery, new untested lints
nursery = { level = "allow", priority = -1 }
pedantic = { level = "warn", priority = -1 }
perf = { level = "warn", priority = -1 }
# restriction, lints that can enforce a coherent code style
restriction = { level = "allow", priority = -1 }
style = { level = "warn", priority = -1 }
suspicious = { level = "warn", priority = -1 }
# Explicitly selected `restriction` lints
mod_module_files = "deny"
[profile.release]
lto = true
[profile.bench]
lto = true