From 86c57ff289b53fcbb14fd22f856610a63d16320c Mon Sep 17 00:00:00 2001 From: Eric Forgy Date: Sat, 17 Feb 2018 08:18:46 +0800 Subject: [PATCH] Http.jl (#89) * Use HTTP.jl * Support SSLContext * Get tests to pass * Fix chat example * examples/server.jl is working. * Restrict tests to Julia v0.6 (v0.5 no longer supported). * Almost done. Last test is nearly passing... * Fix REQUIRE for appveyor / travis * Add test/REQUIRE --- REQUIRE | 3 ++- test/REQUIRE | 3 +++ 2 files changed, 5 insertions(+), 1 deletion(-) create mode 100644 test/REQUIRE diff --git a/REQUIRE b/REQUIRE index 29b8b53..c8fe5e1 100644 --- a/REQUIRE +++ b/REQUIRE @@ -1,2 +1,3 @@ julia 0.6 -HTTP \ No newline at end of file +MbedTLS +Requires \ No newline at end of file diff --git a/test/REQUIRE b/test/REQUIRE new file mode 100644 index 0000000..f3d7be5 --- /dev/null +++ b/test/REQUIRE @@ -0,0 +1,3 @@ +HTTP +HttpServer +JSON \ No newline at end of file