Files
Sigma-C2/go.mod

26 lines
636 B
Modula-2
Raw Permalink Normal View History

2025-07-11 14:06:11 +02:00
module server
2025-02-06 14:42:06 +01:00
go 1.23.3
require (
2025-03-28 19:56:19 +01:00
github.com/chzyer/readline v1.5.1
2025-07-11 14:06:11 +02:00
github.com/miekg/dns v1.1.67
golang.org/x/sys v0.33.0
2025-03-28 19:56:19 +01:00
)
2025-08-18 16:03:04 +02:00
require (
github.com/Binject/debug v0.0.0-20210312092933-6277045c2fdf // indirect
github.com/Binject/go-donut v0.0.0-20220908180326-fcdcc35d591c // indirect
github.com/google/uuid v1.2.0 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
)
2025-03-28 19:56:19 +01:00
require (
al.essio.dev/pkg/shellescape v1.6.0
github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510
2025-07-11 14:06:11 +02:00
golang.org/x/mod v0.24.0 // indirect
golang.org/x/net v0.40.0 // indirect
golang.org/x/sync v0.14.0 // indirect
golang.org/x/tools v0.33.0 // indirect
2025-02-06 14:42:06 +01:00
)