From b09e002d0fec35298d6df6117a8034b6dd3bfae2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82=20Kozubal?= Date: Mon, 17 Apr 2023 22:46:20 +0200 Subject: [PATCH] Create library.json for PlatformIO --- library.json | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 library.json diff --git a/library.json b/library.json new file mode 100644 index 000000000..29296db75 --- /dev/null +++ b/library.json @@ -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" +}