forked from DNAProject/DNA
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgo.mod
37 lines (34 loc) · 1.48 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
module github.com/DNAProject/DNA
go 1.12
require (
github.com/JohnCGriffin/overflow v0.0.0-20170615021017-4d914c927216
github.com/Workiva/go-datastructures v1.0.50 // indirect
github.com/emirpasic/gods v1.12.0 // indirect
github.com/ethereum/go-ethereum v1.9.6
github.com/go-interpreter/wagon v0.6.0
github.com/gogo/protobuf v1.3.1 // indirect
github.com/gorilla/websocket v1.4.1
github.com/gosuri/uilive v0.0.3 // indirect
github.com/gosuri/uiprogress v0.0.1
github.com/hashicorp/golang-lru v0.5.3
github.com/howeyc/gopass v0.0.0-20190910152052-7cb4b85ec19c
github.com/itchyny/base58-go v0.1.0
github.com/mattn/go-isatty v0.0.10 // indirect
github.com/ontio/ontology-crypto v1.0.8
github.com/ontio/ontology-eventbus v0.9.1
github.com/orcaman/concurrent-map v0.0.0-20190826125027-8c72a8bb44f6 // indirect
github.com/pborman/uuid v1.2.0
github.com/stretchr/testify v1.3.0
github.com/syndtr/goleveldb v1.0.0
github.com/urfave/cli v1.22.1
github.com/valyala/bytebufferpool v1.0.0
golang.org/x/crypto v0.0.0-20191029031824-8986dd9e96cf
golang.org/x/net v0.0.0-20191028085509-fe3aa8a45271
)
replace (
github.com/go-interpreter/wagon => github.com/ontio/wagon v0.3.1-0.20191223040208-db6073fb2776
golang.org/x/crypto => github.com/golang/crypto v0.0.0-20191029031824-8986dd9e96cf
golang.org/x/net => github.com/golang/net v0.0.0-20191028085509-fe3aa8a45271
golang.org/x/sys => github.com/golang/sys v0.0.0-20190412213103-97732733099d
golang.org/x/text => github.com/golang/text v0.3.0
)