Commit dc502f4
committed
Merge #697: plan: make LoggerAssetProvider constructible
c79639d clippy: fix doc indentation (Andrew Poelstra)
b39b707 plan: make LoggerAssetProvider constructible (Andrew Poelstra)
Pull request description:
It looks like we have an example AssetProvider that is intended to be used for testing/debugging. It looks useful but evidently has never been used because it was impossible to construct.
Recent versions of rust nightly notice this and output a warning about this, which is causing CI to fail, so we need to fix it.
My solution is to make the inner `Assets` public (and also a reference, since there is no need to take ownership) so that people can easily construct and deconstruct the type.
ACKs for top commit:
tcharding:
ACK c79639d
sanket1729:
ACK c79639d
Tree-SHA512: c19e00c88f79edd7b99632470b556385a36ba59112d8015222321581f87d0110f155fc725bfc05187201fc7a3845998427887852d09bda0e20354570de4b7e8e2 files changed
+3
-3
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
344 | 344 | | |
345 | 345 | | |
346 | 346 | | |
347 | | - | |
| 347 | + | |
348 | 348 | | |
349 | 349 | | |
350 | 350 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
108 | 108 | | |
109 | 109 | | |
110 | 110 | | |
111 | | - | |
| 111 | + | |
112 | 112 | | |
113 | 113 | | |
114 | 114 | | |
| |||
123 | 123 | | |
124 | 124 | | |
125 | 125 | | |
126 | | - | |
| 126 | + | |
127 | 127 | | |
128 | 128 | | |
129 | 129 | | |
| |||
0 commit comments