| 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 | 2d53b93 | 2026-07-15 12:12:54 +0200 | [diff] [blame^] | 3 | go 1.26.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 ( |
| dependabot[bot] | 0d09084 | 2026-04-07 03:08:34 +0000 | [diff] [blame] | 6 | github.com/alecthomas/kong v1.15.0 |
| Akron | 2995d6d | 2025-05-23 16:55:45 +0200 | [diff] [blame] | 7 | github.com/alecthomas/participle/v2 v2.1.4 |
| Akron | 2d53b93 | 2026-07-15 12:12:54 +0200 | [diff] [blame^] | 8 | github.com/gofiber/fiber/v3 v3.4.0 |
| Akron | 06500bc | 2026-02-18 11:46:32 +0100 | [diff] [blame] | 9 | github.com/orisano/gosax v1.1.4 |
| dependabot[bot] | 086433c | 2026-04-21 03:08:16 +0000 | [diff] [blame] | 10 | github.com/rs/zerolog v1.35.1 |
| 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 | 841f6ab | 2026-07-15 10:50:01 +0200 | [diff] [blame] | 16 | github.com/andybalholm/brotli v1.2.2 // indirect |
| Akron | fc3bd27 | 2025-04-04 16:15:44 +0200 | [diff] [blame] | 17 | github.com/davecgh/go-spew v1.1.1 // indirect |
| Akron | 2d53b93 | 2026-07-15 12:12:54 +0200 | [diff] [blame^] | 18 | github.com/gofiber/schema v1.8.0 // indirect |
| 19 | github.com/gofiber/utils/v2 v2.1.1 // indirect |
| Akron | 49ceeb4 | 2025-05-23 17:46:01 +0200 | [diff] [blame] | 20 | github.com/google/uuid v1.6.0 // indirect |
| Akron | 841f6ab | 2026-07-15 10:50:01 +0200 | [diff] [blame] | 21 | github.com/klauspost/compress v1.19.0 // indirect |
| 22 | github.com/mattn/go-colorable v0.1.15 // indirect |
| 23 | github.com/mattn/go-isatty v0.0.22 // indirect |
| Akron | 841f6ab | 2026-07-15 10:50:01 +0200 | [diff] [blame] | 24 | github.com/philhofer/fwd v1.2.0 // indirect |
| Akron | fc3bd27 | 2025-04-04 16:15:44 +0200 | [diff] [blame] | 25 | github.com/pmezard/go-difflib v1.0.0 // indirect |
| Akron | 841f6ab | 2026-07-15 10:50:01 +0200 | [diff] [blame] | 26 | github.com/tinylib/msgp v1.6.4 // indirect |
| Akron | 49ceeb4 | 2025-05-23 17:46:01 +0200 | [diff] [blame] | 27 | github.com/valyala/bytebufferpool v1.0.0 // indirect |
| Akron | 841f6ab | 2026-07-15 10:50:01 +0200 | [diff] [blame] | 28 | github.com/valyala/fasthttp v1.72.0 // indirect |
| Akron | 2d53b93 | 2026-07-15 12:12:54 +0200 | [diff] [blame^] | 29 | golang.org/x/crypto v0.53.0 // indirect |
| 30 | golang.org/x/net v0.56.0 // indirect |
| Akron | 841f6ab | 2026-07-15 10:50:01 +0200 | [diff] [blame] | 31 | golang.org/x/sys v0.47.0 // indirect |
| Akron | 2d53b93 | 2026-07-15 12:12:54 +0200 | [diff] [blame^] | 32 | golang.org/x/text v0.38.0 // indirect |
| Akron | fc3bd27 | 2025-04-04 16:15:44 +0200 | [diff] [blame] | 33 | ) |