mirror of
https://github.com/fatedier/frp.git
synced 2025-04-20 00:34:21 +00:00
81 lines
3.2 KiB
Modula-2
81 lines
3.2 KiB
Modula-2
module github.com/fatedier/frp
|
|
|
|
go 1.24.1
|
|
require (
|
|
github.com/armon/go-socks5 v0.0.0-20160902184237-e75332964ef5
|
|
github.com/coreos/go-oidc/v3 v3.12.0
|
|
github.com/fatedier/golib v0.5.1
|
|
github.com/google/uuid v1.6.0
|
|
github.com/gorilla/mux v1.8.1
|
|
github.com/gorilla/websocket v1.5.3
|
|
github.com/hashicorp/yamux v0.1.1
|
|
github.com/onsi/ginkgo/v2 v2.23.0
|
|
github.com/onsi/gomega v1.36.2
|
|
github.com/pelletier/go-toml/v2 v2.2.3
|
|
github.com/pion/stun/v2 v2.0.0
|
|
github.com/pires/go-proxyproto v0.8.0
|
|
github.com/prometheus/client_golang v1.21.1
|
|
github.com/quic-go/quic-go v0.50.0
|
|
github.com/rodaine/table v1.3.0
|
|
github.com/samber/lo v1.49.1
|
|
github.com/spf13/cobra v1.9.1
|
|
github.com/spf13/pflag v1.0.6
|
|
github.com/stretchr/testify v1.10.0
|
|
github.com/tidwall/gjson v1.18.0
|
|
github.com/xtaci/kcp-go/v5 v5.6.18
|
|
golang.org/x/crypto v0.36.0
|
|
golang.org/x/net v0.37.0
|
|
golang.org/x/oauth2 v0.28.0
|
|
golang.org/x/sync v0.12.0
|
|
golang.org/x/time v0.11.0
|
|
gopkg.in/ini.v1 v1.67.0
|
|
k8s.io/apimachinery v0.32.2
|
|
k8s.io/client-go v0.32.2
|
|
)
|
|
|
|
require (
|
|
github.com/Azure/go-ntlmssp v0.0.0-20221128193559-754e69321358 // indirect
|
|
github.com/beorn7/perks v1.0.1 // indirect
|
|
github.com/cespare/xxhash/v2 v2.3.0 // indirect
|
|
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
|
|
github.com/go-jose/go-jose/v4 v4.0.5 // indirect
|
|
github.com/go-logr/logr v1.4.2 // indirect
|
|
github.com/go-task/slim-sprig/v3 v3.0.0 // indirect
|
|
github.com/golang/snappy v0.0.4 // indirect
|
|
github.com/google/go-cmp v0.6.0 // indirect
|
|
github.com/google/pprof v0.0.0-20241210010833-40e02aabc2ad // indirect
|
|
github.com/inconshreveable/mousetrap v1.1.0 // indirect
|
|
github.com/klauspost/compress v1.17.11 // indirect
|
|
github.com/klauspost/cpuid/v2 v2.2.6 // indirect
|
|
github.com/klauspost/reedsolomon v1.12.0 // indirect
|
|
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
|
|
github.com/pion/dtls/v2 v2.2.7 // indirect
|
|
github.com/pion/logging v0.2.2 // indirect
|
|
github.com/pion/transport/v2 v2.2.1 // indirect
|
|
github.com/pion/transport/v3 v3.0.1 // indirect
|
|
github.com/pkg/errors v0.9.1 // indirect
|
|
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
|
|
github.com/prometheus/client_model v0.6.1 // indirect
|
|
github.com/prometheus/common v0.62.0 // indirect
|
|
github.com/prometheus/procfs v0.15.1 // indirect
|
|
github.com/templexxx/cpu v0.1.1 // indirect
|
|
github.com/templexxx/xorsimd v0.4.3 // indirect
|
|
github.com/tidwall/match v1.1.1 // indirect
|
|
github.com/tidwall/pretty v1.2.0 // indirect
|
|
github.com/tjfoc/gmsm v1.4.1 // indirect
|
|
go.uber.org/mock v0.5.0 // indirect
|
|
golang.org/x/exp v0.0.0-20241204233417-43b7b7cde48d // indirect
|
|
golang.org/x/mod v0.23.0 // indirect
|
|
golang.org/x/sys v0.31.0 // indirect
|
|
golang.org/x/text v0.23.0 // indirect
|
|
golang.org/x/tools v0.30.0 // indirect
|
|
google.golang.org/protobuf v1.36.1 // indirect
|
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
|
k8s.io/utils v0.0.0-20241104100929-3ea5e8cea738 // indirect
|
|
sigs.k8s.io/json v0.0.0-20241010143419-9aa6b5e7a4b3 // indirect
|
|
sigs.k8s.io/yaml v1.4.0 // indirect
|
|
)
|
|
|
|
// TODO(fatedier): Temporary use the modified version, update to the official version after merging into the official repository.
|
|
replace github.com/hashicorp/yamux => github.com/fatedier/yamux v0.0.0-20230628132301-7aca4898904d
|