-
Is there an elegant way to access the source files of all cargo dependencies? There is In my case I'm looking for a way to include e.g. all |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hi @basbebe ! Technically it is possible to crawl the entire contents of the vendor directories and access crate sources that way, but I'm afraid there's no elegant ways that I know of (even outside of the Nix sandbox). If your dependency licenses are all you are interested in, I'd recommend taking a look at something like cargo deny or cargo license. Hope this helps! |
Beta Was this translation helpful? Give feedback.
Hi @basbebe ! Technically it is possible to crawl the entire contents of the vendor directories and access crate sources that way, but I'm afraid there's no elegant ways that I know of (even outside of the Nix sandbox).
If your dependency licenses are all you are interested in, I'd recommend taking a look at something like cargo deny or cargo license. Hope this helps!