tgo.mod - scoreboard - Interactive scoreboard for CTF-like games
(HTM) git clone git://git.z3bra.org/scoreboard.git
(DIR) Log
(DIR) Files
(DIR) Refs
---
tgo.mod (1105B)
---
1 module challenge/scoreboard
2
3 go 1.20
4
5 require (
6 github.com/dustin/go-humanize v1.0.1
7 github.com/gdamore/tcell/v2 v2.7.4
8 github.com/rivo/tview v0.0.0-20240921122403-a64fc48d7654
9 golang.org/x/crypto v0.27.0
10 modernc.org/sqlite v1.33.1
11 )
12
13 require (
14 github.com/gdamore/encoding v1.0.0 // indirect
15 github.com/google/uuid v1.6.0 // indirect
16 github.com/hashicorp/golang-lru/v2 v2.0.7 // indirect
17 github.com/lucasb-eyer/go-colorful v1.2.0 // indirect
18 github.com/mattn/go-isatty v0.0.20 // indirect
19 github.com/mattn/go-runewidth v0.0.15 // indirect
20 github.com/ncruces/go-strftime v0.1.9 // indirect
21 github.com/remyoudompheng/bigfft v0.0.0-20230129092748-24d4a6f8daec // indirect
22 github.com/rivo/uniseg v0.4.7 // indirect
23 golang.org/x/sys v0.25.0 // indirect
24 golang.org/x/term v0.24.0 // indirect
25 golang.org/x/text v0.18.0 // indirect
26 modernc.org/gc/v3 v3.0.0-20240107210532-573471604cb6 // indirect
27 modernc.org/libc v1.55.3 // indirect
28 modernc.org/mathutil v1.6.0 // indirect
29 modernc.org/memory v1.8.0 // indirect
30 modernc.org/strutil v1.2.0 // indirect
31 modernc.org/token v1.1.0 // indirect
32 )