forked from arp242/goatcounter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
go.mod
68 lines (62 loc) · 2.41 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
67
68
module zgo.at/goatcounter/v2
go 1.19
require (
code.soquee.net/otp v0.0.4
github.com/BurntSushi/toml v1.2.1
github.com/PuerkitoBio/goquery v1.8.0
github.com/bmatcuk/doublestar/v4 v4.6.0
github.com/boombuler/barcode v1.0.1
github.com/go-chi/chi/v5 v5.0.8
github.com/google/uuid v1.3.0
github.com/gorilla/websocket v1.5.0
github.com/mattn/go-sqlite3 v1.14.16
github.com/monoculum/formam/v3 v3.6.1-0.20221019142301-7634f9dcc123
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.5.0
golang.org/x/exp v0.0.0-20230113213754-f9f960f08ad4
golang.org/x/image v0.3.0
golang.org/x/net v0.5.0
golang.org/x/sync v0.1.0
golang.org/x/text v0.6.0
zgo.at/bgrun v0.0.0-00010101000000-000000000000
zgo.at/blackmail v0.0.0-20221021025740-b3fdfc32a1aa
zgo.at/errors v1.2.0
zgo.at/follow v0.0.0-20221021024812-dd647d64b369
zgo.at/gadget v1.0.0
zgo.at/guru v1.1.0
zgo.at/isbot v1.0.0
zgo.at/json v0.0.0-20221020004326-fe4f75bb278e
zgo.at/termtext v1.1.0
zgo.at/tz v0.0.0-20211017223207-006eae99adf6
zgo.at/z18n v0.0.0-20221020022658-4ea64eeb51d9
zgo.at/zcache v1.2.0
zgo.at/zcache/v2 v2.1.0
zgo.at/zdb v0.0.0-20221105060706-d862504dc723
zgo.at/zhttp v0.0.0-20221020124111-c3011d53484c
zgo.at/zli v0.0.0-20221012220610-d6a5a841b943
zgo.at/zlog v0.0.0-20211017235224-dd4772ddf860
zgo.at/zprof v0.0.0-20211217104121-c3c12596d8f0
zgo.at/zstd v0.0.0-20221224014507-b280051cca98
zgo.at/ztpl v0.0.0-20221123113745-a7d69d18ddbe
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.1 // indirect
github.com/fsnotify/fsnotify v1.6.0 // indirect
github.com/lib/pq v1.10.7 // indirect
github.com/mattn/go-runewidth v0.0.13 // indirect
github.com/oschwald/maxminddb-golang v1.10.0 // indirect
github.com/rivo/uniseg v0.2.0 // indirect
golang.org/x/mod v0.6.0 // indirect
golang.org/x/sys v0.4.0 // indirect
golang.org/x/term v0.4.0 // indirect
golang.org/x/tools v0.2.0 // indirect
)