mirror of
https://github.com/Noratrieb/dilaria.git
synced 2026-01-16 02:15:01 +01:00
small api changes
This commit is contained in:
parent
b3fde273d6
commit
78f8382502
3 changed files with 8 additions and 10 deletions
10
clippy.toml
10
clippy.toml
|
|
@ -1,8 +1,6 @@
|
|||
disallowed-types = [
|
||||
# we want to use our custom HashMap/HashSet from `values.rs`, so that consumers can choose between which HashMap they want
|
||||
"std::collections::HashMap",
|
||||
"std::collections::HashSet",
|
||||
# we want to use bumpalo::collections::Vec, this can be removed later I guess
|
||||
"std::collections::Vec",
|
||||
"std::boxed::Box",
|
||||
{ path = "std::collections::HashMap", reason = "may be fxhash or siphash, depending on the feature, stay flexible" },
|
||||
{ path = "std::collections::HashSet", reason = "may be fxhash or siphash, depending on the feature, stay flexible" },
|
||||
{ path = "std::collections::Vec", reason = "we generally want to use bumpalos collections" },
|
||||
{ path = "std::boxed::Box", reason = "we generally want to use bumpalos allocation" },
|
||||
]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue