Skip to content

Commit

Permalink
feat: add an ordered map to remove unnecessary dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Tiscs committed Nov 22, 2024
1 parent 02d497c commit b625532
Show file tree
Hide file tree
Showing 51 changed files with 340 additions and 342 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
strategy:
fail-fast: false
matrix:
go-version: [1.23.x]
go-version: [1.22.x, 1.23.x]

services:
postgres:
Expand Down
4 changes: 1 addition & 3 deletions dbfixture/go.mod
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
module github.com/uptrace/bun/dbfixture

go 1.23

toolchain go1.23.2
go 1.22.0

replace github.com/uptrace/bun => ../

Expand Down
4 changes: 1 addition & 3 deletions dialect/mssqldialect/go.mod
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
module github.com/uptrace/bun/dialect/mssqldialect

go 1.23

toolchain go1.23.2
go 1.22.0

replace github.com/uptrace/bun => ../..

Expand Down
4 changes: 1 addition & 3 deletions dialect/mysqldialect/go.mod
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
module github.com/uptrace/bun/dialect/mysqldialect

go 1.23

toolchain go1.23.2
go 1.22.0

replace github.com/uptrace/bun => ../..

Expand Down
4 changes: 1 addition & 3 deletions dialect/oracledialect/go.mod
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
module github.com/uptrace/bun/dialect/oracledialect

go 1.23

toolchain go1.23.2
go 1.22.0

replace github.com/uptrace/bun => ../..

Expand Down
8 changes: 1 addition & 7 deletions dialect/pgdialect/go.mod
Original file line number Diff line number Diff line change
@@ -1,24 +1,18 @@
module github.com/uptrace/bun/dialect/pgdialect

go 1.23

toolchain go1.23.2
go 1.22.0

replace github.com/uptrace/bun => ../..

require (
github.com/stretchr/testify v1.8.1
github.com/uptrace/bun v1.2.6
github.com/wk8/go-ordered-map/v2 v2.1.9-0.20240816141633-0a40785b4f41
)

