|
1
|
module github.com/conflicthq/scuttlebot |
|
2
|
|
|
3
|
go 1.25.0 |
|
4
|
|
|
5
|
require github.com/oklog/ulid/v2 v2.1.1 |
|
6
|
|
|
7
|
require ( |
|
8
|
github.com/creack/pty v1.1.24 |
|
9
|
github.com/lrstanley/girc v1.1.1 |
|
10
|
golang.org/x/crypto v0.39.0 |
|
11
|
golang.org/x/term v0.32.0 |
|
12
|
gopkg.in/yaml.v3 v3.0.1 |
|
13
|
) |
|
14
|
|
|
15
|
require ( |
|
16
|
github.com/dustin/go-humanize v1.0.1 // indirect |
|
17
|
github.com/google/uuid v1.6.0 // indirect |
|
18
|
github.com/lib/pq v1.12.2 // indirect |
|
19
|
github.com/mattn/go-isatty v0.0.20 // indirect |
|
20
|
github.com/ncruces/go-strftime v1.0.0 // indirect |
|
21
|
github.com/remyoudompheng/bigfft v0.0.0-20230129092748-24d4a6f8daec // indirect |
|
22
|
golang.org/x/net v0.41.0 // indirect |
|
23
|
golang.org/x/sys v0.42.0 // indirect |
|
24
|
golang.org/x/text v0.35.0 // indirect |
|
25
|
modernc.org/libc v1.70.0 // indirect |
|
26
|
modernc.org/mathutil v1.7.1 // indirect |
|
27
|
modernc.org/memory v1.11.0 // indirect |
|
28
|
modernc.org/sqlite v1.48.0 // indirect |
|
29
|
) |
|
30
|
|