Create library.json for PlatformIO

This commit is contained in:
Paweł Kozubal 2023-04-17 22:46:20 +02:00 committed by GitHub
parent 6af826d0bd
commit b09e002d0f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

33
library.json Normal file
View File

@ -0,0 +1,33 @@
{
"name": "nlohmann-json",
"version": "3.11.2",
"description": "JSON for Modern C++",
"keywords": [
"json",
"serialization",
"deserialization",
"parser",
"generator",
"C++"
],
"authors": [
{
"name": "Niels Lohmann",
"email": "mail@nlohmann.me",
"url": "https://github.com/nlohmann"
}
],
"repository": {
"type": "git",
"url": "https://github.com/nlohmann/json.git"
},
"homepage": "https://nlohmann.github.io/json/",
"license": "MIT",
"dependencies": [],
"frameworks": "*",
"platforms": "*",
"examples": [
"https://github.com/nlohmann/json/tree/develop/docs/examples"
],
"include": "single_include/nlohmann/json.hpp"
}