forked from ontio/ontology
-
Notifications
You must be signed in to change notification settings - Fork 0
/
go.mod
39 lines (36 loc) · 1.53 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
38
39
module github.com/ontio/ontology
go 1.12
require (
github.com/JohnCGriffin/overflow v0.0.0-20170615021017-4d914c927216
github.com/Workiva/go-datastructures v1.0.50 // indirect
github.com/blang/semver v3.5.1+incompatible
github.com/emirpasic/gods v1.12.0 // indirect
github.com/ethereum/go-ethereum v1.9.13
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.9
github.com/ontio/ontology-eventbus v0.9.1
github.com/ontio/wagon v0.4.1
github.com/orcaman/concurrent-map v0.0.0-20190826125027-8c72a8bb44f6 // indirect
github.com/pborman/uuid v1.2.0
github.com/prometheus/client_golang v0.9.1
github.com/scylladb/go-set v1.0.2
github.com/stretchr/testify v1.4.0
github.com/syndtr/goleveldb v1.0.1-0.20190923125748-758128399b1d
github.com/urfave/cli v1.22.1
github.com/valyala/bytebufferpool v1.0.0
golang.org/x/crypto v0.0.0-20200311171314-f7b00557c8c4
golang.org/x/net v0.0.0-20200301022130-244492dfa37a
)
replace (
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
)