-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathgo.mod
More file actions
26 lines (22 loc) · 755 Bytes
/
go.mod
File metadata and controls
26 lines (22 loc) · 755 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// ==============================================================================
// MasterDnsVPN
// Author: MasterkinG32
// Github: https://github.com/masterking32
// Year: 2026
// ==============================================================================
module masterdnsvpn-go
go 1.25.0
require (
github.com/BurntSushi/toml v1.4.0
github.com/klauspost/compress v1.18.5
github.com/pierrec/lz4/v4 v4.1.26
// Android-specific: gVisor netstack for tun2socks bridge
github.com/sagernet/gvisor v0.0.0-20250811-sing-box-mod.1
golang.org/x/crypto v0.49.0
golang.org/x/sys v0.42.0
)
require (
github.com/google/btree v1.1.2 // indirect
golang.org/x/mobile v0.0.0-20260312152759-81488f6aeb60 // indirect
golang.org/x/time v0.12.0 // indirect
)