Are :dep crates cached? #182
Answered
by
bjorn3
rmccampbell
asked this question in
Q&A
-
When you run :dep in a repl/notebook how are the dependent crates managed? Is it downloaded from scratch every session? Or is it cached somewhere? It seems to take a while to load crates even when they've been loaded in previous repls so I'm guessing the former. It would be nice to cache them in a documented location. |
Beta Was this translation helpful? Give feedback.
Answered by
bjorn3
Jun 19, 2021
Replies: 1 comment 6 replies
-
They are rebuild from scratch every session. The source files are cached by cargo though. What location would you suggest caching compiled dependencies? |
Beta Was this translation helpful? Give feedback.
6 replies
Answer selected by
rmccampbell
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
They are rebuild from scratch every session. The source files are cached by cargo though. What location would you suggest caching compiled dependencies?