2024-09-05 23:25:45 +02:00
|
|
|
module github.com/wavetermdev/waveterm
|
2024-05-10 05:24:24 +02:00
|
|
|
|
2024-12-05 21:13:45 +01:00
|
|
|
go 1.23.4
|
2024-05-10 05:24:24 +02:00
|
|
|
|
2024-05-12 18:52:12 +02:00
|
|
|
require (
|
2024-06-15 23:59:14 +02:00
|
|
|
github.com/alexflint/go-filemutex v1.3.0
|
2024-07-23 21:17:14 +02:00
|
|
|
github.com/creack/pty v1.1.21
|
2024-11-04 19:09:55 +01:00
|
|
|
github.com/fsnotify/fsnotify v1.8.0
|
2024-07-26 01:41:34 +02:00
|
|
|
github.com/golang-jwt/jwt/v5 v5.2.1
|
2024-09-19 19:49:06 +02:00
|
|
|
github.com/golang-migrate/migrate/v4 v4.18.1
|
2024-07-23 20:55:33 +02:00
|
|
|
github.com/google/uuid v1.6.0
|
2024-06-14 01:49:25 +02:00
|
|
|
github.com/gorilla/handlers v1.5.2
|
2024-07-23 21:14:53 +02:00
|
|
|
github.com/gorilla/mux v1.8.1
|
2024-07-23 21:17:24 +02:00
|
|
|
github.com/gorilla/websocket v1.5.3
|
2024-05-12 18:52:12 +02:00
|
|
|
github.com/jmoiron/sqlx v1.4.0
|
2024-07-16 03:00:10 +02:00
|
|
|
github.com/kevinburke/ssh_config v1.2.0
|
2024-10-04 19:34:26 +02:00
|
|
|
github.com/mattn/go-sqlite3 v1.14.24
|
2024-05-26 02:37:05 +02:00
|
|
|
github.com/mitchellh/mapstructure v1.5.0
|
2024-12-06 18:21:17 +01:00
|
|
|
github.com/sashabaranov/go-openai v1.36.0
|
2024-05-13 20:45:47 +02:00
|
|
|
github.com/sawka/txwrap v0.2.0
|
2024-12-16 23:04:10 +01:00
|
|
|
github.com/shirou/gopsutil/v4 v4.24.11
|
2024-08-28 22:18:43 +02:00
|
|
|
github.com/skeema/knownhosts v1.3.0
|
2024-12-17 23:11:40 +01:00
|
|
|
github.com/skratchdot/open-golang v0.0.0-20200116055534-eef842397966
|
2024-07-23 20:55:47 +02:00
|
|
|
github.com/spf13/cobra v1.8.1
|
2024-10-24 07:43:17 +02:00
|
|
|
github.com/ubuntu/gowsl v0.0.0-20240906163211-049fd49bd93b
|
2024-11-02 18:58:13 +01:00
|
|
|
github.com/wavetermdev/htmltoken v0.2.0
|
2024-12-12 18:59:58 +01:00
|
|
|
golang.org/x/crypto v0.31.0
|
|
|
|
golang.org/x/sys v0.28.0
|
|
|
|
golang.org/x/term v0.27.0
|
2024-05-12 18:52:12 +02:00
|
|
|
)
|
2024-05-10 05:24:24 +02:00
|
|
|
|
|
|
|
require (
|
2024-11-02 18:58:57 +01:00
|
|
|
github.com/ebitengine/purego v0.8.1 // indirect
|
2024-09-19 19:49:06 +02:00
|
|
|
github.com/felixge/httpsnoop v1.0.4 // indirect
|
2024-07-31 23:13:36 +02:00
|
|
|
github.com/go-ole/go-ole v1.2.6 // indirect
|
2024-05-12 18:52:12 +02:00
|
|
|
github.com/hashicorp/errwrap v1.1.0 // indirect
|
|
|
|
github.com/hashicorp/go-multierror v1.1.1 // indirect
|
2024-06-14 21:19:36 +02:00
|
|
|
github.com/inconshreveable/mousetrap v1.1.0 // indirect
|
2024-07-31 23:13:36 +02:00
|
|
|
github.com/lufia/plan9stats v0.0.0-20211012122336-39d0f177ccd0 // indirect
|
|
|
|
github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c // indirect
|
2024-10-24 07:43:17 +02:00
|
|
|
github.com/sirupsen/logrus v1.9.3 // indirect
|
2024-06-14 21:19:36 +02:00
|
|
|
github.com/spf13/pflag v1.0.5 // indirect
|
2024-07-31 23:13:36 +02:00
|
|
|
github.com/tklauser/go-sysconf v0.3.12 // indirect
|
|
|
|
github.com/tklauser/numcpus v0.6.1 // indirect
|
2024-10-24 07:43:17 +02:00
|
|
|
github.com/ubuntu/decorate v0.0.0-20230125165522-2d5b0a9bb117 // indirect
|
2024-07-31 23:13:36 +02:00
|
|
|
github.com/yusufpapurcu/wmi v1.2.4 // indirect
|
2024-05-12 18:52:12 +02:00
|
|
|
go.uber.org/atomic v1.7.0 // indirect
|
2024-12-20 18:04:42 +01:00
|
|
|
golang.org/x/net v0.33.0 // indirect
|
2024-05-10 05:24:24 +02:00
|
|
|
)
|
2024-07-16 03:00:10 +02:00
|
|
|
|
2024-12-19 21:55:36 +01:00
|
|
|
replace github.com/kevinburke/ssh_config => github.com/wavetermdev/ssh_config v0.0.0-20241219203747-6409e4292f34
|
2024-08-10 03:49:35 +02:00
|
|
|
|
|
|
|
replace github.com/creack/pty => github.com/photostorm/pty v1.1.19-0.20230903182454-31354506054b
|