forked from robustirc/robustirc
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgo.mod
More file actions
44 lines (40 loc) · 1.8 KB
/
go.mod
File metadata and controls
44 lines (40 loc) · 1.8 KB
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
module github.com/robustirc/robustirc
require (
github.com/BurntSushi/toml v0.3.1
github.com/armon/go-metrics v0.3.3
github.com/golang/protobuf v1.3.2
github.com/hashicorp/go-hclog v0.14.1
github.com/hashicorp/raft v1.1.2
github.com/prometheus/client_golang v1.4.0
github.com/prometheus/common v0.9.1
github.com/robustirc/bridge v1.7.4-0.20200723135014-0da71ab55111
github.com/robustirc/internal v0.0.0-20220204120844-14d7a6b96cf5
github.com/robustirc/rafthttp v0.0.0-20200730141850-f3c10122992a
github.com/sergi/go-diff v1.0.0
github.com/stapelberg/glog v0.0.0-20160603071839-f15f13b47694
github.com/syndtr/goleveldb v0.0.0-20181012014443-6b91fda63f2e
golang.org/x/net v0.0.0-20190613194153-d28f0bde5980
gopkg.in/sorcix/irc.v2 v2.0.0-20190306112350-8d7a73540b90
)
require (
github.com/beorn7/perks v1.0.1 // indirect
github.com/cespare/xxhash/v2 v2.1.1 // indirect
github.com/fatih/color v1.7.0 // indirect
github.com/golang/snappy v0.0.0-20180518054509-2e65f85255db // indirect
github.com/hashicorp/go-immutable-radix v1.0.0 // indirect
github.com/hashicorp/go-msgpack v0.5.5 // indirect
github.com/hashicorp/golang-lru v0.5.0 // indirect
github.com/mattn/go-colorable v0.1.4 // indirect
github.com/mattn/go-isatty v0.0.10 // indirect
github.com/matttproud/golang_protobuf_extensions v1.0.1 // indirect
github.com/onsi/ginkgo v1.6.0 // indirect
github.com/onsi/gomega v1.4.2 // indirect
github.com/prometheus/client_model v0.2.0 // indirect
github.com/prometheus/procfs v0.0.8 // indirect
github.com/rjeczalik/notify v0.9.2 // indirect
golang.org/x/sync v0.0.0-20190911185100-cd5d95a43a6e // indirect
golang.org/x/sys v0.0.0-20200122134326-e047566fdf82 // indirect
golang.org/x/text v0.3.0 // indirect
)
// replace github.com/robustirc/internal => /home/michael/go/src/github.com/robustirc/internal
go 1.20