Akron | fa55bb2 | 2025-05-26 15:10:42 +0200 | [diff] [blame] | 1 | module github.com/KorAP/KoralPipe-TermMapper |
Akron | fc3bd27 | 2025-04-04 16:15:44 +0200 | [diff] [blame] | 2 | |
Akron | 49ceeb4 | 2025-05-23 17:46:01 +0200 | [diff] [blame] | 3 | go 1.23.0 |
| 4 | |
| 5 | toolchain go1.23.9 |
Akron | fc3bd27 | 2025-04-04 16:15:44 +0200 | [diff] [blame] | 6 | |
Akron | 2995d6d | 2025-05-23 16:55:45 +0200 | [diff] [blame] | 7 | require ( |
Akron | 1fc750e | 2025-05-26 16:54:18 +0200 | [diff] [blame^] | 8 | github.com/alecthomas/kong v1.11.0 |
Akron | 2995d6d | 2025-05-23 16:55:45 +0200 | [diff] [blame] | 9 | github.com/alecthomas/participle/v2 v2.1.4 |
Akron | 49ceeb4 | 2025-05-23 17:46:01 +0200 | [diff] [blame] | 10 | github.com/gofiber/fiber/v2 v2.52.8 |
| 11 | github.com/rs/zerolog v1.34.0 |
Akron | 2995d6d | 2025-05-23 16:55:45 +0200 | [diff] [blame] | 12 | github.com/stretchr/testify v1.10.0 |
| 13 | gopkg.in/yaml.v3 v3.0.1 |
| 14 | ) |
Akron | fc3bd27 | 2025-04-04 16:15:44 +0200 | [diff] [blame] | 15 | |
| 16 | require ( |
Akron | 49ceeb4 | 2025-05-23 17:46:01 +0200 | [diff] [blame] | 17 | github.com/andybalholm/brotli v1.1.1 // indirect |
Akron | fc3bd27 | 2025-04-04 16:15:44 +0200 | [diff] [blame] | 18 | github.com/davecgh/go-spew v1.1.1 // indirect |
Akron | 49ceeb4 | 2025-05-23 17:46:01 +0200 | [diff] [blame] | 19 | github.com/google/uuid v1.6.0 // indirect |
| 20 | github.com/klauspost/compress v1.18.0 // indirect |
| 21 | github.com/mattn/go-colorable v0.1.14 // indirect |
| 22 | github.com/mattn/go-isatty v0.0.20 // indirect |
| 23 | github.com/mattn/go-runewidth v0.0.16 // indirect |
Akron | fc3bd27 | 2025-04-04 16:15:44 +0200 | [diff] [blame] | 24 | github.com/pmezard/go-difflib v1.0.0 // indirect |
Akron | 49ceeb4 | 2025-05-23 17:46:01 +0200 | [diff] [blame] | 25 | github.com/rivo/uniseg v0.4.7 // indirect |
| 26 | github.com/valyala/bytebufferpool v1.0.0 // indirect |
| 27 | github.com/valyala/fasthttp v1.62.0 // indirect |
| 28 | golang.org/x/sys v0.33.0 // indirect |
Akron | fc3bd27 | 2025-04-04 16:15:44 +0200 | [diff] [blame] | 29 | ) |