-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathgo.mod
More file actions
66 lines (63 loc) · 3.18 KB
/
go.mod
File metadata and controls
66 lines (63 loc) · 3.18 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
module github.com/provideplatform/privacy
go 1.17
require (
github.com/consensys/gnark v0.7.1
github.com/consensys/gnark-crypto v0.7.0
github.com/gin-gonic/gin v1.7.0
github.com/golang-migrate/migrate v3.5.4+incompatible
github.com/jinzhu/gorm v1.9.16
github.com/joho/godotenv v1.3.0
github.com/kthomas/go-db-config v0.0.0-20200612131637-ec0436a9685e
github.com/kthomas/go-logger v0.0.0-20210526080020-a63672d0724c
github.com/kthomas/go-natsutil v0.0.0-20210911093321-41b91674d612
github.com/kthomas/go-redisutil v0.0.0-20200602073431-aa49de17e9ff
github.com/kthomas/go.uuid v1.2.1-0.20190324131420-28d1fa77e9a4
github.com/nats-io/nats.go v1.12.0
github.com/providenetwork/merkletree v0.2.1-0.20210730012829-7003f45aa7dd
github.com/providenetwork/smt v0.2.1-0.20210730053242-2e71de60adeb
github.com/provideplatform/ident v0.9.10-0.20210801033801-297a9eac7ffc
github.com/provideplatform/provide-go v0.0.0-20231124233146-30b51fac29fc
github.com/stretchr/testify v1.7.1
)
require (
github.com/badoux/checkmail v0.0.0-20200623144435-f9f80cb795fa // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/dgrijalva/jwt-go v3.2.0+incompatible // indirect
github.com/form3tech-oss/jwt-go v3.2.2+incompatible // indirect
github.com/fxamacker/cbor/v2 v2.2.0 // indirect
github.com/gin-contrib/sse v0.1.0 // indirect
github.com/go-playground/locales v0.13.0 // indirect
github.com/go-playground/universal-translator v0.17.0 // indirect
github.com/go-playground/validator/v10 v10.4.1 // indirect
github.com/go-redis/redis v6.15.6+incompatible // indirect
github.com/go-redsync/redsync v1.3.1 // indirect
github.com/golang/protobuf v1.5.0 // indirect
github.com/gomodule/redigo v2.0.0+incompatible // indirect
github.com/jinzhu/inflection v1.0.0 // indirect
github.com/json-iterator/go v1.1.9 // indirect
github.com/kr/text v0.2.0 // indirect
github.com/kthomas/go-auth0 v0.0.0-20210417042937-27d1d2dadf19 // indirect
github.com/kthomas/go-pgputil v0.0.0-20200602073402-784e96083943 // indirect
github.com/kthomas/go-self-signed-cert v0.0.0-20200602041729-f9878375d46e // indirect
github.com/kthomas/logrus v1.8.2-0.20210411034302-11586d6ce483 // indirect
github.com/leodido/go-urn v1.2.0 // indirect
github.com/lib/pq v1.2.0 // indirect
github.com/mattn/go-isatty v0.0.12 // indirect
github.com/mmcloughlin/addchain v0.4.0 // indirect
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
github.com/modern-go/reflect2 v1.0.1 // indirect
github.com/nats-io/nkeys v0.3.0 // indirect
github.com/nats-io/nuid v1.0.1 // indirect
github.com/ockam-network/did v0.1.3 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/rogpeppe/go-internal v1.9.0 // indirect
github.com/rs/zerolog v1.26.1 // indirect
github.com/ugorji/go/codec v1.1.7 // indirect
github.com/vincent-petithory/dataurl v0.0.0-20191104211930-d1553a71de50 // indirect
github.com/x448/float16 v0.8.4 // 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.3.0 // indirect
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect
)