-
Notifications
You must be signed in to change notification settings - Fork 17
/
go.mod
65 lines (62 loc) · 2.46 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
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
module github.com/rubixchain/rubixgoplatform
go 1.16
require (
github.com/fxamacker/cbor v1.5.1
github.com/gorilla/sessions v1.2.1
github.com/ipfs/go-ipfs-api v0.3.0
github.com/ipfs/go-ipfs-files v0.1.1
github.com/swaggo/swag v1.16.1
github.com/syndtr/goleveldb v1.0.1-0.20210819022825-2ae1ddf74ef7
golang.org/x/crypto v0.9.0
golang.org/x/term v0.8.0
google.golang.org/grpc v1.54.0
google.golang.org/protobuf v1.30.0
)
require (
filippo.io/keygen v0.0.0-20230306160926-5201437acf8e // indirect
github.com/btcsuite/btcd v0.23.0 // indirect
github.com/decred/dcrd/dcrec/secp256k1 v1.0.4
github.com/decred/dcrd/dcrec/secp256k1/v4 v4.0.1 // indirect
github.com/denisenkom/go-mssqldb v0.12.3 // indirect
github.com/dgrijalva/jwt-go v3.2.0+incompatible
github.com/fatih/color v1.15.0
github.com/frankban/quicktest v1.14.0 // indirect
github.com/go-openapi/jsonreference v0.20.2 // indirect
github.com/go-openapi/spec v0.20.9 // indirect
github.com/go-openapi/swag v0.22.4 // indirect
github.com/gogo/protobuf v1.3.2 // indirect
github.com/golang-jwt/jwt/v5 v5.0.0
github.com/golang/snappy v0.0.4
github.com/google/uuid v1.6.0
github.com/gorilla/mux v1.8.0
github.com/ipfs/go-cid v0.2.0 // indirect
github.com/jackc/pgx/v5 v5.3.1 // indirect
github.com/jinzhu/gorm v1.9.16
github.com/klauspost/cpuid/v2 v2.2.5 // indirect
github.com/libp2p/go-libp2p-core v0.16.1 // indirect
github.com/mattn/go-colorable v0.1.13
github.com/mattn/go-isatty v0.0.19
github.com/mattn/go-sqlite3 v1.14.16 // indirect
github.com/microsoft/go-mssqldb v0.20.0 // indirect
github.com/mitchellh/go-homedir v1.1.0
github.com/mitchellh/mapstructure v1.5.0
github.com/multiformats/go-base32 v0.0.4 // indirect
github.com/multiformats/go-multiaddr v0.5.0 // indirect
github.com/multiformats/go-multihash v0.1.0 // indirect
github.com/natefinch/atomic v1.0.1
github.com/pierrec/lz4 v2.6.1+incompatible
github.com/stretchr/testify v1.8.3 // indirect
github.com/swaggo/files v1.0.0 // indirect
github.com/swaggo/http-swagger v1.3.4
github.com/tyler-smith/go-bip32 v1.0.0
github.com/tyler-smith/go-bip39 v1.1.0
github.com/whyrusleeping/tar-utils v0.0.0-20201201191210-20a61371de5b // indirect
golang.org/x/net v0.10.0
golang.org/x/tools v0.9.3 // indirect
google.golang.org/genproto v0.0.0-20230410155749-daa745c078e1 // indirect
gorm.io/driver/mysql v1.4.7
gorm.io/driver/postgres v1.5.0
gorm.io/driver/sqlite v1.4.4
gorm.io/driver/sqlserver v1.4.2
gorm.io/gorm v1.24.7-0.20230306060331-85eaf9eeda11
)