This repository has been archived by the owner on Dec 7, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 51
/
go.mod
53 lines (49 loc) · 2.24 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
module github.com/HackIllinois/api
replace github.com/arbor-dev/arbor => github.com/HackIllinois/arbor v0.3.1-0.20220625214746-96b56633f2e3
require (
github.com/arbor-dev/arbor v0.3.0
github.com/aws/aws-sdk-go v1.34.0
github.com/dghubble/sling v1.4.0
github.com/go-playground/validator/v10 v10.10.0
github.com/golang-jwt/jwt/v4 v4.4.3
github.com/gorilla/mux v1.6.2
github.com/justinas/alice v0.0.0-20171023064455-03f45bd4b7da
github.com/levigross/grequests v0.0.0-20181123014746-f3f67e7783bb
github.com/prometheus/client_golang v1.12.1
github.com/thoas/stats v0.0.0-20181218120333-e97827ebd7ca
go.mongodb.org/mongo-driver v1.9.1
)
require (
github.com/beorn7/perks v1.0.1 // indirect
github.com/cespare/xxhash/v2 v2.1.2 // indirect
github.com/go-playground/locales v0.14.0 // indirect
github.com/go-playground/universal-translator v0.18.0 // indirect
github.com/go-stack/stack v1.8.0 // indirect
github.com/golang/protobuf v1.5.2 // indirect
github.com/golang/snappy v0.0.1 // indirect
github.com/google/go-querystring v1.1.0 // indirect
github.com/gorilla/context v0.0.0-20160226214623-1ea25387ff6f // indirect
github.com/gorilla/websocket v1.5.0 // indirect
github.com/jmespath/go-jmespath v0.3.0 // indirect
github.com/kennygrant/sanitize v1.2.3 // indirect
github.com/klauspost/compress v1.13.6 // indirect
github.com/koding/websocketproxy v0.0.0-20181220232114-7ed82d81a28c // indirect
github.com/leodido/go-urn v1.2.1 // indirect
github.com/matttproud/golang_protobuf_extensions v1.0.1 // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/prometheus/client_model v0.3.0 // indirect
github.com/prometheus/common v0.37.0 // indirect
github.com/prometheus/procfs v0.8.0 // indirect
github.com/syndtr/goleveldb v0.0.0-20170725064836-b89cc31ef797 // indirect
github.com/xdg-go/pbkdf2 v1.0.0 // indirect
github.com/xdg-go/scram v1.0.2 // indirect
github.com/xdg-go/stringprep v1.0.2 // indirect
github.com/youmark/pkcs8 v0.0.0-20181117223130-1be2e3e5546d // indirect
golang.org/x/crypto v0.1.0 // indirect
golang.org/x/net v0.7.0 // indirect
golang.org/x/sync v0.0.0-20220601150217-0de741cfad7f // indirect
golang.org/x/sys v0.5.0 // indirect
golang.org/x/text v0.7.0 // indirect
google.golang.org/protobuf v1.28.1 // indirect
)
go 1.18