Access first edition parsing in readr 2.0.0+
mainStarting with version 2.0.0, readr uses a new parsing engine (the second edition) which calls vroom::vroom() by default. If you need to use the original (first edition) parsing engine for legacy compatibility, you can use with_edition(1, ...) for specific calls or local_edition(1) to set it locally.
# Example of using the first edition engine
with_edition(1, read_csv("data.csv"))