Skip to content

Commit a369b30

Browse files
Merge pull request #830 from lightninglabs/docs-taproot-assets
Update taproot-assets documentation
2 parents 01f6bde + 5384f1d commit a369b30

File tree

3 files changed

+272
-161
lines changed

3 files changed

+272
-161
lines changed

docs/taproot-assets/examples/basic-price-oracle/go.mod

Lines changed: 16 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@ replace (
1313
require (
1414
github.com/lightninglabs/taproot-assets v0.5.0-rc1
1515
github.com/sirupsen/logrus v1.9.3
16-
google.golang.org/grpc v1.59.0
16+
google.golang.org/grpc v1.64.1
1717
)
1818

1919
require (
2020
dario.cat/mergo v1.0.1 // indirect
2121
github.com/Azure/go-ansiterm v0.0.0-20230124172434-306776ec8161 // indirect
22-
github.com/Microsoft/go-winio v0.6.1 // indirect
22+
github.com/Microsoft/go-winio v0.6.2 // indirect
2323
github.com/Nvveen/Gotty v0.0.0-20120604004816-cd527374f1e5 // indirect
2424
github.com/aead/chacha20 v0.0.0-20180709150244-8b13a72661da // indirect
2525
github.com/aead/siphash v1.0.1 // indirect
@@ -51,9 +51,10 @@ require (
5151
github.com/decred/dcrd/lru v1.1.2 // indirect
5252
github.com/docker/cli v28.0.1+incompatible // indirect
5353
github.com/docker/docker v28.0.1+incompatible // indirect
54-
github.com/docker/go-connections v0.4.0 // indirect
54+
github.com/docker/go-connections v0.5.0 // indirect
5555
github.com/docker/go-units v0.5.0 // indirect
5656
github.com/dustin/go-humanize v1.0.1 // indirect
57+
github.com/felixge/httpsnoop v1.0.4 // indirect
5758
github.com/fergusstrange/embedded-postgres v1.25.0 // indirect
5859
github.com/go-errors/errors v1.0.1 // indirect
5960
github.com/go-logr/logr v1.4.2 // indirect
@@ -71,7 +72,7 @@ require (
7172
github.com/grpc-ecosystem/go-grpc-middleware v1.4.0 // indirect
7273
github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0 // indirect
7374
github.com/grpc-ecosystem/grpc-gateway v1.16.0 // indirect
74-
github.com/grpc-ecosystem/grpc-gateway/v2 v2.16.0 // indirect
75+
github.com/grpc-ecosystem/grpc-gateway/v2 v2.20.0 // indirect
7576
github.com/hashicorp/errwrap v1.1.0 // indirect
7677
github.com/hashicorp/go-multierror v1.1.1 // indirect
7778
github.com/jackc/chunkreader/v2 v2.0.1 // indirect
@@ -120,7 +121,7 @@ require (
120121
github.com/modern-go/reflect2 v1.0.2 // indirect
121122
github.com/ncruces/go-strftime v0.1.9 // indirect
122123
github.com/opencontainers/go-digest v1.0.0 // indirect
123-
github.com/opencontainers/image-spec v1.0.2 // indirect
124+
github.com/opencontainers/image-spec v1.1.0 // indirect
124125
github.com/opencontainers/runc v1.2.0 // indirect
125126
github.com/ory/dockertest/v3 v3.10.0 // indirect
126127
github.com/pkg/errors v0.9.1 // indirect
@@ -151,31 +152,31 @@ require (
151152
go.etcd.io/etcd/raft/v3 v3.5.12 // indirect
152153
go.etcd.io/etcd/server/v3 v3.5.12 // indirect
153154
go.opentelemetry.io/auto/sdk v1.1.0 // indirect
154-
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.46.1 // indirect
155+
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.49.0 // indirect
155156
go.opentelemetry.io/otel v1.35.0 // indirect
156-
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.20.0 // indirect
157+
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.29.0 // indirect
157158
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.20.0 // indirect
158159
go.opentelemetry.io/otel/metric v1.35.0 // indirect
159160
go.opentelemetry.io/otel/sdk v1.35.0 // indirect
160161
go.opentelemetry.io/otel/trace v1.35.0 // indirect
161-
go.opentelemetry.io/proto/otlp v1.0.0 // indirect
162+
go.opentelemetry.io/proto/otlp v1.3.1 // indirect
162163
go.uber.org/atomic v1.10.0 // indirect
163164
go.uber.org/multierr v1.6.0 // indirect
164165
go.uber.org/zap v1.23.0 // indirect
165166
golang.org/x/crypto v0.36.0 // indirect
166167
golang.org/x/exp v0.0.0-20240325151524-a685a6edb6d8 // indirect
167-
golang.org/x/mod v0.17.0 // indirect
168+
golang.org/x/mod v0.21.0 // indirect
168169
golang.org/x/net v0.38.0 // indirect
169170
golang.org/x/sync v0.12.0 // indirect
170171
golang.org/x/sys v0.31.0 // indirect
171172
golang.org/x/term v0.30.0 // indirect
172173
golang.org/x/text v0.23.0 // indirect
173-
golang.org/x/time v0.3.0 // indirect
174-
golang.org/x/tools v0.21.1-0.20240508182429-e35e4ccd0d2d // indirect
175-
google.golang.org/genproto v0.0.0-20231016165738-49dd2c1f3d0b // indirect
176-
google.golang.org/genproto/googleapis/api v0.0.0-20231016165738-49dd2c1f3d0b // indirect
177-
google.golang.org/genproto/googleapis/rpc v0.0.0-20231030173426-d783a09b4405 // indirect
178-
google.golang.org/protobuf v1.33.0 // indirect
174+
golang.org/x/time v0.5.0 // indirect
175+
golang.org/x/tools v0.24.0 // indirect
176+
google.golang.org/genproto v0.0.0-20240213162025-012b6fc9bca9 // indirect
177+
google.golang.org/genproto/googleapis/api v0.0.0-20240513163218-0867130af1f8 // indirect
178+
google.golang.org/genproto/googleapis/rpc v0.0.0-20240513163218-0867130af1f8 // indirect
179+
google.golang.org/protobuf v1.34.2 // indirect
179180
gopkg.in/errgo.v1 v1.0.1 // indirect
180181
gopkg.in/macaroon-bakery.v2 v2.1.0 // indirect
181182
gopkg.in/macaroon.v2 v2.1.0 // indirect

0 commit comments

Comments
 (0)