Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
sish/go.mod
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
73 lines (69 sloc)
2.98 KB
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
module github.com/antoniomika/sish | |
go 1.19 | |
require ( | |
github.com/ScaleFT/sshkeys v1.2.0 | |
github.com/antoniomika/syncmap v1.0.0 | |
github.com/caddyserver/certmagic v0.17.2 | |
github.com/fsnotify/fsnotify v1.6.0 | |
github.com/gin-gonic/gin v1.8.1 | |
github.com/gorilla/websocket v1.5.0 | |
github.com/jpillora/ipfilter v1.2.8 | |
github.com/logrusorgru/aurora v2.0.3+incompatible | |
github.com/mikesmitty/edkey v0.0.0-20170222072505-3356ea4e686a | |
github.com/pires/go-proxyproto v0.6.2 | |
github.com/radovskyb/watcher v1.0.7 | |
github.com/sirupsen/logrus v1.9.0 | |
github.com/spf13/cobra v1.6.1 | |
github.com/spf13/viper v1.14.0 | |
github.com/vulcand/oxy v1.4.2 | |
golang.org/x/crypto v0.4.0 | |
gopkg.in/natefinch/lumberjack.v2 v2.0.0 | |
) | |
require ( | |
github.com/HdrHistogram/hdrhistogram-go v1.1.2 // indirect | |
github.com/dchest/bcrypt_pbkdf v0.0.0-20150205184540-83f37f9c154a // indirect | |
github.com/gin-contrib/sse v0.1.0 // indirect | |
github.com/go-playground/locales v0.14.0 // indirect | |
github.com/go-playground/universal-translator v0.18.0 // indirect | |
github.com/go-playground/validator/v10 v10.11.1 // indirect | |
github.com/goccy/go-json v0.10.0 // indirect | |
github.com/hashicorp/hcl v1.0.0 // indirect | |
github.com/inconshreveable/mousetrap v1.1.0 // indirect | |
github.com/json-iterator/go v1.1.12 // indirect | |
github.com/klauspost/cpuid/v2 v2.2.2 // indirect | |
github.com/leodido/go-urn v1.2.1 // indirect | |
github.com/libdns/libdns v0.2.1 // indirect | |
github.com/magiconair/properties v1.8.7 // indirect | |
github.com/mailgun/timetools v0.0.0-20170619190023-f3a7b8ffff47 // indirect | |
github.com/mattn/go-isatty v0.0.16 // indirect | |
github.com/mholt/acmez v1.0.4 // indirect | |
github.com/miekg/dns v1.1.50 // indirect | |
github.com/mitchellh/mapstructure v1.5.0 // indirect | |
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect | |
github.com/modern-go/reflect2 v1.0.2 // indirect | |
github.com/pelletier/go-toml v1.9.5 // indirect | |
github.com/pelletier/go-toml/v2 v2.0.6 // indirect | |
github.com/phuslu/iploc v1.0.20221130 // indirect | |
github.com/segmentio/fasthash v1.0.3 // 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.1 // indirect | |
github.com/tomasen/realip v0.0.0-20180522021738-f0c99a92ddce // indirect | |
github.com/ugorji/go/codec v1.2.7 // indirect | |
go.uber.org/atomic v1.10.0 // indirect | |
go.uber.org/multierr v1.8.0 // indirect | |
go.uber.org/zap v1.24.0 // indirect | |
golang.org/x/mod v0.7.0 // indirect | |
golang.org/x/net v0.4.0 // indirect | |
golang.org/x/sys v0.3.0 // indirect | |
golang.org/x/text v0.5.0 // indirect | |
golang.org/x/tools v0.4.0 // indirect | |
google.golang.org/protobuf v1.28.1 // indirect | |
gopkg.in/ini.v1 v1.67.0 // indirect | |
gopkg.in/mgo.v2 v2.0.0-20190816093944-a6b53ec6cb22 // indirect | |
gopkg.in/yaml.v2 v2.4.0 // indirect | |
gopkg.in/yaml.v3 v3.0.1 // indirect | |
) | |
replace github.com/vulcand/oxy => github.com/antoniomika/oxy v1.1.1-0.20210804032133-5924ea01c950 |