-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Reset the code base to use the current master state in vibe.d.
Instead of trying to use the new code base that evolved from the HTTP/2 implementation, the plan is to first separate the existing code out to the vibe-http package, where regular development can continue. This state will be tagged as 1.0.0. At the same time, a different branch will be used to integrate the HTTP/2 code, which will at some point lead to a new 2.0.0 version tag.
- Loading branch information
Showing
112 changed files
with
3,288 additions
and
9,556 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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
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,6 +1,48 @@ | ||
/libevent.dll | ||
/dub.selections.json | ||
/http-test-library.exe | ||
*.[oa] | ||
*.so | ||
*.lib | ||
*.dll | ||
.*.sw* | ||
*.lst | ||
*.map | ||
*.pdb | ||
*.suo | ||
*.sln | ||
*.visualdproj | ||
*.exe_cv | ||
|
||
docs.json | ||
/docs | ||
__dummy.html | ||
|
||
.dub | ||
libvibe-http.a | ||
vibe-http-test-library | ||
dub.selections.json | ||
|
||
# Auto-generated | ||
tls/openssl_version.d | ||
|
||
# Auto-downloaded 3rd-party (Meson) | ||
lib/subprojects/allocator | ||
lib/subprojects/diet/ | ||
lib/subprojects/openssl/ | ||
|
||
# Mono-D files | ||
*.userprefs | ||
|
||
# Unittest binaries | ||
vibe-d | ||
tests/*/tests | ||
__test__*__ | ||
vibe-d-test* | ||
vibe-d-*-test* | ||
|
||
# Examples | ||
examples/*/*-example | ||
examples/app_skeleton/app-skeleton | ||
examples/app_skeleton/__test__library__ | ||
examples/bench-http-request/bench-http-request | ||
examples/bench-http-server/bench-http-server | ||
examples/bench-mongodb/bench-mongodb | ||
examples/bench-urlrouter/bench-urlrouter | ||
*.exe | ||
|
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,17 +1,8 @@ | ||
name "vibe-http" | ||
description "HTTP server and client implementation and higher level HTTP functionality" | ||
homepage "https://vibed.org/" | ||
|
||
license "MIT" | ||
copyright "Copyright © 2012-2019 Sönke Ludwig" | ||
authors "Sönke Ludwig" "Francesco Galla" "see GitHub for all" | ||
|
||
dependency "vibe-d:crypto" version=">0.8.4" | ||
dependency "vibe-d:tls" version=">0.8.4" | ||
dependency "vibe-d:inet" version="*" | ||
dependency "vibe-d:stream" version="*" | ||
dependency "vibe-d:textfilter" version="*" | ||
dependency "diet-ng" version="~>1.1" | ||
dependency "taggedalgebraic" version=">=0.10.9 <0.12.0-0" | ||
|
||
dependency "vibe-d:crypto" version="~>0.9.7" | ||
dependency "vibe-d:inet" version="~>0.9.7" | ||
dependency "vibe-d:tls" version="~>0.9.7" | ||
dependency "vibe-d:textfilter" version="~>0.9.0" | ||
dependency "diet-ng" version="~>1.2" | ||
targetType "library" |
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 @@ | ||
name "auth-basic-example" | ||
description "Demonstrates basic authentication." | ||
dependency "vibe-http" path="../../" |
Oops, something went wrong.