Explore >> Select a destination


You are here

adambard.com
| | danielcompton.net
20.2 parsecs away

Travel
| | At work, we have recently converted our projects to the Clojure CLI and deps.edn. There were a few commands from Leiningen that I needed to find an equivalent for when working with dependencies. Download all dependencies Often in a CI environment, you want to download all of the dependencies for a project before building the project. In Leiningen, you can use lein deps to do this. You can use clojure -P to Prepare the project with the Clojure CLI.
| | blog.jakubholy.net
18.3 parsecs away

Travel
| | Clojure-related resources and notes.New to Clojure? Check Clojure for beginners first!
| | clojure.org
14.0 parsecs away

Travel
| |
| | jmmv.dev
185.9 parsecs away

Travel
| Dependency injection is one of my favorite design patterns to develop highly-testable and modular code. Unfortunately, applying this pattern by taking Rust traits as arguments to public functions has unintended consequences on the visibility of private symbols. If you are not careful, most of your crate-internal APIs might need to become public just because you needed to parameterize a function with a trait. Let's look at why this happens and what we can do about it.