Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/gprofiler/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,4 @@ cmp-version==3.0.0
setproctitle==1.3.3
fastapi==0.109.0
uvicorn==0.27.0
gunicorn==21.2.0
gunicorn==22.0.0
2 changes: 1 addition & 1 deletion src/gprofiler_flamedb_rest/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.18 as build
FROM golang:1.20 as build

ENV GO111MODULE on

Expand Down
4 changes: 2 additions & 2 deletions src/gprofiler_flamedb_rest/common/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module restflamedb/common

go 1.18
go 1.20

require (
github.com/OneOfOne/xxhash v1.2.8
Expand All @@ -26,7 +26,7 @@ require (
github.com/twitchyliquid64/golang-asm v0.15.1 // indirect
github.com/ugorji/go/codec v1.2.11 // indirect
golang.org/x/arch v0.3.0 // indirect
golang.org/x/crypto v0.17.0 // indirect
golang.org/x/crypto v0.33.0 // indirect
golang.org/x/net v0.17.0 // indirect
golang.org/x/sys v0.8.0 // indirect
golang.org/x/text v0.9.0 // indirect
Expand Down
2 changes: 1 addition & 1 deletion src/gprofiler_flamedb_rest/config/go.mod
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module restflamedb/config

go 1.18
go 1.20
2 changes: 1 addition & 1 deletion src/gprofiler_flamedb_rest/db/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module restflamedb/db

go 1.18
go 1.20

replace restflamedb/common => ../common

Expand Down
10 changes: 5 additions & 5 deletions src/gprofiler_flamedb_rest/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module restflamedb

go 1.18
go 1.20

replace restflamedb/db => ./db

Expand All @@ -11,7 +11,7 @@ replace restflamedb/handlers => ./handlers
replace restflamedb/config => ./config

require (
github.com/gin-contrib/cors v1.5.0
github.com/gin-contrib/cors v1.6.0
github.com/gin-contrib/gzip v0.0.6
github.com/gin-gonic/gin v1.9.1
restflamedb/common v0.0.0-00010101000000-000000000000
Expand Down Expand Up @@ -47,10 +47,10 @@ require (
github.com/twitchyliquid64/golang-asm v0.15.1 // indirect
github.com/ugorji/go/codec v1.2.12 // indirect
golang.org/x/arch v0.6.0 // indirect
golang.org/x/crypto v0.17.0 // indirect
golang.org/x/net v0.19.0 // indirect
golang.org/x/crypto v0.33.0 // indirect
golang.org/x/net v0.33.0 // indirect
golang.org/x/sys v0.15.0 // indirect
golang.org/x/text v0.14.0 // indirect
google.golang.org/protobuf v1.31.0 // indirect
google.golang.org/protobuf v1.33.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)
4 changes: 2 additions & 2 deletions src/gprofiler_flamedb_rest/handlers/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module restflamedb/handlers

go 1.18
go 1.20

replace restflamedb/db => ../db

Expand Down Expand Up @@ -32,7 +32,7 @@ require (
github.com/modern-go/reflect2 v1.0.2 // indirect
github.com/montanaflynn/stats v0.6.6 // indirect
github.com/ugorji/go/codec v1.2.11 // indirect
golang.org/x/crypto v0.17.0 // indirect
golang.org/x/crypto v0.33.0 // indirect
golang.org/x/sys v0.15.0 // indirect
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect
google.golang.org/protobuf v1.30.0 // indirect
Expand Down
3 changes: 2 additions & 1 deletion src/gprofiler_indexer/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
module main

go 1.18

go 1.20

require (
github.com/aws/aws-sdk-go v1.40.34
Expand Down