mirror of
https://github.com/Noratrieb/dilaria.git
synced 2026-01-16 10:25:02 +01:00
bump alloc
This commit is contained in:
parent
9019dc0295
commit
e26e849b56
9 changed files with 302 additions and 225 deletions
10
clippy.toml
10
clippy.toml
|
|
@ -1,2 +1,8 @@
|
|||
# we want to use our custom type from `values.rs`, so that consumers can choose between which HashMap they want
|
||||
disallowed-types = ["std::collections::HashMap", "std::collections::HashSet"]
|
||||
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",
|
||||
]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue