mirror of
https://github.com/apernet/hysteria.git
synced 2025-04-03 04:27:39 +03:00
58 lines
2.3 KiB
Modula-2
58 lines
2.3 KiB
Modula-2
module github.com/apernet/hysteria/app
|
|
|
|
go 1.20
|
|
|
|
require (
|
|
github.com/apernet/hysteria/core v0.0.0-00010101000000-000000000000
|
|
github.com/apernet/hysteria/extras v0.0.0-00010101000000-000000000000
|
|
github.com/caddyserver/certmagic v0.17.2
|
|
github.com/spf13/cobra v1.7.0
|
|
github.com/spf13/viper v1.15.0
|
|
github.com/txthinking/socks5 v0.0.0-20230325130024-4230056ae301
|
|
go.uber.org/zap v1.24.0
|
|
)
|
|
|
|
require (
|
|
github.com/fsnotify/fsnotify v1.6.0 // indirect
|
|
github.com/go-task/slim-sprig v0.0.0-20210107165309-348f09dbbbc0 // indirect
|
|
github.com/golang/mock v1.6.0 // indirect
|
|
github.com/google/pprof v0.0.0-20210407192527-94a9f03dee38 // indirect
|
|
github.com/hashicorp/hcl v1.0.0 // indirect
|
|
github.com/inconshreveable/mousetrap v1.1.0 // indirect
|
|
github.com/klauspost/cpuid/v2 v2.1.1 // indirect
|
|
github.com/libdns/libdns v0.2.1 // indirect
|
|
github.com/magiconair/properties v1.8.7 // indirect
|
|
github.com/mholt/acmez v1.0.4 // indirect
|
|
github.com/miekg/dns v1.1.51 // indirect
|
|
github.com/mitchellh/mapstructure v1.5.0 // indirect
|
|
github.com/onsi/ginkgo/v2 v2.2.0 // indirect
|
|
github.com/patrickmn/go-cache v2.1.0+incompatible // indirect
|
|
github.com/pelletier/go-toml/v2 v2.0.6 // indirect
|
|
github.com/quic-go/qpack v0.4.0 // indirect
|
|
github.com/quic-go/qtls-go1-19 v0.3.2 // indirect
|
|
github.com/quic-go/qtls-go1-20 v0.2.2 // indirect
|
|
github.com/quic-go/quic-go v0.0.0-00010101000000-000000000000 // indirect
|
|
github.com/spf13/afero v1.9.3 // indirect
|
|
github.com/spf13/cast v1.5.0 // indirect
|
|
github.com/spf13/jwalterweatherman v1.1.0 // indirect
|
|
github.com/spf13/pflag v1.0.5 // indirect
|
|
github.com/subosito/gotenv v1.4.2 // indirect
|
|
github.com/txthinking/runnergroup v0.0.0-20210608031112-152c7c4432bf // indirect
|
|
go.uber.org/atomic v1.11.0 // indirect
|
|
go.uber.org/multierr v1.11.0 // indirect
|
|
golang.org/x/crypto v0.4.0 // indirect
|
|
golang.org/x/exp v0.0.0-20221205204356-47842c84f3db // indirect
|
|
golang.org/x/mod v0.7.0 // indirect
|
|
golang.org/x/net v0.7.0 // indirect
|
|
golang.org/x/sys v0.5.0 // indirect
|
|
golang.org/x/text v0.7.0 // indirect
|
|
golang.org/x/tools v0.3.0 // indirect
|
|
gopkg.in/ini.v1 v1.67.0 // indirect
|
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
|
)
|
|
|
|
replace github.com/quic-go/quic-go => github.com/apernet/quic-go v0.34.1-0.20230507231629-ec008b7e8473
|
|
|
|
replace github.com/apernet/hysteria/core => ../core
|
|
|
|
replace github.com/apernet/hysteria/extras => ../extras
|