forked from monome/maiden
-
Notifications
You must be signed in to change notification settings - Fork 1
/
go.mod
33 lines (28 loc) · 1.33 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
module github.com/monome/maiden
go 1.12
require (
github.com/BurntSushi/toml v0.3.1 // indirect
github.com/coreos/go-systemd v0.0.0-20181031085051-9002847aa142
github.com/gin-gonic/gin v1.7.7
github.com/go-playground/validator/v10 v10.10.1 // indirect
github.com/godbus/dbus v0.0.0-20181101234600-2ff6f7ffd60f // indirect
github.com/golang/protobuf v1.5.2 // indirect
github.com/inconshreveable/mousetrap v1.0.0 // indirect
github.com/json-iterator/go v1.1.12 // indirect
github.com/mattn/go-isatty v0.0.14 // indirect
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
github.com/monome/maiden/pkg/catalog v0.0.0-00010101000000-000000000000
github.com/monome/maiden/pkg/dust v0.0.0-00010101000000-000000000000
github.com/monome/maiden/pkg/lines v0.0.0-00010101000000-000000000000
github.com/sirupsen/logrus v1.4.1
github.com/spf13/cobra v0.0.3
github.com/spf13/viper v1.3.2
github.com/ugorji/go v1.2.7 // indirect
golang.org/x/crypto v0.0.0-20220321153916-2c7772ba3064 // indirect
golang.org/x/sys v0.0.0-20220319134239-a9b59b0215f8 // indirect
google.golang.org/protobuf v1.27.1 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
)
replace github.com/monome/maiden/pkg/lines => ./pkg/lines
replace github.com/monome/maiden/pkg/catalog => ./pkg/catalog
replace github.com/monome/maiden/pkg/dust => ./pkg/dust