-
-
Notifications
You must be signed in to change notification settings - Fork 78
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d5a1024
commit f3aefee
Showing
101 changed files
with
51,515 additions
and
54 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 |
---|---|---|
@@ -1,11 +1 @@ | ||
.{ | ||
.name = "zap", | ||
.version = "0.1.14-pre", | ||
|
||
.dependencies = .{ | ||
.@"facil.io" = .{ | ||
.url = "https://github.com/zigzap/facil.io/archive/refs/tags/zap-0.0.12.tar.gz", | ||
.hash = "12200301960bbde64052db068cf31a64091ce1f671898513d9b8d9e2be5b0e4b13a3", | ||
} | ||
} | ||
} | ||
.{ .name = "zap", .version = "0.2.0" } |
This file was deleted.
Oops, something went wrong.
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,20 @@ | ||
-Ilib/ | ||
-Ilib/facil | ||
-Ilib/facil/fiobj | ||
-Ilib/facil/cli | ||
-Ilib/facil/http/ | ||
-Ilib/facil/http/parsers | ||
-Ilib/facil/redis | ||
-Ilib/facil/tls | ||
-Ilib/bearssl | ||
|
||
-Idev/ | ||
-Idev/startup | ||
-Idev/services | ||
-Idev/http | ||
|
||
-DDEBUG | ||
-DHAVE_BEARSSL | ||
-DHAVE_OPENSSL | ||
-DHAVE_ZLIB | ||
-DINCLUDE_MUSTACHE_IMPLEMENTATION |
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,17 @@ | ||
language: c | ||
script: | ||
- make vars | ||
- DEBUG=1 make vars | ||
- make test/optimized | ||
- ASAN_OPTIONS=detect_leaks=0 make test/poll | ||
- ASAN_OPTIONS=detect_leaks=0 make test/ci | ||
os: | ||
- linux | ||
- osx | ||
compiler: | ||
- clang | ||
- gcc | ||
notifications: | ||
email: false | ||
after_success: | ||
- bash <(curl -s https://codecov.io/bash) |
Oops, something went wrong.