-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlibrary.json
More file actions
22 lines (21 loc) · 783 Bytes
/
library.json
File metadata and controls
22 lines (21 loc) · 783 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"name": "SimpleCollections",
"keywords": "BTreeList, Binary Search, Associative",
"description": "An associative container that can act as either a straight list or btree without needing your compiler to support std lib. Ordered fast lookup, sorted on insert so optimised for read. A non-blocking concurrent circular buffer implementation that is thread safe. Works from Uno upwards to ESP32, mbed etc",
"repository": {
"type": "git",
"url": "https://github.com/TcMenu/SimpleCollections"
},
"authors": [
{
"name": "DaveTcc",
"url": "https://www.thecoderscorner.com",
"maintainer": true
}
],
"version": "1.2.5",
"license": "Apache-2.0",
"frameworks": "arduino, mbed",
"platforms": "*",
"headers": "SimpleCollections.h"
}