Skip to content

Commit

Permalink
updated dependencies and adjusted mbedtls features
Browse files Browse the repository at this point in the history
  • Loading branch information
cryi committed May 16, 2024
1 parent c8ace34 commit 040d608
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 7 deletions.
3 changes: 2 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,8 @@
"stdiochannel.h": "c",
"execvpe.h": "c",
"execve_spawnp.h": "c",
"ostream": "c"
"ostream": "c",
"crypto.h": "c"
},
"C_Cpp.default.compilerPath": "/usr/bin/cpp",
"editor.formatOnSave": true,
Expand Down
2 changes: 1 addition & 1 deletion containers/build/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ RUN mkdir /usr/local/zig
RUN wget -q https://raw.githubusercontent.com/alis-is/eli/main/install.sh -O /tmp/install.sh && \
sh /tmp/install.sh
# setup zig
RUN export ZIG_VERSION=0.12.0-dev.1830+779b8e259 && \
RUN export ZIG_VERSION=0.12.0 && \
wget https://ziglang.org/builds/zig-linux-x86_64-$ZIG_VERSION.tar.xz && \
mkdir zig && tar --xz -xf zig-linux-x86_64-$ZIG_VERSION.tar.xz --directory zig && \
cp -rf zig/zig*/* --target-directory=/usr/local/zig
Expand Down
2 changes: 1 addition & 1 deletion deps/corehttp
Submodule corehttp updated 1 files
+0 −45 sbom.spdx
2 changes: 1 addition & 1 deletion deps/lua-simple-socket
4 changes: 2 additions & 2 deletions lib/init.lua
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
ELI_LIB_VERSION = '0.32.0-dev.25'
ELI_VERSION = '0.32.0-dev.25'
ELI_LIB_VERSION = '0.32.0'
ELI_VERSION = '0.32.0'
do
local path = require"eli.path"
local _eos = require"eli.os"
Expand Down
11 changes: 10 additions & 1 deletion tools/templates/mbed-eli-overrides.mustache
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,15 @@
#define MBEDTLS_BASE64_C
#undef MBEDTLS_X509_CRT_WRITE_C
#undef MBEDTLS_AESCE_C
// #define MBEDTLS_PSA_P256M_DRIVER_ENABLED
#undef MBEDTLS_ERROR_STRERROR_DUMMY
#undef MBEDTLS_VERSION_FEATURES
#undef MBEDTLS_FS_IO
#undef MBEDTLS_PSA_ITS_FILE_C
#undef MBEDTLS_PSA_CRYPTO_STORAGE_C
#undef MBEDTLS_KEY_EXCHANGE_DHE_PSK_ENABLED
#undef MBEDTLS_KEY_EXCHANGE_DHE_RSA_ENABLED
#undef MBEDTLS_DES_C
#undef MBEDTLS_DHM_C
#undef MBEDTLS_RIPEMD160_C
{{/overrides}}
/* end eli mbedtls overrides */

0 comments on commit 040d608

Please sign in to comment.