Welcome to mirror list, hosted at ThFree Co, Russian Federation.

library.json - github.com/nanopb/nanopb.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e8dfce84719135a9ba724255cbe397fb298a033c (plain)
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
39
40
41
42
43
{
  "name": "Nanopb",
  "version": "0.4.8",
  "keywords": "protocol buffers, protobuf, google",
  "description": "Nanopb is a plain-C implementation of Google's Protocol Buffers data format. It is targeted at 32 bit microcontrollers, but is also fit for other embedded systems with tight (<10 kB ROM, <1 kB RAM) memory constraints.",
  "repository": {
    "type": "git",
    "url": "https://github.com/nanopb/nanopb.git"
  },
  "authors": [{
    "name": "Petteri Aimonen",
    "email": "jpa@nanopb.mail.kapsi.fi",
    "url": "http://koti.kapsi.fi/jpa/nanopb/"
  }],
  "export": {
    "include": [
      "*.c",
      "*.cpp",
      "*.h",
      "examples",
      "generator"
    ],
    "exclude": [
      "generator/**/__pycache__",
      "examples/platformio/.gitignore"
    ]
  },
  "build": {
    "extraScript": "generator/platformio_generator.py",
    "includeDir": "",
    "srcDir": "",
    "srcFilter": [
      "+<*.c>"
    ]
  },
  "examples": [
    "examples/platformio/platformio.ini",
    "examples/platformio/src/*.c",
    "examples/*/*.c"
  ],
  "frameworks": "*",
  "platforms": "*"
}