Hey, I'm wondering how much modification would be required to enable this library to parse input from a file? Because at the moment it looks like you would need to load an entire file into memory to parse it, where as it could be more efficiently handled via reading a file with a fix sized buffer, this way memory usage would be constant (with the exception of building the TOML data structure).
For my purposes, I think reading the file into memory I can live with, but it's something I'd prefer not to have to do.
Hey, I'm wondering how much modification would be required to enable this library to parse input from a file? Because at the moment it looks like you would need to load an entire file into memory to parse it, where as it could be more efficiently handled via reading a file with a fix sized buffer, this way memory usage would be constant (with the exception of building the TOML data structure).
For my purposes, I think reading the file into memory I can live with, but it's something I'd prefer not to have to do.