上一个提交(User 默认实现移到 req/userx)之后 req 不再依赖 contracts, 连带它拉进来的一大堆间接依赖(grpc/viper/hcl/mcp-go 等)一起清掉了。 db/reflux 之前靠指向本地兄弟目录(../db-v2、../reflux)的 replace 绕开 版本解析,现在锁定成各自 master 最新的真实 commit,去掉 replace——本地 多仓库协同开发改用父目录的 go.work,不用再靠单个仓库自己的 replace。
31 lines
983 B
AMPL
Executable File
31 lines
983 B
AMPL
Executable File
module git.fsdpf.net/go/req
|
|
|
|
go 1.25.5
|
|
|
|
require (
|
|
git.fsdpf.net/go/db v0.0.0-20260820090948-9c6bb5a83508
|
|
git.fsdpf.net/go/reflux v0.0.0-20260820092857-1f48635da3f1
|
|
github.com/DATA-DOG/go-sqlmock v1.5.0
|
|
github.com/go-chi/chi/v5 v5.0.12
|
|
github.com/samber/do/v2 v2.0.0
|
|
github.com/samber/lo v1.49.1
|
|
github.com/spf13/cast v1.10.0
|
|
github.com/stretchr/testify v1.11.1
|
|
github.com/tidwall/gjson v1.17.1
|
|
github.com/tidwall/sjson v1.2.5
|
|
)
|
|
|
|
require (
|
|
github.com/davecgh/go-spew v1.1.1 // indirect
|
|
github.com/go-sql-driver/mysql v1.7.1 // indirect
|
|
github.com/google/go-cmp v0.7.0 // indirect
|
|
github.com/mattn/go-sqlite3 v1.14.42 // indirect
|
|
github.com/pmezard/go-difflib v1.0.0 // indirect
|
|
github.com/samber/go-type-to-string v1.8.0 // indirect
|
|
github.com/tidwall/match v1.1.1 // indirect
|
|
github.com/tidwall/pretty v1.2.0 // indirect
|
|
golang.org/x/text v0.25.0 // indirect
|
|
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
|
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
|
)
|