require (
github.com/bahlo/generic-list-go v0.2.0 // indirect
github.com/buger/jsonparser v1.1.1 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/jinzhu/inflection v1.0.0 // indirect
github.com/kr/text v0.2.0 // indirect
github.com/mailru/easyjson v0.7.7 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/puzpuzpuz/xsync/v3 v3.4.0 // indirect
github.com/tmthrgd/go-hex v0.0.0-20190904060850-447a3041c3bc // indirect
Expand Down
9 changes: 0 additions & 9 deletions dialect/pgdialect/go.sum
Original file line number Diff line number Diff line change
@@ -1,18 +1,11 @@
github.com/bahlo/generic-list-go v0.2.0 h1:5sz/EEAK+ls5wF+NeqDpk5+iNdMDXrh3z3nPnH1Wvgk=
github.com/bahlo/generic-list-go v0.2.0/go.mod h1:2KvAjgMlE5NNynlg/5iLrrCCZ2+5xWbdbCW3pNTGyYg=
github.com/buger/jsonparser v1.1.1 h1:2PnMjfWD7wBILjqQbt530v576A/cAbQvEW9gGIpYMUs=
github.com/buger/jsonparser v1.1.1/go.mod h1:6RYKKt7H4d4+iWqouImQ9R2FZql3VbhNgx27UK13J/0=
github.com/creack/pty v1.1.9/go.mod h1:oKZEueFk5CKHvIhNR5MUki03XCEU+Q6VDXinZuGJ33E=
github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=
github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
github.com/jinzhu/inflection v1.0.0 h1:K317FqzuhWc8YvSVlFMCCUb36O/S9MCKRDI7QkRKD/E=
github.com/jinzhu/inflection v1.0.0/go.mod h1:h+uFLlag+Qp1Va5pdKtLDYj+kHp5pxUVkryuEj+Srlc=
github.com/josharian/intern v1.0.0/go.mod h1:5DoeVV0s6jJacbCEi61lwdGj/aVlrQvzHFFd8Hwg//Y=
github.com/kr/text v0.2.0 h1:5Nx0Ya0ZqY2ygV366QzturHI13Jq95ApcVaJBhpS+AY=
github.com/kr/text v0.2.0/go.mod h1:eLer722TekiGuMkidMxC/pM04lWEeraHUUmBw8l2grE=
github.com/mailru/easyjson v0.7.7 h1:UGYAvKxe3sBsEDzO8ZeWOSlIQfWFlxbzLZe7hwFURr0=
github.com/mailru/easyjson v0.7.7/go.mod h1:xzfreul335JAWq5oZzymOObrkdz5UnU4kGfJJLY9Nlc=
github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e h1:fD57ERR4JtEqsWbfPhv4DMiApHyliiK5xCTNVSPiaAs=
github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e/go.mod h1:zD1mROLANZcx1PVRCS0qkT7pwLkGfwJo4zjcN/Tysno=
github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=
Expand All @@ -32,8 +25,6 @@ github.com/vmihailenco/msgpack/v5 v5.4.1 h1:cQriyiUvjTwOHg8QZaPihLWeRAAVoCpE00IU
github.com/vmihailenco/msgpack/v5 v5.4.1/go.mod h1:GaZTsDaehaPpQVyxrf5mtQlH+pc21PIudVV/E3rRQok=
github.com/vmihailenco/tagparser/v2 v2.0.0 h1:y09buUbR+b5aycVFQs/g70pqKVZNBmxwAhO7/IwNM9g=
github.com/vmihailenco/tagparser/v2 v2.0.0/go.mod h1:Wri+At7QHww0WTrCBeu4J6bNtoV6mEfg5OIWRZA9qds=
github.com/wk8/go-ordered-map/v2 v2.1.9-0.20240816141633-0a40785b4f41 h1:rnB8ZLMeAr3VcqjfRkAm27qb8y6zFKNfuHvy1Gfe7KI=
github.com/wk8/go-ordered-map/v2 v2.1.9-0.20240816141633-0a40785b4f41/go.mod h1:DbzwytT4g/odXquuOCqroKvtxxldI4nb3nuesHF/Exo=
golang.org/x/sys v0.27.0 h1:wBqf8DvsY9Y/2P8gAfPDEYNuS30J4lPHJxXSb/nJZ+s=
golang.org/x/sys v0.27.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA=
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
Expand Down
10 changes: 5 additions & 5 deletions dialect/pgdialect/inspector.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ import (
"strings"

"github.com/uptrace/bun"
"github.com/uptrace/bun/internal/ordered"
"github.com/uptrace/bun/migrate/sqlschema"
orderedmap "github.com/wk8/go-ordered-map/v2"
)

type (
Expand Down Expand Up @@ -34,7 +34,7 @@ func newInspector(db *bun.DB, options ...sqlschema.InspectorOption) *Inspector {

func (in *Inspector) Inspect(ctx context.Context) (sqlschema.Database, error) {
dbSchema := Schema{
Tables: orderedmap.New[string, sqlschema.Table](),
Tables: ordered.NewMap[string, sqlschema.Table](),
ForeignKeys: make(map[sqlschema.ForeignKey]string),
}

Expand All @@ -61,7 +61,7 @@ func (in *Inspector) Inspect(ctx context.Context) (sqlschema.Database, error) {
return dbSchema, err
}

colDefs := orderedmap.New[string, sqlschema.Column]()
colDefs := ordered.NewMap[string, sqlschema.Column]()
uniqueGroups := make(map[string][]string)

for _, c := range columns {
Expand All @@ -72,7 +72,7 @@ func (in *Inspector) Inspect(ctx context.Context) (sqlschema.Database, error) {
def = strings.ToLower(def)
}

colDefs.Set(c.Name, &Column{
colDefs.Store(c.Name, &Column{
Name: c.Name,
SQLType: c.DataType,
VarcharLen: c.VarcharLen,
Expand Down Expand Up @@ -103,7 +103,7 @@ func (in *Inspector) Inspect(ctx context.Context) (sqlschema.Database, error) {
}
}

dbSchema.Tables.Set(table.Name, &Table{
dbSchema.Tables.Store(table.Name, &Table{
Schema: table.Schema,
Name: table.Name,
Columns: colDefs,
Expand Down
4 changes: 1 addition & 3 deletions dialect/sqlitedialect/go.mod
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
module github.com/uptrace/bun/dialect/sqlitedialect

go 1.23

toolchain go1.23.2
go 1.22.0

replace github.com/uptrace/bun => ../..

Expand Down
4 changes: 1 addition & 3 deletions driver/pgdriver/go.mod
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
module github.com/uptrace/bun/driver/pgdriver

go 1.23

toolchain go1.23.2
go 1.22.0

replace github.com/uptrace/bun => ../..

Expand Down
2 changes: 0 additions & 2 deletions driver/sqliteshim/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@ module github.com/uptrace/bun/driver/sqliteshim

go 1.22.0

toolchain go1.22.6

require (
github.com/mattn/go-sqlite3 v1.14.24
github.com/stretchr/testify v1.8.1
Expand Down
4 changes: 1 addition & 3 deletions example/basic/go.mod
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
module github.com/uptrace/bun/example/basic

go 1.23

toolchain go1.23.2
go 1.22.0

replace github.com/uptrace/bun => ../..

Expand Down
4 changes: 1 addition & 3 deletions example/create-table-index/go.mod
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
module github.com/uptrace/bun/example/create-table-index

go 1.23

toolchain go1.23.2
go 1.22.0

replace github.com/uptrace/bun => ../..

Expand Down
4 changes: 1 addition & 3 deletions example/cursor-pagination/go.mod
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
module github.com/uptrace/bun/example/cursor-pagination

go 1.23

toolchain go1.23.2
go 1.22.0

replace github.com/uptrace/bun => ../..

Expand Down
4 changes: 1 addition & 3 deletions example/custom-type/go.mod
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
module github.com/uptrace/bun/example/custom-type

go 1.23

toolchain go1.23.2
go 1.22.0

replace github.com/uptrace/bun => ../..

Expand Down
4 changes: 1 addition & 3 deletions example/fixture/go.mod
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
module github.com/uptrace/bun/example/fixture

go 1.23

toolchain go1.23.2
go 1.22.0

replace github.com/uptrace/bun => ../..

Expand Down
4 changes: 1 addition & 3 deletions example/get-where-fields/go.mod
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
module github.com/uptrace/bun/example/get-where-fields

go 1.23

toolchain go1.23.2
go 1.22.0

replace github.com/uptrace/bun => ../..

Expand Down
4 changes: 1 addition & 3 deletions example/migrate/go.mod
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
module github.com/uptrace/bun/example/migrate

go 1.23

toolchain go1.23.2
go 1.22.0

replace github.com/uptrace/bun => ../..

Expand Down
4 changes: 1 addition & 3 deletions example/model-hooks/go.mod
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
module github.com/uptrace/bun/example/model-hooks

go 1.23

toolchain go1.23.2
go 1.22.0

replace github.com/uptrace/bun => ../..

Expand Down
4 changes: 1 addition & 3 deletions example/multi-tenant/go.mod
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
module github.com/uptrace/bun/example/multi-tenant

go 1.23

toolchain go1.23.2
go 1.22.0

replace github.com/uptrace/bun => ../..

Expand Down
4 changes: 1 addition & 3 deletions example/opentelemetry/go.mod
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
module github.com/uptrace/bun/example/opentelemetry

go 1.23

toolchain go1.23.2
go 1.22.0

replace github.com/uptrace/bun => ../..

Expand Down
18 changes: 0 additions & 18 deletions example/opentelemetry/go.sum
Original file line number Diff line number Diff line change
@@ -1,9 +1,5 @@
github.com/bahlo/generic-list-go v0.2.0 h1:5sz/EEAK+ls5wF+NeqDpk5+iNdMDXrh3z3nPnH1Wvgk=
github.com/bahlo/generic-list-go v0.2.0/go.mod h1:2KvAjgMlE5NNynlg/5iLrrCCZ2+5xWbdbCW3pNTGyYg=
github.com/brianvoe/gofakeit/v5 v5.11.2 h1:Ny5Nsf4z2023ZvYP8ujW8p5B1t5sxhdFaQ/0IYXbeSA=
github.com/brianvoe/gofakeit/v5 v5.11.2/go.mod h1:/ZENnKqX+XrN8SORLe/fu5lZDIo1tuPncWuRD+eyhSI=
github.com/buger/jsonparser v1.1.1 h1:2PnMjfWD7wBILjqQbt530v576A/cAbQvEW9gGIpYMUs=
github.com/buger/jsonparser v1.1.1/go.mod h1:6RYKKt7H4d4+iWqouImQ9R2FZql3VbhNgx27UK13J/0=
github.com/cenkalti/backoff/v4 v4.3.0 h1:MyRJ/UdXutAwSAT+s3wNd7MfTIcy71VQueUuFK343L8=
github.com/cenkalti/backoff/v4 v4.3.0/go.mod h1:Y3VNntkOUPxTVeUxJ/G5vcM//AlwfmyYozVcomhLiZE=
github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=
Expand All @@ -23,19 +19,10 @@ github.com/grpc-ecosystem/grpc-gateway/v2 v2.23.0 h1:ad0vkEBuk23VJzZR9nkLVG0YAoN
github.com/grpc-ecosystem/grpc-gateway/v2 v2.23.0/go.mod h1:igFoXX2ELCW06bol23DWPB5BEWfZISOzSP5K2sbLea0=
github.com/jinzhu/inflection v1.0.0 h1:K317FqzuhWc8YvSVlFMCCUb36O/S9MCKRDI7QkRKD/E=
github.com/jinzhu/inflection v1.0.0/go.mod h1:h+uFLlag+Qp1Va5pdKtLDYj+kHp5pxUVkryuEj+Srlc=
github.com/josharian/intern v1.0.0/go.mod h1:5DoeVV0s6jJacbCEi61lwdGj/aVlrQvzHFFd8Hwg//Y=
github.com/kr/pretty v0.3.1 h1:flRD4NNwYAUpkphVc1HcthR4KEIFJ65n8Mw5qdRn3LE=
github.com/kr/pretty v0.3.1/go.mod h1:hoEshYVHaxMs3cyo3Yncou5ZscifuDolrwPKZanG3xk=
github.com/kr/text v0.2.0 h1:5Nx0Ya0ZqY2ygV366QzturHI13Jq95ApcVaJBhpS+AY=
github.com/kr/text v0.2.0/go.mod h1:eLer722TekiGuMkidMxC/pM04lWEeraHUUmBw8l2grE=
github.com/mailru/easyjson v0.7.7 h1:UGYAvKxe3sBsEDzO8ZeWOSlIQfWFlxbzLZe7hwFURr0=
github.com/mailru/easyjson v0.7.7/go.mod h1:xzfreul335JAWq5oZzymOObrkdz5UnU4kGfJJLY9Nlc=
github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=
github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
github.com/puzpuzpuz/xsync/v3 v3.4.0 h1:DuVBAdXuGFHv8adVXjWWZ63pJq+NRXOWVXlKDBZ+mJ4=
github.com/puzpuzpuz/xsync/v3 v3.4.0/go.mod h1:VjzYrABPabuM4KyBh1Ftq6u8nhwY5tBPKP9jpmh0nnA=
github.com/rogpeppe/go-internal v1.13.1 h1:KvO1DLK/DRN07sQ1LQKScxyZJuNnedQ5/wKSR38lUII=
github.com/rogpeppe/go-internal v1.13.1/go.mod h1:uMEvuHeurkdAXX61udpOXGD/AzZDWNMNyH2VO9fmH0o=
github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsTg=
github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY=
github.com/tmthrgd/go-hex v0.0.0-20190904060850-447a3041c3bc h1:9lRDQMhESg+zvGYmW5DyG0UqvY96Bu5QYsTLvCHdrgo=
Expand All @@ -48,8 +35,6 @@ github.com/vmihailenco/msgpack/v5 v5.4.1 h1:cQriyiUvjTwOHg8QZaPihLWeRAAVoCpE00IU
github.com/vmihailenco/msgpack/v5 v5.4.1/go.mod h1:GaZTsDaehaPpQVyxrf5mtQlH+pc21PIudVV/E3rRQok=
github.com/vmihailenco/tagparser/v2 v2.0.0 h1:y09buUbR+b5aycVFQs/g70pqKVZNBmxwAhO7/IwNM9g=
github.com/vmihailenco/tagparser/v2 v2.0.0/go.mod h1:Wri+At7QHww0WTrCBeu4J6bNtoV6mEfg5OIWRZA9qds=
github.com/wk8/go-ordered-map/v2 v2.1.9-0.20240816141633-0a40785b4f41 h1:rnB8ZLMeAr3VcqjfRkAm27qb8y6zFKNfuHvy1Gfe7KI=
github.com/wk8/go-ordered-map/v2 v2.1.9-0.20240816141633-0a40785b4f41/go.mod h1:DbzwytT4g/odXquuOCqroKvtxxldI4nb3nuesHF/Exo=
go.opentelemetry.io/contrib/instrumentation/runtime v0.57.0 h1:kJB5wMVorwre8QzEodzTAbzm9FOOah0zvG+V4abNlEE=
go.opentelemetry.io/contrib/instrumentation/runtime v0.57.0/go.mod h1:Nup4TgnOyEJWmVq9sf/ASH3ZJiAXwWHd5xZCHG7Sg9M=
go.opentelemetry.io/otel v1.32.0 h1:WnBN+Xjcteh0zdk01SVqV55d/m62NJLJdIyb4y/WO5U=
Expand Down Expand Up @@ -94,9 +79,6 @@ google.golang.org/grpc v1.68.0 h1:aHQeeJbo8zAkAa3pRzrVjZlbz6uSfeOXlJNQM0RAbz0=
google.golang.org/grpc v1.68.0/go.mod h1:fmSPC5AsjSBCK54MyHRx48kpOti1/jRfOlwEWywNjWA=
google.golang.org/protobuf v1.35.2 h1:8Ar7bF+apOIoThw1EdZl0p1oWvMqTHmpA2fRTyZO8io=
google.golang.org/protobuf v1.35.2/go.mod h1:9fA7Ob0pmnwhb644+1+CVWFRbNajQ6iRojtC/QF5bRE=
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c h1:Hei/4ADfdWqJk1ZMxUNpqntNwaWcugrBjAiHlqqRiVk=
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c/go.mod h1:JHkPIbrfpd72SG/EVd6muEfDQjcINNoR0C8j2r3qZ4Q=
gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA=
gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=
mellium.im/sasl v0.3.2 h1:PT6Xp7ccn9XaXAnJ03FcEjmAn7kK1x7aoXV6F+Vmrl0=
Expand Down
4 changes: 1 addition & 3 deletions example/pg-faceted-search/go.mod
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
module github.com/uptrace/bun/example/pg-faceted-search

go 1.23

toolchain go1.23.2
go 1.22.0

replace github.com/uptrace/bun => ../..

Expand Down
4 changes: 1 addition & 3 deletions example/pg-listen/go.mod
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
module github.com/uptrace/bun/example/pg-listen

go 1.23

toolchain go1.23.2
go 1.22.0

replace github.com/uptrace/bun => ../..

Expand Down
4 changes: 1 addition & 3 deletions example/placeholders/go.mod
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
module github.com/uptrace/bun/example/placeholders

go 1.23

toolchain go1.23.2
go 1.22.0

replace github.com/uptrace/bun => ../..

Expand Down
4 changes: 1 addition & 3 deletions example/rel-belongs-to/go.mod
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
module github.com/uptrace/bun/example/rel-belongs-to

go 1.23

toolchain go1.23.2
go 1.22.0

replace github.com/uptrace/bun => ../..

Expand Down
4 changes: 1 addition & 3 deletions example/rel-has-many-polymorphic/go.mod
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
module github.com/uptrace/bun/example/rel-has-many-polymorphic

go 1.23

toolchain go1.23.2
go 1.22.0

replace github.com/uptrace/bun => ../..

Expand Down
4 changes: 1 addition & 3 deletions example/rel-has-many/go.mod
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
module github.com/uptrace/bun/example/rel-has-many

go 1.23

toolchain go1.23.2
go 1.22.0

replace github.com/uptrace/bun => ../..

Expand Down
4 changes: 1 addition & 3 deletions example/rel-has-one/go.mod
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
module github.com/uptrace/bun/example/rel-has-one

go 1.23

toolchain go1.23.2
go 1.22.0

replace github.com/uptrace/bun => ../..

Expand Down
Loading

0 comments on commit b625532

Please sign in to comment.