2023-10-16 22:30:10 +02:00
|
|
|
module github.com/wavetermdev/waveterm/wavesrv
|
2022-06-12 22:39:48 +02:00
|
|
|
|
2024-03-06 01:12:52 +01:00
|
|
|
go 1.22
|
|
|
|
|
|
|
|
toolchain go1.22.0
|
2022-06-12 22:39:48 +02:00
|
|
|
|
|
|
|
require (
|
2023-02-15 01:17:54 +01:00
|
|
|
github.com/alessio/shellescape v1.4.1
|
|
|
|
github.com/armon/circbuf v0.0.0-20190214190532-5111143e8da2
|
|
|
|
github.com/creack/pty v1.1.18
|
2023-08-03 23:58:56 +02:00
|
|
|
github.com/golang-migrate/migrate/v4 v4.16.2
|
2024-03-06 01:12:52 +01:00
|
|
|
github.com/google/go-github/v60 v60.0.0
|
2022-07-01 02:02:19 +02:00
|
|
|
github.com/google/uuid v1.3.0
|
|
|
|
github.com/gorilla/mux v1.8.0
|
|
|
|
github.com/gorilla/websocket v1.5.0
|
2022-07-01 19:48:14 +02:00
|
|
|
github.com/jmoiron/sqlx v1.3.5
|
2024-02-26 20:39:04 +01:00
|
|
|
github.com/kevinburke/ssh_config v1.2.0
|
2023-08-03 23:58:56 +02:00
|
|
|
github.com/mattn/go-sqlite3 v1.14.16
|
2023-10-12 02:59:22 +02:00
|
|
|
github.com/sashabaranov/go-openai v1.9.0
|
2023-04-18 02:31:30 +02:00
|
|
|
github.com/sawka/txwrap v0.1.2
|
2023-10-17 04:17:44 +02:00
|
|
|
github.com/wavetermdev/waveterm/waveshell v0.0.0
|
2023-12-19 05:45:00 +01:00
|
|
|
golang.org/x/crypto v0.17.0
|
2023-10-12 02:59:22 +02:00
|
|
|
golang.org/x/mod v0.10.0
|
2023-12-19 05:45:00 +01:00
|
|
|
golang.org/x/sys v0.15.0
|
2023-10-12 02:59:22 +02:00
|
|
|
mvdan.cc/sh/v3 v3.7.0
|
2022-07-01 02:02:19 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
require (
|
2024-02-26 20:39:04 +01:00
|
|
|
github.com/google/go-querystring v1.1.0 // indirect
|
2022-07-01 19:48:14 +02:00
|
|
|
github.com/hashicorp/errwrap v1.1.0 // indirect
|
|
|
|
github.com/hashicorp/go-multierror v1.1.1 // indirect
|
|
|
|
go.uber.org/atomic v1.7.0 // indirect
|
2023-10-16 22:30:10 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
replace github.com/wavetermdev/waveterm/waveshell => ../waveshell
|
2024-02-26 20:39:04 +01:00
|
|
|
|
2024-03-06 21:33:01 +01:00
|
|
|
replace github.com/kevinburke/ssh_config => github.com/wavetermdev/ssh_config v0.0.0-20240306041034-17e2087ebde2
|