2024-09-05 14:25:45 -07:00
|
|
|
module github.com/wavetermdev/waveterm
|
2024-05-09 20:24:24 -07:00
|
|
|
|
2024-07-23 13:16:53 -07:00
|
|
|
go 1.22.4
|
2024-05-09 20:24:24 -07:00
|
|
|
|
2024-05-12 09:52:12 -07:00
|
|
|
require (
|
2024-06-15 14:59:14 -07:00
|
|
|
github.com/alexflint/go-filemutex v1.3.0
|
2024-07-23 12:17:14 -07:00
|
|
|
github.com/creack/pty v1.1.21
|
2024-06-19 23:59:41 -07:00
|
|
|
github.com/fsnotify/fsnotify v1.7.0
|
2024-07-25 16:41:34 -07:00
|
|
|
github.com/golang-jwt/jwt/v5 v5.2.1
|
2024-09-19 10:49:06 -07:00
|
|
|
github.com/golang-migrate/migrate/v4 v4.18.1
|
2024-07-23 11:55:33 -07:00
|
|
|
github.com/google/uuid v1.6.0
|
2024-06-13 16:49:25 -07:00
|
|
|
github.com/gorilla/handlers v1.5.2
|
2024-07-23 12:14:53 -07:00
|
|
|
github.com/gorilla/mux v1.8.1
|
2024-07-23 12:17:24 -07:00
|
|
|
github.com/gorilla/websocket v1.5.3
|
2024-05-12 09:52:12 -07:00
|
|
|
github.com/jmoiron/sqlx v1.4.0
|
2024-07-15 18:00:10 -07:00
|
|
|
github.com/kevinburke/ssh_config v1.2.0
|
2024-09-06 16:26:17 -07:00
|
|
|
github.com/mattn/go-sqlite3 v1.14.23
|
2024-05-25 18:37:05 -06:00
|
|
|
github.com/mitchellh/mapstructure v1.5.0
|
2024-09-13 11:42:58 -07:00
|
|
|
github.com/sashabaranov/go-openai v1.29.2
|
2024-05-13 11:45:47 -07:00
|
|
|
github.com/sawka/txwrap v0.2.0
|
2024-09-06 16:39:59 -07:00
|
|
|
github.com/shirou/gopsutil/v4 v4.24.8
|
2024-08-28 13:18:43 -07:00
|
|
|
github.com/skeema/knownhosts v1.3.0
|
2024-07-23 11:55:47 -07:00
|
|
|
github.com/spf13/cobra v1.8.1
|
2024-07-23 13:38:25 -07:00
|
|
|
github.com/wavetermdev/htmltoken v0.1.0
|
2024-09-06 16:26:59 -07:00
|
|
|
golang.org/x/crypto v0.27.0
|
|
|
|
|
golang.org/x/term v0.24.0
|
2024-05-12 09:52:12 -07:00
|
|
|
)
|
2024-05-09 20:24:24 -07:00
|
|
|
|
|
|
|
|
require (
|
2024-09-19 10:49:06 -07:00
|
|
|
github.com/felixge/httpsnoop v1.0.4 // indirect
|
2024-07-31 14:13:36 -07:00
|
|
|
github.com/go-ole/go-ole v1.2.6 // indirect
|
2024-05-12 09:52:12 -07:00
|
|
|
github.com/hashicorp/errwrap v1.1.0 // indirect
|
|
|
|
|
github.com/hashicorp/go-multierror v1.1.1 // indirect
|
2024-06-14 12:19:36 -07:00
|
|
|
github.com/inconshreveable/mousetrap v1.1.0 // indirect
|
2024-07-31 14:13:36 -07:00
|
|
|
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
|
2024-06-14 12:19:36 -07:00
|
|
|
github.com/spf13/pflag v1.0.5 // indirect
|
2024-07-31 14:13:36 -07:00
|
|
|
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
|
2024-05-12 09:52:12 -07:00
|
|
|
go.uber.org/atomic v1.7.0 // indirect
|
2024-09-19 10:49:06 -07:00
|
|
|
golang.org/x/net v0.29.0 // indirect
|
2024-09-06 16:26:59 -07:00
|
|
|
golang.org/x/sys v0.25.0 // indirect
|
2024-05-09 20:24:24 -07:00
|
|
|
)
|
2024-07-15 18:00:10 -07:00
|
|
|
|
|
|
|
|
replace github.com/kevinburke/ssh_config => github.com/wavetermdev/ssh_config v0.0.0-20240306041034-17e2087ebde2
|
2024-08-09 18:49:35 -07:00
|
|
|
|
|
|
|
|
replace github.com/creack/pty => github.com/photostorm/pty v1.1.19-0.20230903182454-31354506054b
|