brcode 1.4.2

Crate to parse and emit BR Codes
Documentation
1
2
3
4
5
6
7
8
9
10
11
(defproject clj-brcode "1.1.0-SNAPSHOT"
  :description "Clojure wrapper of Rust's `brcode` parser and emitter"
  :url "http:https://github.com/naomijub/brcode"
  :license {:name "LGPL-3.0"
            :url "https://www.eclipse.org/legal/epl-2.0/"}
  :dependencies [[org.clojure/clojure "1.10.1"]
                 [com.github.jnr/jnr-ffi "2.1.16"]]
  :main ^:skip-aot clj-brcode.core
  :target-path "target/%s"
  :profiles {:uberjar {:aot :all
                       :jvm-opts ["-Dclojure.compiler.direct-linking=true"]}})