Skip to content

Commit 82ab71e

Browse files
Updated dependencies
1 parent 7717f08 commit 82ab71e

File tree

5 files changed

+10
-7
lines changed

5 files changed

+10
-7
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ You can download the binary for your platform from [Releases](https://github.com
107107
Example:
108108

109109
```shell
110-
GOHPTS_RELEASE=v1.10.4; wget -v https://github.com/shadowy-pycoder/go-http-proxy-to-socks/releases/download/$GOHPTS_RELEASE/gohpts-$GOHPTS_RELEASE-linux-amd64.tar.gz -O gohpts && tar xvzf gohpts && mv -f gohpts-$GOHPTS_RELEASE-linux-amd64 gohpts && ./gohpts -h
110+
GOHPTS_RELEASE=v1.10.5; wget -v https://github.com/shadowy-pycoder/go-http-proxy-to-socks/releases/download/$GOHPTS_RELEASE/gohpts-$GOHPTS_RELEASE-linux-amd64.tar.gz -O gohpts && tar xvzf gohpts && mv -f gohpts-$GOHPTS_RELEASE-linux-amd64 gohpts && ./gohpts -h
111111
```
112112

113113
Alternatively, you can install it using `go install` command (requires Go [1.24](https://go.dev/doc/install) or later):

go.mod

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
module github.com/shadowy-pycoder/go-http-proxy-to-socks
22

3-
go 1.24.1
3+
go 1.24.2
44

55
require (
66
github.com/goccy/go-yaml v1.18.0
77
github.com/google/uuid v1.6.0
88
github.com/rs/zerolog v1.34.0
9+
github.com/shadowy-pycoder/arpspoof v0.0.1
910
github.com/shadowy-pycoder/colors v0.0.1
10-
github.com/shadowy-pycoder/mshark v0.0.16
11+
github.com/shadowy-pycoder/mshark v0.0.17
1112
github.com/wzshiming/socks5 v0.5.2
1213
golang.org/x/sys v0.33.0
1314
golang.org/x/term v0.32.0

go.sum

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,12 @@ github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZN
3232
github.com/rs/xid v1.6.0/go.mod h1:7XoLgs4eV+QndskICGsho+ADou8ySMSjJKDIan90Nz0=
3333
github.com/rs/zerolog v1.34.0 h1:k43nTLIwcTVQAncfCw4KZ2VY6ukYoZaBPNOE8txlOeY=
3434
github.com/rs/zerolog v1.34.0/go.mod h1:bJsvje4Z08ROH4Nhs5iH600c3IkWhwp44iRc54W6wYQ=
35+
github.com/shadowy-pycoder/arpspoof v0.0.1 h1:K5D+cVGc3SCTI4VxSB6oE2x8SJgxRjE72E8Payk2jJA=
36+
github.com/shadowy-pycoder/arpspoof v0.0.1/go.mod h1:dsVZh4gbbQFA4BQLEmL2qpsjtytKwxaf4oA2tRmvCW8=
3537
github.com/shadowy-pycoder/colors v0.0.1 h1:weCj/YIOupqy4BSP8KuVzr20fC+cuAv/tArz7bhhkP4=
3638
github.com/shadowy-pycoder/colors v0.0.1/go.mod h1:lkrJS1PY2oVigNLTT6pkbF7B/v0YcU2LD5PZnss1Q4U=
37-
github.com/shadowy-pycoder/mshark v0.0.16 h1:sS+EurtMJ5kW6W6VBQP3t4+Y9cQUVuw9r8BmSiYfb24=
38-
github.com/shadowy-pycoder/mshark v0.0.16/go.mod h1:FqbHFdsx0zMnrZZH0+oPzaFcleP4O+tUWv8i5gxo87k=
39+
github.com/shadowy-pycoder/mshark v0.0.17 h1:ZVgMHt89Gzij2VXwEf2E4Jnjc5ItOvbVehGwc1V6YyY=
40+
github.com/shadowy-pycoder/mshark v0.0.17/go.mod h1:Txx0p8JxYOGd+0V+6N9MeCUGtGdfHAATWE8KB1nd7H0=
3941
github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsTg=
4042
github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY=
4143
github.com/wzshiming/socks5 v0.5.2 h1:LtoowVNwAmkIQSkP1r1Wg435xUmC+tfRxorNW30KtnM=

gohpts.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ import (
3131

3232
"github.com/goccy/go-yaml"
3333
"github.com/rs/zerolog"
34-
"github.com/shadowy-pycoder/mshark/arpspoof"
34+
"github.com/shadowy-pycoder/arpspoof"
3535
"github.com/shadowy-pycoder/mshark/layers"
3636
"github.com/shadowy-pycoder/mshark/network"
3737
"github.com/wzshiming/socks5"

version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
package gohpts
22

3-
const Version string = "gohpts v1.10.4"
3+
const Version string = "gohpts v1.10.5"

0 commit comments

Comments
 (0)