String interpolation is merged into cuerdas \o/ and it will be awailable on the up comming 1.0.0 release!
A little example:
(def v 30)
(str/fmt "the value is ~{v}")
;; => "the value is 30"
(str/fmt "the value is ~(inc v)")
;; => "the value is 31"