owobot/go.mod

52 lines
1.9 KiB
Modula-2
Raw Permalink Normal View History

2023-12-04 23:55:01 +00:00
module go.elara.ws/owobot
2023-12-05 00:27:46 +00:00
go 1.21.0
2023-12-04 23:55:01 +00:00
require (
2024-04-24 01:25:37 +00:00
github.com/bwmarrin/discordgo v0.28.1
2023-12-04 23:55:01 +00:00
github.com/caarlos0/env/v10 v10.0.0
2024-04-24 01:25:37 +00:00
github.com/dop251/goja v0.0.0-20231027120936-b396bb4c349d
2023-12-04 23:55:01 +00:00
github.com/jmoiron/sqlx v1.3.5
2024-04-24 01:25:37 +00:00
github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51
2023-12-05 21:28:47 +00:00
github.com/lestrrat-go/strftime v1.0.6
2023-12-05 00:51:55 +00:00
github.com/pelletier/go-toml/v2 v2.1.0
2023-12-04 23:55:01 +00:00
github.com/rivo/uniseg v0.4.4
2024-04-24 01:25:37 +00:00
github.com/rqlite/sql v0.0.0-20240312185922-ffac88a740bd
2023-12-04 23:55:01 +00:00
github.com/valyala/fasttemplate v1.2.2
go.elara.ws/logger v0.0.0-20230928062203-85e135cf02ae
2024-04-24 01:25:37 +00:00
go.elara.ws/vercmp v0.0.0-20231003203944-671892886053
golang.org/x/net v0.24.0
2023-12-04 23:55:01 +00:00
modernc.org/sqlite v1.27.0
mvdan.cc/xurls/v2 v2.5.0
2023-12-04 23:55:01 +00:00
)
require (
2024-04-24 01:25:37 +00:00
github.com/dlclark/regexp2 v1.7.0 // indirect
2023-12-04 23:55:01 +00:00
github.com/dustin/go-humanize v1.0.1 // indirect
2024-04-24 01:25:37 +00:00
github.com/go-sourcemap/sourcemap v2.1.3+incompatible // indirect
github.com/google/pprof v0.0.0-20230207041349-798e818bf904 // indirect
2023-12-04 23:55:01 +00:00
github.com/google/uuid v1.3.0 // indirect
github.com/gookit/color v1.5.1 // indirect
2024-04-24 01:25:37 +00:00
github.com/gorilla/websocket v1.5.1 // indirect
2023-12-04 23:55:01 +00:00
github.com/mattn/go-isatty v0.0.17 // indirect
2023-12-05 21:28:47 +00:00
github.com/pkg/errors v0.9.1 // indirect
2023-12-04 23:55:01 +00:00
github.com/remyoudompheng/bigfft v0.0.0-20230129092748-24d4a6f8daec // indirect
github.com/valyala/bytebufferpool v1.0.0 // indirect
github.com/xo/terminfo v0.0.0-20210125001918-ca9a967f8778 // indirect
2024-04-24 01:25:37 +00:00
golang.org/x/crypto v0.22.0 // indirect
golang.org/x/exp v0.0.0-20230522175609-2e198f4a06a1 // indirect
golang.org/x/mod v0.10.0 // indirect
2024-04-24 01:25:37 +00:00
golang.org/x/sys v0.19.0 // indirect
golang.org/x/text v0.14.0 // indirect
golang.org/x/tools v0.6.0 // indirect
2023-12-04 23:55:01 +00:00
lukechampine.com/uint128 v1.2.0 // indirect
modernc.org/cc/v3 v3.40.0 // indirect
modernc.org/ccgo/v3 v3.16.13 // indirect
modernc.org/libc v1.29.0 // indirect
modernc.org/mathutil v1.6.0 // indirect
modernc.org/memory v1.7.2 // indirect
modernc.org/opt v0.1.3 // indirect
modernc.org/strutil v1.1.3 // indirect
modernc.org/token v1.0.1 // indirect
)