-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
go.mod
executable file
·46 lines (36 loc) · 1.2 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
module github.com/wizzomafizzo/mrext
go 1.18
require github.com/magefile/mage v1.13.0
require github.com/mattn/go-sqlite3 v1.14.14
require github.com/rthornton128/goncurses v0.0.0-20220628231859-fd57939296e5
require golang.org/x/exp v0.0.0-20221031165847-c99f073a8326
require (
github.com/stretchr/testify v1.8.1 // indirect
gopkg.in/ini.v1 v1.67.0
)
require github.com/fsnotify/fsnotify v1.6.0
require (
github.com/BurntSushi/toml v1.2.1 // indirect
github.com/miekg/dns v1.1.55 // indirect
golang.org/x/mod v0.11.0 // indirect
golang.org/x/net v0.11.0 // indirect
golang.org/x/tools v0.10.0 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
)
require golang.org/x/term v0.9.0
require (
github.com/bendahl/uinput v1.6.0
github.com/c-seeger/mac-gen-go v0.0.0-20210816124238-465118e656da
github.com/clausecker/nfc/v2 v2.1.4
github.com/gocarina/gocsv v0.0.0-20230616125104-99d496ca653d
github.com/gorilla/mux v1.8.0
github.com/gorilla/websocket v1.5.0
github.com/hsanjuan/go-ndef v0.0.1
github.com/joho/godotenv v1.4.0
github.com/libp2p/zeroconf/v2 v2.2.0
github.com/rs/cors v1.8.2
github.com/txn2/txeh v1.4.0
golang.org/x/image v0.9.0
golang.org/x/sys v0.11.0
gopkg.in/natefinch/lumberjack.v2 v2.0.0
)