mirror of
https://github.com/shankar0123/certctl.git
synced 2026-06-07 12:21:31 +00:00
8f37e16892
The MCP Go SDK (modelcontextprotocol/go-sdk) requires Go 1.23+. Previous commit accidentally bumped to 1.25 via go mod tidy on a newer toolchain. Pin to 1.23 as the minimum compatible version — closest to our original 1.22 baseline. CI updated to match. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
21 lines
498 B
Modula-2
21 lines
498 B
Modula-2
module github.com/shankar0123/certctl
|
|
|
|
go 1.23.0
|
|
|
|
require (
|
|
github.com/google/uuid v1.6.0
|
|
github.com/lib/pq v1.10.9
|
|
github.com/modelcontextprotocol/go-sdk v1.4.1
|
|
)
|
|
|
|
require golang.org/x/crypto v0.31.0
|
|
|
|
require (
|
|
github.com/google/jsonschema-go v0.4.2 // indirect
|
|
github.com/segmentio/asm v1.1.3 // indirect
|
|
github.com/segmentio/encoding v0.5.4 // indirect
|
|
github.com/yosida95/uritemplate/v3 v3.0.2 // indirect
|
|
golang.org/x/oauth2 v0.34.0 // indirect
|
|
golang.org/x/sys v0.40.0 // indirect
|
|
)
|