Add library.json

* Add fields for idf registry
This commit is contained in:
h2zero 2024-12-13 11:42:48 -07:00 committed by Ryan Powell
parent 57e583c17a
commit 62de1b23fa
2 changed files with 33 additions and 3 deletions

View file

@ -1,7 +1,15 @@
## IDF Component Manager Manifest File
version: "2.0.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:
espressif/esp_hosted:
version: "*"
@ -11,8 +19,6 @@ dependencies:
version: "*"
rules:
- if: "target in [esp32p4]"
## Required IDF version
idf:
version: ">=5.3.0"
rules:

24
library.json Normal file
View 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
}
}