generated from eliona-smart-building-assistant/app-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Loading status checks…
Update dependencies
Showing
2 changed files
with
114 additions
and
98 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,76 +1,77 @@ | ||
module microsoft-365 | ||
|
||
go 1.21 | ||
go 1.22.0 | ||
|
||
toolchain go1.22.2 | ||
toolchain go1.23.4 | ||
|
||
require ( | ||
github.com/Azure/azure-sdk-for-go/sdk/azcore v1.11.1 | ||
github.com/Azure/azure-sdk-for-go/sdk/azcore v1.16.0 | ||
github.com/eliona-smart-building-assistant/app-integration-tests v1.1.2 | ||
github.com/eliona-smart-building-assistant/go-eliona v1.9.37 | ||
github.com/eliona-smart-building-assistant/go-utils v1.1.1 | ||
github.com/eliona-smart-building-assistant/go-eliona v1.10.4 | ||
github.com/eliona-smart-building-assistant/go-utils v1.1.2 | ||
github.com/gorilla/mux v1.8.1 | ||
github.com/microsoft/kiota-abstractions-go v1.6.0 | ||
github.com/microsoft/kiota-authentication-azure-go v1.0.2 | ||
github.com/microsoftgraph/msgraph-sdk-go v1.39.0 | ||
github.com/microsoftgraph/msgraph-sdk-go-core v1.1.0 | ||
github.com/microsoft/kiota-abstractions-go v1.8.1 | ||
github.com/microsoft/kiota-authentication-azure-go v1.1.0 | ||
github.com/microsoftgraph/msgraph-sdk-go v1.55.0 | ||
github.com/microsoftgraph/msgraph-sdk-go-core v1.2.1 | ||
github.com/volatiletech/null/v8 v8.1.2 | ||
github.com/volatiletech/sqlboiler/v4 v4.16.2 | ||
github.com/volatiletech/sqlboiler/v4 v4.17.1 | ||
gopkg.in/yaml.v3 v3.0.1 | ||
) | ||
|
||
require ( | ||
github.com/Azure/azure-sdk-for-go/sdk/internal v1.8.0 // indirect | ||
github.com/AzureAD/microsoft-authentication-library-for-go v1.2.2 // indirect | ||
github.com/cjlapao/common-go v0.0.39 // indirect | ||
github.com/Azure/azure-sdk-for-go/sdk/internal v1.10.0 // indirect | ||
github.com/AzureAD/microsoft-authentication-library-for-go v1.3.2 // indirect | ||
github.com/cjlapao/common-go v0.0.41 // indirect | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/ericlagergren/decimal v0.0.0-20240411145413-00de7ca16731 // indirect | ||
github.com/go-logr/logr v1.4.1 // indirect | ||
github.com/go-logr/logr v1.4.2 // indirect | ||
github.com/go-logr/stdr v1.2.2 // indirect | ||
github.com/gofrs/uuid v4.4.0+incompatible // indirect | ||
github.com/golang-jwt/jwt/v5 v5.2.1 // indirect | ||
github.com/google/uuid v1.6.0 // indirect | ||
github.com/gorilla/websocket v1.5.1 // indirect | ||
github.com/gorilla/websocket v1.5.3 // indirect | ||
github.com/kylelemons/godebug v1.1.0 // indirect | ||
github.com/microsoft/kiota-http-go v1.3.3 // indirect | ||
github.com/microsoft/kiota-http-go v1.4.7 // indirect | ||
github.com/microsoft/kiota-serialization-form-go v1.0.0 // indirect | ||
github.com/microsoft/kiota-serialization-json-go v1.0.7 // indirect | ||
github.com/microsoft/kiota-serialization-json-go v1.0.9 // indirect | ||
github.com/microsoft/kiota-serialization-multipart-go v1.0.0 // indirect | ||
github.com/microsoft/kiota-serialization-text-go v1.0.0 // indirect | ||
github.com/pkg/browser v0.0.0-20240102092130-5ac0b6a4141c // indirect | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | ||
github.com/std-uritemplate/std-uritemplate/go v0.0.57 // indirect | ||
github.com/stretchr/testify v1.9.0 // indirect | ||
github.com/std-uritemplate/std-uritemplate/go/v2 v2.0.1 // indirect | ||
github.com/stretchr/testify v1.10.0 // indirect | ||
github.com/volatiletech/randomize v0.0.1 // indirect | ||
go.opentelemetry.io/otel v1.26.0 // indirect | ||
go.opentelemetry.io/otel/metric v1.26.0 // indirect | ||
go.opentelemetry.io/otel/trace v1.26.0 // indirect | ||
golang.org/x/net v0.26.0 // indirect | ||
golang.org/x/sys v0.21.0 // indirect | ||
go.opentelemetry.io/auto/sdk v1.1.0 // indirect | ||
go.opentelemetry.io/otel v1.33.0 // indirect | ||
go.opentelemetry.io/otel/metric v1.33.0 // indirect | ||
go.opentelemetry.io/otel/trace v1.33.0 // indirect | ||
golang.org/x/net v0.33.0 // indirect | ||
golang.org/x/sys v0.28.0 // indirect | ||
) | ||
|
||
// Bugfix see: https://github.com/volatiletech/sqlboiler/blob/91c4f335dd886d95b03857aceaf17507c46f9ec5/README.md | ||
// decimal library showing errors like: pq: encode: unknown type types.NullDecimal is a result of a too-new and broken version of the github.com/ericlargergren/decimal package, use the following version in your go.mod: github.com/ericlagergren/decimal v0.0.0-20181231230500-73749d4874d5 | ||
replace github.com/ericlagergren/decimal => github.com/ericlagergren/decimal v0.0.0-20181231230500-73749d4874d5 | ||
|
||
require ( | ||
github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.6.0 | ||
github.com/eliona-smart-building-assistant/go-eliona-api-client/v2 v2.6.12 | ||
github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.8.0 | ||
github.com/eliona-smart-building-assistant/go-eliona-api-client/v2 v2.7.3 | ||
github.com/friendsofgo/errors v0.9.2 | ||
github.com/jackc/chunkreader/v2 v2.0.1 // indirect | ||
github.com/jackc/pgconn v1.14.3 // indirect | ||
github.com/jackc/pgio v1.0.0 // indirect | ||
github.com/jackc/pgpassfile v1.0.0 // indirect | ||
github.com/jackc/pgproto3/v2 v2.3.3 // indirect | ||
github.com/jackc/pgservicefile v0.0.0-20231201235250-de7065d80cb9 // indirect | ||
github.com/jackc/pgtype v1.14.3 // indirect | ||
github.com/jackc/pgservicefile v0.0.0-20240606120523-5a60cdf6a761 // indirect | ||
github.com/jackc/pgtype v1.14.4 // indirect | ||
github.com/jackc/pgx/v4 v4.18.3 // indirect | ||
github.com/jackc/puddle v1.3.0 // indirect | ||
github.com/lib/pq v1.10.9 // indirect | ||
github.com/spf13/cast v1.6.0 // indirect | ||
github.com/spf13/cast v1.7.1 // indirect | ||
github.com/volatiletech/inflect v0.0.1 // indirect | ||
github.com/volatiletech/strmangle v0.0.6 | ||
golang.org/x/crypto v0.24.0 // indirect | ||
golang.org/x/text v0.16.0 // indirect | ||
golang.org/x/xerrors v0.0.0-20231012003039-104605ab7028 // indirect | ||
github.com/volatiletech/strmangle v0.0.8 | ||
golang.org/x/crypto v0.31.0 // indirect | ||
golang.org/x/text v0.21.0 // indirect | ||
golang.org/x/xerrors v0.0.0-20240903120638-7835f813f4da // indirect | ||
) |
Oops, something went wrong.