other: Move cbor, jsmn and libsodium to idf-component-manager

Marginal components are being carved out from esp-idf and moved to
https://github.com/espressif/idf-extra-components.
They are distributed via idf-component-manager, see
https://components.espressif.com.
This commit is contained in:
Tomas Rezucha
2021-11-19 19:03:18 +01:00
parent 6a11f6fb20
commit ebaca79557
52 changed files with 97 additions and 1198 deletions

View File

@@ -10,3 +10,4 @@ ESP-IDF 5.0 Migration Guides
Build System <build-system>
System <system>
Ethernet <ethernet>
Removed or deprecated components <removed-components>

View File

@@ -0,0 +1,16 @@
Removed or deprecated components
================================
Following components are removed from ESP-IDF and moved to `IDF Component Registry <https://components.espressif.com/>`_:
* `libsodium <https://components.espressif.com/component/espressif/libsodium>`_
* `cbor <https://components.espressif.com/component/espressif/cbor>`_
* `jsmn <https://components.espressif.com/component/espressif/jsmn>`_
These components can be installed using ``idf.py add-dependency`` command.
For example, to install libsodium component with exact version X.Y, run: ``idf.py add-dependency libsodium==X.Y``.
To install libsodium component with the latest version compatible to X.Y according to `semver <https://semver.org/>`_ rules, run: ``idf.py add-dependency libsodium~X.Y``.
To find out which versions of each component are available, open https://components.espressif.com, search for the component by its name and check the versions listed on the component page.