ruststep
ruststep copied to clipboard
`Tables` struct requires too large stack memory
std::mem::size_of<Tables>() will be size_of<HashMap<usize, XxxHolder>() * number_of_tables, but number_of_tables will be large for large EXPRESS schemas. It should be allocated on heap instead of stack.