Update README.md

This commit is contained in:
2025-07-01 18:14:34 -04:00
parent 324ca06cf9
commit b938bebafe

View File

@@ -12,10 +12,27 @@ A bare-minimal, yet industrial-strength C++ 20 library for reading, writing, and
* Modern C++ (20) * Modern C++ (20)
* Simple, well-documented API. * Simple, well-documented API.
* Included parsing, validation, and manipulation tool for the CLI.
* Static Library * Static Library
* GCC and MSVC support * GCC and MSVC support
* Tested on Fedora Linux and Windows 10. * Tested on Fedora Linux and Windows 10.
## API Overview
```cpp
tuple<value, string> parse(string);
string deparse(value, string whitespace = "");
struct json::value {...};
struct json::string {...};
struct json::number {...};
struct json::boolean {...};
struct json::object {...};
struct json::array {...};
```
## Contributing ## Contributing