You are here |
adambard.com | ||
| | | |
danielcompton.net
|
|
| | | | 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
|
|
| | | | Clojure-related resources and notes.New to Clojure? Check Clojure for beginners first! | |
| | | |
clojure.org
|
|
| | | | ||
| | | |
jmmv.dev
|
|
| | 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. |