2022-06-23 19:16:54 +02:00
|
|
|
module github.com/scripthaus-dev/mshell
|
2022-06-10 09:35:24 +02:00
|
|
|
|
2023-02-23 23:50:58 +01:00
|
|
|
go 1.18
|
2022-06-10 09:35:24 +02:00
|
|
|
|
|
|
|
require (
|
2022-09-24 22:53:19 +02:00
|
|
|
github.com/alessio/shellescape v1.4.1
|
|
|
|
github.com/creack/pty v1.1.18
|
|
|
|
github.com/fsnotify/fsnotify v1.5.4
|
|
|
|
github.com/google/uuid v1.3.0
|
|
|
|
golang.org/x/sys v0.0.0-20220412211240-33da011f77ad
|
2022-06-10 09:35:24 +02:00
|
|
|
)
|
2022-09-24 22:53:19 +02:00
|
|
|
|
2022-09-26 22:02:34 +02:00
|
|
|
require (
|
|
|
|
github.com/Masterminds/semver/v3 v3.1.1 // indirect
|
|
|
|
golang.org/x/mod v0.5.1 // indirect
|
2022-10-25 00:35:01 +02:00
|
|
|
mvdan.cc/sh/v3 v3.5.1 // indirect
|
2022-09-26 22:02:34 +02:00
|
|
|
)
|