-
Notifications
You must be signed in to change notification settings - Fork 25
/
go.mod
36 lines (33 loc) · 1.47 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
// Flexpool Solo - A lightweight SOLO Ethereum mining pool
// Copyright (C) 2020 Flexpool
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as published
// by the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Affero General Public License for more details.
//
// You should have received a copy of the GNU Affero General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.
module github.com/flexpool/solo
go 1.14
require (
github.com/btcsuite/btcd v0.20.1-beta // indirect
github.com/dustin/go-humanize v1.0.0
github.com/ethereum/go-ethereum v1.9.16
github.com/flexpool/ethash-go v1.1.0
github.com/kelseyhightower/envconfig v1.4.0
github.com/mgutz/ansi v0.0.0-20200706080929-d51e80ef957d // indirect
github.com/mitchellh/mapstructure v1.3.2
github.com/pkg/errors v0.9.1
github.com/sirupsen/logrus v1.6.0
github.com/syndtr/goleveldb v1.0.1-0.20190923125748-758128399b1d
github.com/vmihailenco/msgpack/v5 v5.0.0-beta.1
github.com/x-cray/logrus-prefixed-formatter v0.5.2
golang.org/x/crypto v0.0.0-20200709230013-948cd5f35899 // indirect
golang.org/x/sys v0.0.0-20200625212154-ddb9806d33ae // indirect
)