mirror of
https://github.com/wavetermdev/waveterm.git
synced 2024-12-21 16:38:23 +01:00
ea5e5e1bac
This fix makes it possible to differentiate between keys when multiple are provided by the remote server. It does not solve the case of multiple keys of the same type being shared, but it handles multiple keys of different types being shared, which is much more common.
50 lines
1.8 KiB
Modula-2
50 lines
1.8 KiB
Modula-2
module github.com/wavetermdev/thenextwave
|
|
|
|
go 1.22.4
|
|
|
|
require (
|
|
github.com/alexflint/go-filemutex v1.3.0
|
|
github.com/creack/pty v1.1.21
|
|
github.com/fsnotify/fsnotify v1.7.0
|
|
github.com/golang-jwt/jwt/v5 v5.2.1
|
|
github.com/golang-migrate/migrate/v4 v4.17.1
|
|
github.com/google/uuid v1.6.0
|
|
github.com/gorilla/handlers v1.5.2
|
|
github.com/gorilla/mux v1.8.1
|
|
github.com/gorilla/websocket v1.5.3
|
|
github.com/jmoiron/sqlx v1.4.0
|
|
github.com/kevinburke/ssh_config v1.2.0
|
|
github.com/mattn/go-sqlite3 v1.14.22
|
|
github.com/mitchellh/mapstructure v1.5.0
|
|
github.com/sashabaranov/go-openai v1.28.3
|
|
github.com/sawka/txwrap v0.2.0
|
|
github.com/shirou/gopsutil/v4 v4.24.7
|
|
github.com/skeema/knownhosts v1.3.0
|
|
github.com/spf13/cobra v1.8.1
|
|
github.com/wavetermdev/htmltoken v0.1.0
|
|
golang.org/x/crypto v0.26.0
|
|
golang.org/x/term v0.23.0
|
|
)
|
|
|
|
require (
|
|
github.com/felixge/httpsnoop v1.0.3 // indirect
|
|
github.com/go-ole/go-ole v1.2.6 // indirect
|
|
github.com/hashicorp/errwrap v1.1.0 // indirect
|
|
github.com/hashicorp/go-multierror v1.1.1 // indirect
|
|
github.com/inconshreveable/mousetrap v1.1.0 // indirect
|
|
github.com/lufia/plan9stats v0.0.0-20211012122336-39d0f177ccd0 // indirect
|
|
github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c // indirect
|
|
github.com/shoenig/go-m1cpu v0.1.6 // indirect
|
|
github.com/spf13/pflag v1.0.5 // indirect
|
|
github.com/tklauser/go-sysconf v0.3.12 // indirect
|
|
github.com/tklauser/numcpus v0.6.1 // indirect
|
|
github.com/yusufpapurcu/wmi v1.2.4 // indirect
|
|
go.uber.org/atomic v1.7.0 // indirect
|
|
golang.org/x/net v0.27.0 // indirect
|
|
golang.org/x/sys v0.23.0 // indirect
|
|
)
|
|
|
|
replace github.com/kevinburke/ssh_config => github.com/wavetermdev/ssh_config v0.0.0-20240306041034-17e2087ebde2
|
|
|
|
replace github.com/creack/pty => github.com/photostorm/pty v1.1.19-0.20230903182454-31354506054b
|