Skip to content

Commit 55e86ea

Browse files
authored
Add a dependency on Nullables (#50)
1 parent 51c55f1 commit 55e86ea

3 files changed

Lines changed: 5 additions & 2 deletions

File tree

REQUIRE

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
julia 0.6
22
URIParser
3-
Compat 0.37.0
3+
Compat 0.44.0
4+
Nullables

src/HttpCommon.jl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ __precompile__()
33
module HttpCommon
44
using Compat.Dates
55
using URIParser: URI, unescape
6+
using Nullables
67

78
export Headers, Request, Cookie, Response, escapeHTML, parsequerystring
89

test/runtests.jl

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
using HttpCommon
2-
using Base.Test
2+
using Compat
3+
using Compat.Test
34

45
# headers
56
h = HttpCommon.headers()

0 commit comments

Comments
 (0)