Skip to content
This repository was archived by the owner on Dec 27, 2022. It is now read-only.

Commit 24d07b6

Browse files
committed
final fix. derp derp
1 parent d14fe0e commit 24d07b6

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
inspect.lua
22
luacov.*
3+
*.src.rock
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
package = "httpclient"
2-
version = "0.1.0-2"
2+
version = "0.1.0-3"
33
source = {
44
url = "git://github.com/lusis/lua-httpclient",
5-
tag = "0.1.0-2"
5+
tag = "0.1.0-3"
66
}
77
description = {
88
summary = "Unified http client wrapper",
@@ -13,14 +13,14 @@ description = {
1313
license = "Apache"
1414
}
1515
dependencies = {
16-
"luasocket ~> 3.0rc1-1"
16+
"luasocket ~> 3.0rc1-1",
17+
"inspect ~> 3.0-1"
1718
}
1819
build = {
1920
type = "builtin",
2021
modules = {
2122
['httpclient'] = 'src/httpclient/init.lua',
2223
['httpclient.luasocket_driver'] = 'src/httpclient/luasocket_driver.lua',
23-
['httpclient.inspect'] = 'src/httpclient/inspect.lua',
2424
['httpclient.utils'] = 'src/httpclient/utils.lua'
2525
}
2626
}

src/httpclient/utils.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
local inspect = require('httpclient.inspect')
1+
local inspect = require('inspect')
22
local function deep_copy(t)
33
if type(t) ~= "table" then return t end
44
local meta = getmetatable(t)

0 commit comments

Comments
 (0)