annotate calsync/go.mod @ 60:3b0595c2bf03

logging and small refactors
author drewp@bigasterisk.com
date Fri, 06 Sep 2024 16:41:48 -0700
parents 2991c1166852
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
49
2991c1166852 start calsync in go. Calendar list seems to sync
drewp@bigasterisk.com
parents:
diff changeset
1 module bigasterisk.com/go/gcalendarwatch
2991c1166852 start calsync in go. Calendar list seems to sync
drewp@bigasterisk.com
parents:
diff changeset
2
2991c1166852 start calsync in go. Calendar list seems to sync
drewp@bigasterisk.com
parents:
diff changeset
3 go 1.21.1
2991c1166852 start calsync in go. Calendar list seems to sync
drewp@bigasterisk.com
parents:
diff changeset
4
2991c1166852 start calsync in go. Calendar list seems to sync
drewp@bigasterisk.com
parents:
diff changeset
5 require (
60
3b0595c2bf03 logging and small refactors
drewp@bigasterisk.com
parents: 49
diff changeset
6 github.com/dchest/uniuri v1.2.0
3b0595c2bf03 logging and small refactors
drewp@bigasterisk.com
parents: 49
diff changeset
7 github.com/gorilla/mux v1.8.1
3b0595c2bf03 logging and small refactors
drewp@bigasterisk.com
parents: 49
diff changeset
8 go.mongodb.org/mongo-driver v1.16.1
3b0595c2bf03 logging and small refactors
drewp@bigasterisk.com
parents: 49
diff changeset
9 golang.org/x/oauth2 v0.22.0
3b0595c2bf03 logging and small refactors
drewp@bigasterisk.com
parents: 49
diff changeset
10 google.golang.org/api v0.192.0
3b0595c2bf03 logging and small refactors
drewp@bigasterisk.com
parents: 49
diff changeset
11 )
3b0595c2bf03 logging and small refactors
drewp@bigasterisk.com
parents: 49
diff changeset
12
3b0595c2bf03 logging and small refactors
drewp@bigasterisk.com
parents: 49
diff changeset
13 require (
49
2991c1166852 start calsync in go. Calendar list seems to sync
drewp@bigasterisk.com
parents:
diff changeset
14 cloud.google.com/go/auth v0.8.1 // indirect
2991c1166852 start calsync in go. Calendar list seems to sync
drewp@bigasterisk.com
parents:
diff changeset
15 cloud.google.com/go/auth/oauth2adapt v0.2.3 // indirect
2991c1166852 start calsync in go. Calendar list seems to sync
drewp@bigasterisk.com
parents:
diff changeset
16 cloud.google.com/go/compute/metadata v0.5.0 // indirect
60
3b0595c2bf03 logging and small refactors
drewp@bigasterisk.com
parents: 49
diff changeset
17 github.com/aquilax/truncate v1.0.0 // indirect
49
2991c1166852 start calsync in go. Calendar list seems to sync
drewp@bigasterisk.com
parents:
diff changeset
18 github.com/felixge/httpsnoop v1.0.4 // indirect
2991c1166852 start calsync in go. Calendar list seems to sync
drewp@bigasterisk.com
parents:
diff changeset
19 github.com/go-logr/logr v1.4.2 // indirect
2991c1166852 start calsync in go. Calendar list seems to sync
drewp@bigasterisk.com
parents:
diff changeset
20 github.com/go-logr/stdr v1.2.2 // indirect
2991c1166852 start calsync in go. Calendar list seems to sync
drewp@bigasterisk.com
parents:
diff changeset
21 github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
2991c1166852 start calsync in go. Calendar list seems to sync
drewp@bigasterisk.com
parents:
diff changeset
22 github.com/golang/snappy v0.0.4 // indirect
2991c1166852 start calsync in go. Calendar list seems to sync
drewp@bigasterisk.com
parents:
diff changeset
23 github.com/google/s2a-go v0.1.8 // indirect
2991c1166852 start calsync in go. Calendar list seems to sync
drewp@bigasterisk.com
parents:
diff changeset
24 github.com/google/uuid v1.6.0 // indirect
2991c1166852 start calsync in go. Calendar list seems to sync
drewp@bigasterisk.com
parents:
diff changeset
25 github.com/googleapis/enterprise-certificate-proxy v0.3.2 // indirect
2991c1166852 start calsync in go. Calendar list seems to sync
drewp@bigasterisk.com
parents:
diff changeset
26 github.com/googleapis/gax-go/v2 v2.13.0 // indirect
2991c1166852 start calsync in go. Calendar list seems to sync
drewp@bigasterisk.com
parents:
diff changeset
27 github.com/klauspost/compress v1.13.6 // indirect
2991c1166852 start calsync in go. Calendar list seems to sync
drewp@bigasterisk.com
parents:
diff changeset
28 github.com/montanaflynn/stats v0.7.1 // indirect
2991c1166852 start calsync in go. Calendar list seems to sync
drewp@bigasterisk.com
parents:
diff changeset
29 github.com/xdg-go/pbkdf2 v1.0.0 // indirect
2991c1166852 start calsync in go. Calendar list seems to sync
drewp@bigasterisk.com
parents:
diff changeset
30 github.com/xdg-go/scram v1.1.2 // indirect
2991c1166852 start calsync in go. Calendar list seems to sync
drewp@bigasterisk.com
parents:
diff changeset
31 github.com/xdg-go/stringprep v1.0.4 // indirect
2991c1166852 start calsync in go. Calendar list seems to sync
drewp@bigasterisk.com
parents:
diff changeset
32 github.com/youmark/pkcs8 v0.0.0-20181117223130-1be2e3e5546d // indirect
2991c1166852 start calsync in go. Calendar list seems to sync
drewp@bigasterisk.com
parents:
diff changeset
33 go.opencensus.io v0.24.0 // indirect
2991c1166852 start calsync in go. Calendar list seems to sync
drewp@bigasterisk.com
parents:
diff changeset
34 go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 // indirect
2991c1166852 start calsync in go. Calendar list seems to sync
drewp@bigasterisk.com
parents:
diff changeset
35 go.opentelemetry.io/otel v1.24.0 // indirect
2991c1166852 start calsync in go. Calendar list seems to sync
drewp@bigasterisk.com
parents:
diff changeset
36 go.opentelemetry.io/otel/metric v1.24.0 // indirect
2991c1166852 start calsync in go. Calendar list seems to sync
drewp@bigasterisk.com
parents:
diff changeset
37 go.opentelemetry.io/otel/trace v1.24.0 // indirect
2991c1166852 start calsync in go. Calendar list seems to sync
drewp@bigasterisk.com
parents:
diff changeset
38 golang.org/x/crypto v0.25.0 // indirect
2991c1166852 start calsync in go. Calendar list seems to sync
drewp@bigasterisk.com
parents:
diff changeset
39 golang.org/x/net v0.27.0 // indirect
2991c1166852 start calsync in go. Calendar list seems to sync
drewp@bigasterisk.com
parents:
diff changeset
40 golang.org/x/sync v0.8.0 // indirect
2991c1166852 start calsync in go. Calendar list seems to sync
drewp@bigasterisk.com
parents:
diff changeset
41 golang.org/x/sys v0.22.0 // indirect
2991c1166852 start calsync in go. Calendar list seems to sync
drewp@bigasterisk.com
parents:
diff changeset
42 golang.org/x/text v0.16.0 // indirect
2991c1166852 start calsync in go. Calendar list seems to sync
drewp@bigasterisk.com
parents:
diff changeset
43 google.golang.org/genproto/googleapis/rpc v0.0.0-20240730163845-b1a4ccb954bf // indirect
2991c1166852 start calsync in go. Calendar list seems to sync
drewp@bigasterisk.com
parents:
diff changeset
44 google.golang.org/grpc v1.64.1 // indirect
2991c1166852 start calsync in go. Calendar list seems to sync
drewp@bigasterisk.com
parents:
diff changeset
45 google.golang.org/protobuf v1.34.2 // indirect
2991c1166852 start calsync in go. Calendar list seems to sync
drewp@bigasterisk.com
parents:
diff changeset
46 )