-
-
Notifications
You must be signed in to change notification settings - Fork 190
/
go.mod
66 lines (60 loc) · 2.35 KB
/
go.mod
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
module zgo.at/goatcounter/v2
go 1.23.0
require (
code.soquee.net/otp v0.0.4
github.com/BurntSushi/toml v1.4.0
github.com/PuerkitoBio/goquery v1.9.2
github.com/bmatcuk/doublestar/v4 v4.6.1
github.com/boombuler/barcode v1.0.2
github.com/go-chi/chi/v5 v5.1.0
github.com/google/uuid v1.6.0
github.com/gorilla/websocket v1.5.3
github.com/mattn/go-sqlite3 v1.14.22
github.com/monoculum/formam/v3 v3.6.1-0.20221106124510-6a93f49ac1f8
github.com/oschwald/geoip2-golang v1.4.0
github.com/russross/blackfriday/v2 v2.1.0
github.com/teamwork/reload v1.4.2
golang.org/x/crypto v0.26.0
golang.org/x/image v0.19.0
golang.org/x/net v0.28.0
golang.org/x/sync v0.8.0
golang.org/x/text v0.17.0
zgo.at/bgrun v0.0.0-00010101000000-000000000000
zgo.at/blackmail v0.0.0-20221021025740-b3fdfc32a1aa
zgo.at/errors v1.3.0
zgo.at/follow v0.0.0-20240522232612-673fb184d32f
zgo.at/gadget v1.0.0
zgo.at/guru v1.2.0
zgo.at/isbot v1.0.0
zgo.at/json v0.0.0-20221020004326-fe4f75bb278e
zgo.at/termtext v1.5.0
zgo.at/tz v0.0.0-20240819050900-3c7bf6122612
zgo.at/z18n v0.0.0-20240522230155-4d5af439f8c4
zgo.at/zcache v1.2.0
zgo.at/zcache/v2 v2.1.0
zgo.at/zdb v0.0.0-20240820041039-abefdffc704f
zgo.at/zhttp v0.0.0-20240819012318-b761c83c740e
zgo.at/zli v0.0.0-20240614180544-47534b1ce136
zgo.at/zlog v0.0.0-20211017235224-dd4772ddf860
zgo.at/zprof v0.0.0-20211217104121-c3c12596d8f0
zgo.at/zstd v0.0.0-20240801180155-977f077a1a7f
zgo.at/ztpl v0.0.0-20240522225602-574aca1079e7
zgo.at/zvalidate v0.0.0-20221021025449-cb54fa8efade
)
// Need to finish this and put it in its own repo.
replace zgo.at/bgrun => ./bgrun
// https://github.com/oschwald/maxminddb-golang/pull/75
replace github.com/oschwald/maxminddb-golang => github.com/arp242/maxminddb-golang v1.8.1-0.20221021031716-eb1bbbb3fc5d
// https://github.com/oschwald/geoip2-golang/pull/68
replace github.com/oschwald/geoip2-golang => github.com/arp242/geoip2-golang v1.4.1-0.20220825052315-37df63691c60
require (
github.com/andybalholm/cascadia v1.3.2 // indirect
github.com/fsnotify/fsnotify v1.7.0 // indirect
github.com/lib/pq v1.10.9 // indirect
github.com/oschwald/maxminddb-golang v1.10.0 // indirect
github.com/rivo/uniseg v0.4.7 // indirect
golang.org/x/mod v0.17.0 // indirect
golang.org/x/sys v0.23.0 // indirect
golang.org/x/tools v0.21.1-0.20240508182429-e35e4ccd0d2d // indirect
zgo.at/runewidth v0.1.0 // indirect
)