source: code/trunk/go.mod@ 51

Last change on this file since 51 was 48, checked in by yakumo.izuru, 20 months ago

Reorganized the codebase, add support for flag modus operandi

Signed-off-by: Izuru Yakumo <yakumo.izuru@…>

File size: 1.1 KB
Line 
1module git.chaotic.ninja/yakumo.izuru/simplytranslate-mod
2
3go 1.20
4
5require (
6 codeberg.org/SimpleWeb/SimplyTranslate/engines v0.0.0-20230920112526-526a2c0ed1dd
7 github.com/PuerkitoBio/goquery v1.8.1
8 github.com/gofiber/fiber/v2 v2.49.2
9 github.com/gofiber/template/html/v2 v2.0.5
10)
11
12require (
13 github.com/andybalholm/brotli v1.0.5 // indirect
14 github.com/andybalholm/cascadia v1.3.1 // indirect
15 github.com/gofiber/template v1.8.2 // indirect
16 github.com/gofiber/utils v1.1.0 // indirect
17 github.com/google/uuid v1.3.1 // indirect
18 github.com/klauspost/compress v1.16.7 // indirect
19 github.com/mattn/go-colorable v0.1.13 // indirect
20 github.com/mattn/go-isatty v0.0.19 // indirect
21 github.com/mattn/go-runewidth v0.0.15 // indirect
22 github.com/rivo/uniseg v0.2.0 // indirect
23 github.com/valyala/bytebufferpool v1.0.0 // indirect
24 github.com/valyala/fasthttp v1.49.0 // indirect
25 github.com/valyala/tcplisten v1.0.0 // indirect
26 golang.org/x/net v0.8.0 // indirect
27 golang.org/x/sys v0.12.0 // indirect
28)
29
30replace codeberg.org/SimpleWeb/SimplyTranslate/engines v0.0.0 => ./engines
Note: See TracBrowser for help on using the repository browser.