how to work-around this "deprecation" error (return address of field of struct?)
Jacob Carlborg
doob at me.com
Tue Aug 25 12:42:24 UTC 2020
On Tuesday, 25 August 2020 at 00:13:40 UTC, mw wrote:
> Any easy way to find the offending package?
You can run `dub describe` in the root directory of your project.
It outputs all information about your project and its
dependencies as JSON. For example, it includes all source files.
If you use the `jq` command you can easily filter the JSON to
exactly what you're looking for. Perhaps something like this:
```
dub describe | jq '.packages[] | .name, .files'
```
The above command will list all dependencies and their source
files.
--
/Jacob Carlborg
More information about the Digitalmars-d
mailing list