-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: upgrade to golang 1.23 and update dependency
- Loading branch information
1 parent
32039b0
commit e1062e1
Showing
5 changed files
with
59 additions
and
55 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,49 +1,51 @@ | ||
module github.com/mythologyli/zju-connect | ||
|
||
go 1.22.0 | ||
go 1.23.1 | ||
|
||
toolchain go1.23.2 | ||
|
||
require github.com/refraction-networking/utls v1.6.7 | ||
|
||
require ( | ||
github.com/BurntSushi/toml v1.4.0 | ||
github.com/BurntSushi/toml v1.4.1-0.20240526193622-a339e1f7089c | ||
github.com/beevik/etree v1.4.1 | ||
github.com/cloverstd/tcping v0.1.1 | ||
github.com/cxz66666/sing-tun v0.0.0-20231028191617-2867d9374292 | ||
github.com/golang-infrastructure/go-domain-suffix-trie v0.0.2 | ||
github.com/miekg/dns v1.1.61 | ||
github.com/miekg/dns v1.1.62 | ||
github.com/patrickmn/go-cache v2.1.0+incompatible | ||
github.com/shadowsocks/go-shadowsocks2 v0.1.5 | ||
github.com/shirou/gopsutil v3.21.11+incompatible | ||
github.com/things-go/go-socks5 v0.0.5 | ||
golang.org/x/net v0.27.0 | ||
golang.org/x/sys v0.22.0 | ||
golang.org/x/net v0.30.0 | ||
golang.org/x/sys v0.26.0 | ||
golang.zx2c4.com/wireguard v0.0.0-20231211153847-12269c276173 | ||
golang.zx2c4.com/wireguard/windows v0.5.3 | ||
gvisor.dev/gvisor v0.0.0-20240726212243-a2b0498dbe7d | ||
gvisor.dev/gvisor v0.0.0-20241101202500-296dc88a6e19 | ||
inet.af/netaddr v0.0.0-20230525184311-b8eac61e914a | ||
) | ||
|
||
require ( | ||
github.com/andybalholm/brotli v1.1.0 // indirect | ||
github.com/cloudflare/circl v1.3.9 // indirect | ||
github.com/fsnotify/fsnotify v1.7.0 // indirect | ||
github.com/andybalholm/brotli v1.1.1 // indirect | ||
github.com/cloudflare/circl v1.5.0 // indirect | ||
github.com/fsnotify/fsnotify v1.8.0 // indirect | ||
github.com/go-ole/go-ole v1.3.0 // indirect | ||
github.com/google/btree v1.1.2 // indirect | ||
github.com/klauspost/compress v1.17.9 // indirect | ||
github.com/google/btree v1.1.3 // indirect | ||
github.com/klauspost/compress v1.17.11 // indirect | ||
github.com/metacubex/gvisor v0.0.0-20231001104248-0f672c3fb8d8 // indirect | ||
github.com/riobard/go-bloom v0.0.0-20200614022211-cdc8013cb5b3 // indirect | ||
github.com/sagernet/go-tun2socks v1.16.12-0.20220818015926-16cb67876a61 // indirect | ||
github.com/sagernet/netlink v0.0.0-20240612041022-b9a21c07ac6a // indirect | ||
github.com/sagernet/sing v0.4.2 // indirect | ||
github.com/sagernet/netlink v0.0.0-20240916134442-83396419aa8b // indirect | ||
github.com/sagernet/sing v0.4.3 // indirect | ||
github.com/scjalliance/comshim v0.0.0-20240712181150-e070933cb68e // indirect | ||
github.com/vishvananda/netns v0.0.4 // indirect | ||
github.com/yusufpapurcu/wmi v1.2.4 // indirect | ||
go4.org/intern v0.0.0-20230525184215-6c62f75575cb // indirect | ||
go4.org/unsafe/assume-no-moving-gc v0.0.0-20231121144256-b99613f794b6 // indirect | ||
golang.org/x/crypto v0.25.0 // indirect | ||
golang.org/x/mod v0.19.0 // indirect | ||
golang.org/x/sync v0.7.0 // indirect | ||
golang.org/x/time v0.5.0 // indirect | ||
golang.org/x/tools v0.23.0 // indirect | ||
golang.org/x/crypto v0.28.0 // indirect | ||
golang.org/x/mod v0.21.0 // indirect | ||
golang.org/x/sync v0.8.0 // indirect | ||
golang.org/x/time v0.7.0 // indirect | ||
golang.org/x/tools v0.26.0 // indirect | ||
golang.zx2c4.com/wintun v0.0.0-20230126152724-0fa3db229ce2 // indirect | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters