-
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 branch information
Showing
4 changed files
with
63 additions
and
66 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,4 +1,5 @@ | ||
.vscode/ | ||
__pycache__/ | ||
data/ | ||
__debug_bin* | ||
__debug_bin* | ||
solar_tracker |
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,49 +1,46 @@ | ||
module github.com/saveweb/solar_tracker | ||
|
||
go 1.22.2 | ||
go 1.24.0 | ||
|
||
require ( | ||
github.com/gin-contrib/gzip v1.0.1 | ||
github.com/gin-contrib/gzip v1.2.2 | ||
github.com/gin-gonic/gin v1.10.0 | ||
go.mongodb.org/mongo-driver v1.17.1 | ||
github.com/jellydator/ttlcache/v3 v3.3.0 | ||
go.mongodb.org/mongo-driver v1.17.3 | ||
) | ||
|
||
require ( | ||
github.com/bytedance/sonic v1.11.7 // indirect | ||
github.com/bytedance/sonic/loader v0.1.1 // indirect | ||
github.com/bytedance/sonic v1.12.7 // indirect | ||
github.com/bytedance/sonic/loader v0.2.2 // indirect | ||
github.com/cloudwego/base64x v0.1.4 // indirect | ||
github.com/cloudwego/iasm v0.2.0 // indirect | ||
github.com/gabriel-vasile/mimetype v1.4.4 // indirect | ||
github.com/gin-contrib/sse v0.1.0 // indirect | ||
github.com/gabriel-vasile/mimetype v1.4.8 // indirect | ||
github.com/gin-contrib/sse v1.0.0 // indirect | ||
github.com/go-playground/locales v0.14.1 // indirect | ||
github.com/go-playground/universal-translator v0.18.1 // indirect | ||
github.com/go-playground/validator/v10 v10.20.0 // indirect | ||
github.com/goccy/go-json v0.10.3 // indirect | ||
github.com/go-playground/validator/v10 v10.24.0 // indirect | ||
github.com/goccy/go-json v0.10.4 // indirect | ||
github.com/golang/snappy v0.0.4 // indirect | ||
github.com/jellydator/ttlcache/v3 v3.3.0 // indirect | ||
github.com/json-iterator/go v1.1.12 // indirect | ||
github.com/klauspost/compress v1.13.6 // indirect | ||
github.com/klauspost/cpuid/v2 v2.2.7 // indirect | ||
github.com/klauspost/compress v1.16.7 // indirect | ||
github.com/klauspost/cpuid/v2 v2.2.9 // indirect | ||
github.com/leodido/go-urn v1.4.0 // indirect | ||
github.com/mattn/go-isatty v0.0.20 // indirect | ||
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect | ||
github.com/modern-go/reflect2 v1.0.2 // indirect | ||
github.com/montanaflynn/stats v0.7.1 // indirect | ||
github.com/pelletier/go-toml/v2 v2.2.2 // indirect | ||
github.com/pelletier/go-toml/v2 v2.2.3 // indirect | ||
github.com/twitchyliquid64/golang-asm v0.15.1 // indirect | ||
github.com/ugorji/go/codec v1.2.12 // indirect | ||
github.com/xdg-go/pbkdf2 v1.0.0 // indirect | ||
github.com/xdg-go/scram v1.1.2 // indirect | ||
github.com/xdg-go/stringprep v1.0.4 // indirect | ||
github.com/youmark/pkcs8 v0.0.0-20240726163527-a2c0da244d78 // indirect | ||
golang.org/x/arch v0.8.0 // indirect | ||
golang.org/x/crypto v0.26.0 // indirect | ||
golang.org/x/net v0.25.0 // indirect | ||
golang.org/x/sync v0.8.0 // indirect | ||
golang.org/x/sys v0.23.0 // indirect | ||
golang.org/x/text v0.17.0 // indirect | ||
google.golang.org/protobuf v1.34.1 // indirect | ||
golang.org/x/arch v0.13.0 // indirect | ||
golang.org/x/crypto v0.32.0 // indirect | ||
golang.org/x/net v0.34.0 // indirect | ||
golang.org/x/sync v0.10.0 // indirect | ||
golang.org/x/sys v0.29.0 // indirect | ||
golang.org/x/text v0.21.0 // indirect | ||
google.golang.org/protobuf v1.36.2 // indirect | ||
gopkg.in/yaml.v3 v3.0.1 // indirect | ||
) | ||
|
||
replace github.com/gin-contrib/gzip => github.com/yzqzss/gzip v1.0.1-onlydecompress2 |
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
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