-
-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ext: update dependencies, add update scripts
- Loading branch information
1 parent
b5bdd34
commit be5ff45
Showing
4 changed files
with
52 additions
and
2 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
Submodule miniz
updated
3 files
+4 −0 | CMakeLists.txt | |
+94 −22 | miniz.h | |
+87 −0 | tests/add_in_place_fuzzer.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 |
---|---|---|
@@ -0,0 +1,24 @@ | ||
cd bufferstream | ||
git checkout main | ||
git pull | ||
cd .. | ||
|
||
cd cryptopp | ||
git checkout master | ||
git pull | ||
cd .. | ||
|
||
cd hat-trie | ||
git checkout master | ||
git pull | ||
cd .. | ||
|
||
cd miniz | ||
git checkout master | ||
git pull | ||
cd .. | ||
|
||
cd minizip-ng | ||
git checkout master | ||
git pull | ||
cd .. |
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,25 @@ | ||
( | ||
cd bufferstream || exit | ||
git checkout main | ||
git pull | ||
) | ||
( | ||
cd cryptopp || exit | ||
git checkout master | ||
git pull | ||
) | ||
( | ||
cd hat-trie || exit | ||
git checkout master | ||
git pull | ||
) | ||
( | ||
cd miniz || exit | ||
git checkout master | ||
git pull | ||
) | ||
( | ||
cd minizip-ng || exit | ||
git checkout master | ||
git pull | ||
) |