|
1 | 1 | module github.com/gnolang/faucet |
2 | 2 |
|
3 | | -go 1.21 |
| 3 | +go 1.22 |
4 | 4 |
|
5 | 5 | require ( |
6 | | - github.com/gnolang/gno v0.1.0-nightly.20240627 |
| 6 | + github.com/gnolang/gno v0.0.0-20241127025539-d8589b06b14c |
7 | 7 | github.com/go-chi/chi/v5 v5.1.0 |
8 | 8 | github.com/pelletier/go-toml v1.9.5 |
9 | 9 | github.com/peterbourgon/ff/v3 v3.4.0 |
10 | | - github.com/rs/cors v1.11.0 |
11 | | - github.com/stretchr/testify v1.9.0 |
12 | | - golang.org/x/sync v0.7.0 |
| 10 | + github.com/rs/cors v1.11.1 |
| 11 | + github.com/stretchr/testify v1.10.0 |
| 12 | + golang.org/x/sync v0.9.0 |
13 | 13 | ) |
14 | 14 |
|
15 | 15 | require ( |
16 | | - github.com/btcsuite/btcd/btcec/v2 v2.3.3 // indirect |
17 | | - github.com/btcsuite/btcd/btcutil v1.1.5 // indirect |
| 16 | + github.com/btcsuite/btcd/btcec/v2 v2.3.4 // indirect |
| 17 | + github.com/btcsuite/btcd/btcutil v1.1.6 // indirect |
18 | 18 | github.com/cenkalti/backoff/v4 v4.3.0 // indirect |
19 | 19 | github.com/cockroachdb/apd/v3 v3.2.1 // indirect |
20 | 20 | github.com/davecgh/go-spew v1.1.1 // indirect |
21 | 21 | github.com/decred/dcrd/dcrec/secp256k1/v4 v4.3.0 // indirect |
22 | 22 | github.com/gnolang/overflow v0.0.0-20170615021017-4d914c927216 // indirect |
23 | | - github.com/go-logr/logr v1.4.1 // indirect |
| 23 | + github.com/go-logr/logr v1.4.2 // indirect |
24 | 24 | github.com/go-logr/stdr v1.2.2 // indirect |
25 | | - github.com/gorilla/websocket v1.5.1 // indirect |
26 | | - github.com/grpc-ecosystem/grpc-gateway/v2 v2.20.0 // indirect |
| 25 | + github.com/google/uuid v1.6.0 // indirect |
| 26 | + github.com/gorilla/websocket v1.5.3 // indirect |
| 27 | + github.com/grpc-ecosystem/grpc-gateway/v2 v2.22.0 // indirect |
27 | 28 | github.com/libp2p/go-buffer-pool v0.1.0 // indirect |
28 | 29 | github.com/pmezard/go-difflib v1.0.0 // indirect |
29 | | - github.com/rs/xid v1.5.0 // indirect |
30 | | - go.opentelemetry.io/otel v1.27.0 // indirect |
31 | | - go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetricgrpc v1.25.0 // indirect |
32 | | - go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetrichttp v1.27.0 // indirect |
33 | | - go.opentelemetry.io/otel/metric v1.27.0 // indirect |
34 | | - go.opentelemetry.io/otel/sdk v1.27.0 // indirect |
35 | | - go.opentelemetry.io/otel/sdk/metric v1.27.0 // indirect |
36 | | - go.opentelemetry.io/otel/trace v1.27.0 // indirect |
37 | | - go.opentelemetry.io/proto/otlp v1.2.0 // indirect |
| 30 | + github.com/rs/xid v1.6.0 // indirect |
| 31 | + go.opentelemetry.io/otel v1.29.0 // indirect |
| 32 | + go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetricgrpc v1.29.0 // indirect |
| 33 | + go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetrichttp v1.29.0 // indirect |
| 34 | + go.opentelemetry.io/otel/metric v1.29.0 // indirect |
| 35 | + go.opentelemetry.io/otel/sdk v1.29.0 // indirect |
| 36 | + go.opentelemetry.io/otel/sdk/metric v1.29.0 // indirect |
| 37 | + go.opentelemetry.io/otel/trace v1.29.0 // indirect |
| 38 | + go.opentelemetry.io/proto/otlp v1.3.1 // indirect |
38 | 39 | go.uber.org/multierr v1.11.0 // indirect |
39 | | - golang.org/x/crypto v0.23.0 // indirect |
40 | | - golang.org/x/exp v0.0.0-20240222234643-814bf88cf225 // indirect |
41 | | - golang.org/x/mod v0.16.0 // indirect |
42 | | - golang.org/x/net v0.25.0 // indirect |
43 | | - golang.org/x/sys v0.20.0 // indirect |
44 | | - golang.org/x/text v0.15.0 // indirect |
45 | | - google.golang.org/genproto/googleapis/api v0.0.0-20240520151616-dc85e6b867a5 // indirect |
46 | | - google.golang.org/genproto/googleapis/rpc v0.0.0-20240515191416-fc5f0ca64291 // indirect |
47 | | - google.golang.org/grpc v1.64.0 // indirect |
48 | | - google.golang.org/protobuf v1.34.1 // indirect |
| 40 | + golang.org/x/crypto v0.26.0 // indirect |
| 41 | + golang.org/x/exp v0.0.0-20240613232115-7f521ea00fb8 // indirect |
| 42 | + golang.org/x/mod v0.20.0 // indirect |
| 43 | + golang.org/x/net v0.28.0 // indirect |
| 44 | + golang.org/x/sys v0.24.0 // indirect |
| 45 | + golang.org/x/text v0.17.0 // indirect |
| 46 | + google.golang.org/genproto/googleapis/api v0.0.0-20240822170219-fc7c04adadcd // indirect |
| 47 | + google.golang.org/genproto/googleapis/rpc v0.0.0-20240822170219-fc7c04adadcd // indirect |
| 48 | + google.golang.org/grpc v1.65.0 // indirect |
| 49 | + google.golang.org/protobuf v1.35.1 // indirect |
49 | 50 | gopkg.in/yaml.v3 v3.0.1 // indirect |
50 | 51 | ) |
0 commit comments