| Akron | 2ef703c | 2025-07-03 15:57:42 +0200 | [diff] [blame] | 1 | module github.com/KorAP/Koral-Mapper |
| Akron | fc3bd27 | 2025-04-04 16:15:44 +0200 | [diff] [blame] | 2 | |
| Akron | 06500bc | 2026-02-18 11:46:32 +0100 | [diff] [blame] | 3 | go 1.24.0 |
| Akron | fc3bd27 | 2025-04-04 16:15:44 +0200 | [diff] [blame] | 4 | |
| Akron | 2995d6d | 2025-05-23 16:55:45 +0200 | [diff] [blame] | 5 | require ( |
| Akron | 06500bc | 2026-02-18 11:46:32 +0100 | [diff] [blame] | 6 | github.com/alecthomas/kong v1.14.0 |
| Akron | 2995d6d | 2025-05-23 16:55:45 +0200 | [diff] [blame] | 7 | github.com/alecthomas/participle/v2 v2.1.4 |
| Akron | 06500bc | 2026-02-18 11:46:32 +0100 | [diff] [blame] | 8 | github.com/gofiber/fiber/v2 v2.52.11 |
| 9 | github.com/orisano/gosax v1.1.4 |
| Akron | 49ceeb4 | 2025-05-23 17:46:01 +0200 | [diff] [blame] | 10 | github.com/rs/zerolog v1.34.0 |
| Akron | 06500bc | 2026-02-18 11:46:32 +0100 | [diff] [blame] | 11 | github.com/stretchr/testify v1.11.1 |
| Akron | 2995d6d | 2025-05-23 16:55:45 +0200 | [diff] [blame] | 12 | gopkg.in/yaml.v3 v3.0.1 |
| 13 | ) |
| Akron | fc3bd27 | 2025-04-04 16:15:44 +0200 | [diff] [blame] | 14 | |
| 15 | require ( |
| Akron | 06500bc | 2026-02-18 11:46:32 +0100 | [diff] [blame] | 16 | github.com/andybalholm/brotli v1.2.0 // indirect |
| 17 | github.com/clipperhouse/uax29/v2 v2.7.0 // 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 |
| Akron | 06500bc | 2026-02-18 11:46:32 +0100 | [diff] [blame] | 20 | github.com/klauspost/compress v1.18.4 // indirect |
| Akron | 49ceeb4 | 2025-05-23 17:46:01 +0200 | [diff] [blame] | 21 | github.com/mattn/go-colorable v0.1.14 // indirect |
| 22 | github.com/mattn/go-isatty v0.0.20 // indirect |
| Akron | 06500bc | 2026-02-18 11:46:32 +0100 | [diff] [blame] | 23 | github.com/mattn/go-runewidth v0.0.20 // 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/valyala/bytebufferpool v1.0.0 // indirect |
| Akron | 06500bc | 2026-02-18 11:46:32 +0100 | [diff] [blame] | 26 | github.com/valyala/fasthttp v1.69.0 // indirect |
| 27 | golang.org/x/sys v0.41.0 // indirect |
| Akron | fc3bd27 | 2025-04-04 16:15:44 +0200 | [diff] [blame] | 28 | ) |