bump alloc

This commit is contained in:
nora 2021-12-30 13:19:52 +01:00
parent 9019dc0295
commit e26e849b56
9 changed files with 302 additions and 225 deletions

View file

@ -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",
]