Miikka Koskinen
Miikka Koskinen
Wow, that's an old dependency. As a workaround, you can add an explicit dependency on `jackson-databind` and I think it should work. ```clojure [com.fasterxml.jackson.core/jackson-databind "2.9.9"] ``` The version of jackson-databind...
Yeah, I think that should work. scjsv is only needed for the `compojure.api.validator` namespace so as long as you use that only in tests, it should be fine.
I'm thinking of moving the 2.0 guides + some other content from the wiki to cljdoc articles and calling this done. The 1.x content and some of the more obscure...
I suspect this has something to do with `compojure.api.coercion.spec/Specify` wrapping the spec into a spec record with `spec-tools.core/create-spec`, but I'm not sure why that would cause problems.
Milestone: https://github.com/metosin/compojure-api/issues?q=is%3Aopen+is%3Aissue+milestone%3A2.0.0
This is caused by a bug in spec-tools: https://github.com/metosin/spec-tools/issues/178
It seems that CircleCI integration has, once again, broken. Ah well.
Let's re-open. I'm using the `do doo ... once, doo ... auto` workaround as well.
> [I also was starting to play around with something like this](https://github.com/launchbadge/sqlx/compare/main...syphar:sqlx:sql-performance-span), but this breaks you try to _use_ it because `EnteredSpan` is not `Send`. Hmm, how does it break?...
I see - I had only tried this with the SQLite driver which does not use `TryAsyncStream`, but the Postgres driver does. Tricky! I'm pretty new to Rust, so I'm...