bgammon/go.mod

44 lines
1.7 KiB
Modula-2
Raw Normal View History

2023-07-31 23:46:28 +00:00
module code.rocket9labs.com/tslocum/bgammon
2023-12-14 03:04:02 +00:00
go 1.17
2023-09-12 05:10:04 +00:00
2023-11-22 00:16:33 +00:00
require (
2024-07-30 20:57:23 +00:00
code.rocket9labs.com/tslocum/gotext v0.0.0-20240728181248-46f419ff143b
code.rocket9labs.com/tslocum/tabula v0.0.0-20240703054156-ce0b448f0999
github.com/alexedwards/argon2id v1.0.0
github.com/coder/websocket v1.8.12
2023-12-14 03:04:02 +00:00
github.com/gorilla/mux v1.8.1
2024-06-24 17:51:43 +00:00
github.com/jackc/pgx/v5 v5.6.0
2023-12-30 06:52:27 +00:00
github.com/jlouis/glicko2 v1.0.0
2023-12-14 03:04:02 +00:00
github.com/matcornic/hermes/v2 v2.1.0
2024-08-07 21:00:30 +00:00
golang.org/x/text v0.17.0
2023-11-22 00:16:33 +00:00
)
2023-09-12 05:10:04 +00:00
require (
2024-01-11 05:51:49 +00:00
code.rocket9labs.com/tslocum/bei v0.0.0-20240108012722-6db380cc190b // indirect
2023-12-14 03:04:02 +00:00
github.com/Masterminds/goutils v1.1.1 // indirect
github.com/Masterminds/semver v1.5.0 // indirect
github.com/Masterminds/sprig v2.22.0+incompatible // indirect
2024-06-24 17:51:43 +00:00
github.com/PuerkitoBio/goquery v1.9.2 // indirect
2023-12-14 03:04:02 +00:00
github.com/andybalholm/cascadia v1.3.2 // indirect
github.com/google/uuid v1.6.0 // indirect
2023-12-14 03:04:02 +00:00
github.com/gorilla/css v1.0.1 // indirect
2024-06-24 17:51:43 +00:00
github.com/huandu/xstrings v1.5.0 // indirect
2023-12-14 03:04:02 +00:00
github.com/imdario/mergo v0.3.16 // indirect
2023-11-22 00:16:33 +00:00
github.com/jackc/pgpassfile v1.0.0 // indirect
2024-06-24 17:51:43 +00:00
github.com/jackc/pgservicefile v0.0.0-20240606120523-5a60cdf6a761 // indirect
2023-12-14 03:04:02 +00:00
github.com/jaytaylor/html2text v0.0.0-20230321000545-74c2419ad056 // indirect
2024-07-22 22:27:09 +00:00
github.com/mattn/go-runewidth v0.0.16 // indirect
2023-12-14 03:04:02 +00:00
github.com/mitchellh/copystructure v1.2.0 // indirect
github.com/mitchellh/reflectwalk v1.0.2 // indirect
github.com/olekukonko/tablewriter v0.0.5 // indirect
github.com/rivo/uniseg v0.4.7 // indirect
2023-12-14 03:04:02 +00:00
github.com/russross/blackfriday/v2 v2.1.0 // indirect
github.com/ssor/bom v0.0.0-20170718123548-6386211fdfcf // indirect
github.com/vanng822/css v1.0.1 // indirect
2024-06-24 17:51:43 +00:00
github.com/vanng822/go-premailer v1.21.0 // indirect
2024-08-07 21:00:30 +00:00
golang.org/x/crypto v0.26.0 // indirect
golang.org/x/net v0.28.0 // indirect
golang.org/x/sys v0.24.0 // indirect
2023-09-12 05:10:04 +00:00
)