-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: upgrade msgpack and nlohmann::json
- Loading branch information
Showing
1,872 changed files
with
388,362 additions
and
135,104 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
# Classify all '.function' files as C for syntax highlighting purposes | ||
*.function linguist-language=C |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,36 +1,28 @@ | ||
Notes: | ||
* Pull requests cannot be accepted until the PR follows the [contributing guidelines](../CONTRIBUTING.md). In particular, each commit must have at least one `Signed-off-by:` line from the committer to certify that the contribution is made under the terms of the [Developer Certificate of Origin](../dco.txt). | ||
* This is just a template, so feel free to use/remove the unnecessary things | ||
## Description | ||
A few sentences describing the overall goals of the pull request's commits. | ||
|
||
Please write a few sentences describing the overall goals of the pull request's commits. | ||
|
||
## Status | ||
**READY/IN DEVELOPMENT/HOLD** | ||
|
||
## Requires Backporting | ||
When there is a bug fix, it should be backported to all maintained and supported branches. | ||
Changes do not have to be backported if: | ||
- This PR is a new feature\enhancement | ||
- This PR contains changes in the API. If this is true, and there is a need for the fix to be backported, the fix should be handled differently in the legacy branch | ||
|
||
Yes | NO | ||
Which branch? | ||
## PR checklist | ||
|
||
## Migrations | ||
If there is any API change, what's the incentive and logic for it. | ||
Please tick as appropriate and edit the reasons (e.g.: "backport: not needed because this is a new feature") | ||
|
||
YES | NO | ||
- [ ] **changelog** provided, or not required | ||
- [ ] **3.6 backport** done, or not required | ||
- [ ] **2.28 backport** done, or not required | ||
- [ ] **tests** provided, or not required | ||
|
||
## Additional comments | ||
Any additional information that could be of interest | ||
|
||
## Todos | ||
- [ ] Tests | ||
- [ ] Documentation | ||
- [ ] Changelog updated | ||
- [ ] Backported | ||
|
||
## Notes for the submitter | ||
|
||
## Steps to test or reproduce | ||
Outline the steps to test or reproduce the PR here. | ||
Please refer to the [contributing guidelines](https://github.com/Mbed-TLS/mbedtls/blob/development/CONTRIBUTING.md), especially the | ||
checklist for PR contributors. | ||
|
||
Help make review efficient: | ||
* Multiple simple commits | ||
- please structure your PR into a series of small commits, each of which does one thing | ||
* Avoid force-push | ||
- please do not force-push to update your PR - just add new commit(s) | ||
* See our [Guidelines for Contributors](https://mbed-tls.readthedocs.io/en/latest/reviews/review-for-contributors/) for more details about the review process. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
[submodule "framework"] | ||
path = framework | ||
url = https://github.com/Mbed-TLS/mbedtls-framework |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
# .readthedocs.yaml | ||
# Read the Docs configuration file | ||
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details | ||
|
||
# Required | ||
version: 2 | ||
|
||
# Include the framework submodule in the build | ||
submodules: | ||
include: | ||
- framework | ||
|
||
# Set the version of Python and other tools you might need | ||
build: | ||
os: ubuntu-20.04 | ||
tools: | ||
python: "3.9" | ||
jobs: | ||
pre_build: | ||
- ./scripts/apidoc_full.sh | ||
- breathe-apidoc -o docs/api apidoc/xml | ||
post_build: | ||
- | | ||
# Work around Readthedocs bug: Command parsing fails if the 'if' statement is on the first line | ||
if [ "$READTHEDOCS_VERSION" = "development" ]; then | ||
"$READTHEDOCS_VIRTUALENV_PATH/bin/rtd" projects "Mbed TLS API" redirects sync --wet-run -f docs/redirects.yaml | ||
fi | ||
# Build documentation in the docs/ directory with Sphinx | ||
sphinx: | ||
builder: dirhtml | ||
configuration: docs/conf.py | ||
|
||
# Optionally declare the Python requirements required to build your docs | ||
python: | ||
install: | ||
- requirements: docs/requirements.txt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.