tools-deps 2026-08-31

I'm wondering if there is a supported way in tools.deps to calculate a full dependency graph without downloading all deps. I only need the lib names (groupid/name, git lib details) of the calculated dependency tree, not the actual dependencies in this case. It seems`clojure.tool.deps/expand-deps` does something similar, but it's private.

Alex Miller (Clojure team) 2026-08-31T12:09:35.109709Z

No, not currently. I believe I have a ticket for this already

Found it, thank you! https://clojure.atlassian.net/browse/TDEPS-257 As a workaround until that's implemented, I was thinking of perhaps using (a) create-basis or resolve-deps with a redefined (noop) download-libs, or (b) use expand-deps directly.