-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathgo.mod
More file actions
26 lines (22 loc) · 811 Bytes
/
go.mod
File metadata and controls
26 lines (22 loc) · 811 Bytes
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
module github.com/mikuta0407/misskey-cli
go 1.19
require (
github.com/BurntSushi/toml v0.3.1
github.com/buger/jsonparser v1.1.1
github.com/spf13/cobra v1.5.0
golang.org/x/crypto v0.0.0-20221005025214-4161e89ecf1b
)
require (
github.com/google/uuid v1.3.0 // indirect
github.com/gorilla/websocket v1.4.2 // indirect
github.com/mattn/go-isatty v0.0.16 // indirect
github.com/sacOO7/go-logger v0.0.0-20180719173527-9ac9add5a50d // indirect
github.com/sacOO7/gowebsocket v0.0.0-20221109081133-70ac927be105 // indirect
)
require (
github.com/inconshreveable/mousetrap v1.0.1 // indirect
github.com/mattn/go-colorable v0.1.13
github.com/spf13/pflag v1.0.5 // indirect
golang.org/x/sys v0.0.0-20220811171246-fbc7d0a398ab // indirect
golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1 // indirect
)