-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlibrary.json
More file actions
38 lines (38 loc) · 884 Bytes
/
Copy pathlibrary.json
File metadata and controls
38 lines (38 loc) · 884 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{
"name": "PicoString",
"version": "0.2.1",
"keywords": [
"string",
"pico",
"esp8266",
"esp32"
],
"description": "Tiny string helper for ESP8266 and ESP32 that minimizes heap usage by referencing string literals and PROGMEM when possible. Optimized for low memory use rather than raw speed.",
"authors": [
{
"name": "Michał Leśniewski",
"email": "mlesniew@gmail.com"
}
],
"license": "LGPL-3.0-only",
"repository": {
"type": "git",
"url": "https://github.com/mlesniew/PicoString.git"
},
"frameworks": [
"arduino"
],
"platforms": [
"espressif8266",
"espressif32"
],
"headers": [
"src/PicoString.h"
],
"build": {
"srcFilter": [
"+<*>",
"-<test*>"
]
}
}