Skip to content

Commit 44bc236

Browse files
committed
升级依赖
1 parent 024fc08 commit 44bc236

File tree

3 files changed

+116
-61
lines changed

3 files changed

+116
-61
lines changed

asset/clash-rules.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ rules:
1313
- RULE-SET,lancidr,DIRECT
1414
- RULE-SET,cncidr,DIRECT
1515
- RULE-SET,telegramcidr,PROXY
16-
- GEOIP,,DIRECT
16+
- GEOIP,LAN,DIRECT
1717
- GEOIP,CN,DIRECT
1818
- MATCH,PROXY
1919

go.mod

Lines changed: 28 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,49 +1,54 @@
11
module trojan
22

3-
go 1.19
3+
go 1.20
44

55
require (
6-
github.com/appleboy/gin-jwt/v2 v2.9.0
6+
github.com/appleboy/gin-jwt/v2 v2.9.1
77
github.com/eiannone/keyboard v0.0.0-20220611211555-0d226195f203
88
github.com/gin-contrib/gzip v0.0.6
9-
github.com/gin-gonic/gin v1.8.1
9+
github.com/gin-gonic/gin v1.9.0
1010
github.com/go-ole/go-ole v1.2.6 // indirect
11-
github.com/go-sql-driver/mysql v1.6.0
11+
github.com/go-sql-driver/mysql v1.7.0
1212
github.com/gorilla/websocket v1.5.0
1313
github.com/robfig/cron/v3 v3.0.1
1414
github.com/shirou/gopsutil v3.21.11+incompatible
1515
github.com/spf13/cobra v1.6.1
1616
github.com/syndtr/goleveldb v1.0.1-0.20210819022825-2ae1ddf74ef7
17-
github.com/tidwall/gjson v1.14.3
17+
github.com/tidwall/gjson v1.14.4
1818
github.com/tidwall/pretty v1.2.1
1919
github.com/tidwall/sjson v1.2.5
20-
github.com/tklauser/go-sysconf v0.3.10 // indirect
20+
github.com/tklauser/go-sysconf v0.3.11 // indirect
2121
)
2222

2323
require (
24+
github.com/bytedance/sonic v1.8.6 // indirect
25+
github.com/chenzhuoyu/base64x v0.0.0-20221115062448-fe3a3abad311 // indirect
2426
github.com/gin-contrib/sse v0.1.0 // indirect
25-
github.com/go-playground/locales v0.14.0 // indirect
26-
github.com/go-playground/universal-translator v0.18.0 // indirect
27-
github.com/go-playground/validator/v10 v10.11.1 // indirect
28-
github.com/goccy/go-json v0.9.11 // indirect
29-
github.com/golang-jwt/jwt/v4 v4.4.2 // indirect
27+
github.com/go-playground/locales v0.14.1 // indirect
28+
github.com/go-playground/universal-translator v0.18.1 // indirect
29+
github.com/go-playground/validator/v10 v10.12.0 // indirect
30+
github.com/goccy/go-json v0.10.2 // indirect
31+
github.com/golang-jwt/jwt/v4 v4.5.0 // indirect
3032
github.com/golang/snappy v0.0.4 // indirect
31-
github.com/inconshreveable/mousetrap v1.0.1 // indirect
33+
github.com/inconshreveable/mousetrap v1.1.0 // indirect
3234
github.com/json-iterator/go v1.1.12 // indirect
33-
github.com/leodido/go-urn v1.2.1 // indirect
34-
github.com/mattn/go-isatty v0.0.16 // indirect
35+
github.com/klauspost/cpuid/v2 v2.2.4 // indirect
36+
github.com/leodido/go-urn v1.2.2 // indirect
37+
github.com/mattn/go-isatty v0.0.18 // indirect
3538
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
3639
github.com/modern-go/reflect2 v1.0.2 // indirect
37-
github.com/pelletier/go-toml/v2 v2.0.5 // indirect
40+
github.com/pelletier/go-toml/v2 v2.0.7 // indirect
3841
github.com/spf13/pflag v1.0.5 // indirect
3942
github.com/tidwall/match v1.1.1 // indirect
40-
github.com/tklauser/numcpus v0.5.0 // indirect
41-
github.com/ugorji/go/codec v1.2.7 // indirect
43+
github.com/tklauser/numcpus v0.6.0 // indirect
44+
github.com/twitchyliquid64/golang-asm v0.15.1 // indirect
45+
github.com/ugorji/go/codec v1.2.11 // indirect
4246
github.com/yusufpapurcu/wmi v1.2.2 // indirect
43-
golang.org/x/crypto v0.1.0 // indirect
44-
golang.org/x/net v0.1.0 // indirect
45-
golang.org/x/sys v0.1.0 // indirect
46-
golang.org/x/text v0.4.0 // indirect
47-
google.golang.org/protobuf v1.28.1 // indirect
48-
gopkg.in/yaml.v2 v2.4.0 // indirect
47+
golang.org/x/arch v0.3.0 // indirect
48+
golang.org/x/crypto v0.7.0 // indirect
49+
golang.org/x/net v0.8.0 // indirect
50+
golang.org/x/sys v0.6.0 // indirect
51+
golang.org/x/text v0.8.0 // indirect
52+
google.golang.org/protobuf v1.30.0 // indirect
53+
gopkg.in/yaml.v3 v3.0.1 // indirect
4954
)

0 commit comments

Comments
 (0)