-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: replace libb64 with custom base64 implementation
- Loading branch information
Showing
5 changed files
with
143 additions
and
36 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
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 |
---|---|---|
|
@@ -24,7 +24,6 @@ Docker targets: | |
- Cryptopp >= 7.0.0 | ||
- GRPC >= 1.45.0 | ||
- Lua >= 5.4.4 | ||
- b64 >= 1.2.1 | ||
- Boost >= 1.81 | ||
- nlohmann JSON >= 3.10 | ||
|
||
|
@@ -38,7 +37,7 @@ apt-get install build-essential wget git clang-tidy-15 clang-format-15 \ | |
libboost-filesystem1.81-dev libssl-dev libc-ares-dev zlib1g-dev \ | ||
ca-certificates automake libtool patchelf cmake pkg-config lua5.4 liblua5.4-dev \ | ||
libgrpc++-dev libprotobuf-dev protobuf-compiler-grpc \ | ||
luarocks libb64-dev libcrypto++-dev nlohmann-json3-dev | ||
luarocks libcrypto++-dev nlohmann-json3-dev | ||
sudo luarocks install --lua-version=5.4 lpeg | ||
sudo luarocks install --lua-version=5.4 dkjson | ||
|
@@ -50,7 +49,7 @@ sudo luarocks install --lua-version=5.4 luaposix | |
|
||
##### MacPorts | ||
``` | ||
sudo port install clang-15 automake boost libtool wget cmake pkgconfig grpc zlib openssl lua libb64 libcryptopp nlohmann-json lua-luarocks | ||
sudo port install clang-15 automake boost libtool wget cmake pkgconfig grpc zlib openssl lua libcryptopp nlohmann-json lua-luarocks | ||
sudo luarocks install --lua-version=5.4 lpeg | ||
sudo luarocks install --lua-version=5.4 dkjson | ||
|
@@ -61,7 +60,7 @@ sudo luarocks install --lua-version=5.4 luaposix | |
|
||
##### Homebrew | ||
``` | ||
brew install llvm@15 automake boost libomp wget cmake cryptopp pkg-config grpc zlib openssl [email protected] libb64 nlohmann-json luarocks | ||
brew install llvm@15 automake boost libomp wget cmake cryptopp pkg-config grpc zlib openssl [email protected] nlohmann-json luarocks | ||
luarocks --lua-dir=$(brew --prefix)/opt/[email protected] install lpeg | ||
luarocks --lua-dir=$(brew --prefix)/opt/[email protected] install dkjson | ||
luarocks --lua-dir=$(brew --prefix)/opt/[email protected] install luasocket | ||
|
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
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