mirror of
https://codeberg.org/scip/esctl.git
synced 2026-08-24 03:34:18 +02:00
38 lines
1.5 KiB
Modula-2
38 lines
1.5 KiB
Modula-2
// Copyright © 2026 Thomas von Dein
|
|
//
|
|
// This program is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU General Public License as published by
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
// (at your option) any later version.
|
|
//
|
|
// This program is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU General Public License
|
|
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
module codeberg.org/scip/esctl
|
|
|
|
go 1.24
|
|
|
|
require (
|
|
github.com/alecthomas/repr v0.5.2 // indirect
|
|
github.com/elastic/elastic-transport-go/v8 v8.11.0 // indirect
|
|
github.com/elastic/go-elasticsearch/v9 v9.3.2 // indirect
|
|
github.com/fatih/color v1.16.0 // indirect
|
|
github.com/go-logr/logr v1.4.3 // indirect
|
|
github.com/go-logr/stdr v1.2.2 // indirect
|
|
github.com/lmittmann/tint v1.1.3 // indirect
|
|
github.com/mattn/go-colorable v0.1.13 // indirect
|
|
github.com/mattn/go-isatty v0.0.21 // indirect
|
|
github.com/tlinden/yadu v0.1.3 // indirect
|
|
github.com/urfave/cli/v3 v3.8.0 // indirect
|
|
go.opentelemetry.io/auto/sdk v1.1.0 // indirect
|
|
go.opentelemetry.io/otel v1.35.0 // indirect
|
|
go.opentelemetry.io/otel/metric v1.35.0 // indirect
|
|
go.opentelemetry.io/otel/trace v1.35.0 // indirect
|
|
golang.org/x/sys v0.28.0 // indirect
|
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
|
)
|