From 2c981a27981a6bb03c3a5631e5aec4833411bab8 Mon Sep 17 00:00:00 2001 From: myd7349 Date: Sat, 18 Jul 2020 23:07:40 +0800 Subject: [PATCH] CSV: Replace deprecated csv with csv2 --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c39a141..4ce89a9 100644 --- a/README.md +++ b/README.md @@ -330,7 +330,7 @@ A curated list of awesome C++ (or C) frameworks, libraries, resources, and shiny ## CSV *Libraries for parsing Comma Separated Value (CSV) files* -* [csv](https://github.com/p-ranav/csv) - CSV for modern C++. [MIT] +* [csv2](https://github.com/p-ranav/csv2) - Fast CSV parser for modern C++. [MIT] * [Fast C++ CSV Parser](https://github.com/ben-strasser/fast-cpp-csv-parser) - Small, easy-to-use and fast header-only library for reading CSV files. [BSD-3-Clause] * [Vince's CSV Parser](https://github.com/vincentlaucsb/csv-parser) - A fast, self-contained, streaming C++17 CSV parser with optional type-casting and statistics. [MIT]