mirror of
https://github.com/h2zero/esp-nimble-cpp.git
synced 2024-12-18 09:10:47 +01:00
Add library.json
* Add fields for idf registry
This commit is contained in:
parent
57e583c17a
commit
62de1b23fa
2 changed files with 33 additions and 3 deletions
|
@ -1,7 +1,15 @@
|
||||||
## IDF Component Manager Manifest File
|
## IDF Component Manager Manifest File
|
||||||
version: "2.0.0"
|
version: "2.0.0"
|
||||||
license: "Apache-2.0"
|
license: "Apache-2.0"
|
||||||
description: "NimBLE C++ wrapper"
|
description: "C++ wrapper for the NimBLE BLE stack"
|
||||||
|
url: "https://github.com/h2zero/esp-nimble-cpp"
|
||||||
|
repository: "https://github.com/h2zero/esp-nimble-cpp"
|
||||||
|
maintainers:
|
||||||
|
- Ryan Powell <ryan@nable-embedded.io>
|
||||||
|
documentation: "https://h2zero.github.io/esp-nimble-cpp/"
|
||||||
|
tags:
|
||||||
|
- BLE
|
||||||
|
- NimBLE
|
||||||
dependencies:
|
dependencies:
|
||||||
espressif/esp_hosted:
|
espressif/esp_hosted:
|
||||||
version: "*"
|
version: "*"
|
||||||
|
@ -11,8 +19,6 @@ dependencies:
|
||||||
version: "*"
|
version: "*"
|
||||||
rules:
|
rules:
|
||||||
- if: "target in [esp32p4]"
|
- if: "target in [esp32p4]"
|
||||||
|
|
||||||
## Required IDF version
|
|
||||||
idf:
|
idf:
|
||||||
version: ">=5.3.0"
|
version: ">=5.3.0"
|
||||||
rules:
|
rules:
|
||||||
|
|
24
library.json
Normal file
24
library.json
Normal file
|
@ -0,0 +1,24 @@
|
||||||
|
{
|
||||||
|
"name": "esp-nimble-cpp",
|
||||||
|
"version": "2.0.0",
|
||||||
|
"description": "C++ wrapper for the NimBLE BLE stack",
|
||||||
|
"keywords": [
|
||||||
|
"BLE",
|
||||||
|
"espidf",
|
||||||
|
"arduino",
|
||||||
|
"espressif",
|
||||||
|
"esp32",
|
||||||
|
"nimble"
|
||||||
|
],
|
||||||
|
"license": "Apache-2.0",
|
||||||
|
"repository": {
|
||||||
|
"type": "git",
|
||||||
|
"url": "https://github.com/h2zero/esp-nimble-cpp"
|
||||||
|
},
|
||||||
|
"authors": {
|
||||||
|
"name": "Ryan Powell",
|
||||||
|
"email": "ryan@nable-embedded.io",
|
||||||
|
"url": "https://github.com/h2zero/esp-nimble-cpp",
|
||||||
|
"maintainer": true
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in a new issue