From 5f9e30e90887c2fefda0a95c863702c14832f7f1 Mon Sep 17 00:00:00 2001 From: Ivan Kravets Date: Tue, 29 Dec 2015 00:45:20 +0200 Subject: [PATCH] @PlatformIO Library Registry manifest file * This library in Web Registry: http://platformio.org/#!/lib/show/549/WebSockets * Specification: [library.json](http://docs.platformio.org/en/latest/librarymanager/config.html) * Library Manager: http://docs.platformio.org/en/latest/librarymanager/index.html --- library.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 library.json diff --git a/library.json b/library.json new file mode 100644 index 0000000..4583a35 --- /dev/null +++ b/library.json @@ -0,0 +1,13 @@ +{ + "name": "WebSockets", + "keywords": "wifi, http, web, server, websocket", + "description": "WebSocket Server and Client for Arduino based on RFC6455", + "repository": + { + "type": "git", + "url": "https://github.com/Links2004/arduinoWebSockets.git" + }, + "exclude": "tests", + "frameworks": "arduino", + "platforms": "*" +}