* feat(wip): hysteria realms * feat: port prediction for punching symmetric NAT * feat: add "cert" subcommand for easy self signed cert generation * refactor: update address scheme from "hysteria2+realm" to just "realm" * fix: give up on realm register fatal errors * chore: update formatting (gofumpt) * perf: realm proxy UDP methods on PunchPacketConn so quic-go and obfs keep DF/PMTU and buffer sizing * feat: add support for local UDP source port config in realm addresses * doc: README for realm pkg
46 lines
1.7 KiB
Modula-2
46 lines
1.7 KiB
Modula-2
module github.com/apernet/hysteria/extras/v2
|
|
|
|
go 1.24.0
|
|
|
|
toolchain go1.25.1
|
|
|
|
require (
|
|
github.com/apernet/hysteria/core/v2 v2.0.0-00010101000000-000000000000
|
|
github.com/apernet/quic-go v0.59.1-0.20260425001925-6c6cc9bcb716
|
|
github.com/database64128/tfo-go/v2 v2.2.2
|
|
github.com/hashicorp/golang-lru/v2 v2.0.5
|
|
github.com/miekg/dns v1.1.59
|
|
github.com/pion/stun/v3 v3.1.2
|
|
github.com/refraction-networking/utls v1.6.6
|
|
github.com/stretchr/testify v1.11.1
|
|
github.com/txthinking/socks5 v0.0.0-20230325130024-4230056ae301
|
|
golang.org/x/crypto v0.47.0
|
|
golang.org/x/net v0.49.0
|
|
google.golang.org/protobuf v1.34.1
|
|
)
|
|
|
|
require (
|
|
github.com/andybalholm/brotli v1.1.0 // indirect
|
|
github.com/cloudflare/circl v1.3.9 // indirect
|
|
github.com/database64128/netx-go v0.0.0-20240905055117-62795b8b054a // indirect
|
|
github.com/davecgh/go-spew v1.1.1 // indirect
|
|
github.com/klauspost/compress v1.17.9 // indirect
|
|
github.com/patrickmn/go-cache v2.1.0+incompatible // indirect
|
|
github.com/pion/dtls/v3 v3.1.2 // indirect
|
|
github.com/pion/logging v0.2.4 // indirect
|
|
github.com/pion/transport/v4 v4.0.1 // indirect
|
|
github.com/pmezard/go-difflib v1.0.0 // indirect
|
|
github.com/quic-go/qpack v0.6.0 // indirect
|
|
github.com/stretchr/objx v0.5.2 // indirect
|
|
github.com/txthinking/runnergroup v0.0.0-20210608031112-152c7c4432bf // indirect
|
|
github.com/wlynxg/anet v0.0.5 // indirect
|
|
golang.org/x/exp v0.0.0-20240506185415-9bf2ced13842 // indirect
|
|
golang.org/x/mod v0.32.0 // indirect
|
|
golang.org/x/sync v0.19.0 // indirect
|
|
golang.org/x/sys v0.41.0 // indirect
|
|
golang.org/x/text v0.34.0 // indirect
|
|
golang.org/x/tools v0.41.0 // indirect
|
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
|
)
|
|
|
|
replace github.com/apernet/hysteria/core/v2 => ../core
|