├── .clj-kondo ├── babashka │ └── fs │ │ └── config.edn ├── http-kit │ └── http-kit │ │ ├── config.edn │ │ └── httpkit │ │ └── with_channel.clj └── rewrite-clj │ └── rewrite-clj │ └── config.edn ├── .dir-locals.el ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── LICENSE ├── README.md ├── bb.edn ├── deps.edn ├── pom.xml ├── src └── deps_bin │ ├── deps_bin.clj │ └── impl │ └── bin.clj └── test ├── deps_bin └── impl │ └── bin_test.clj └── test-jar ├── bb.edn ├── java └── TestJar.java └── testjar.jar /.clj-kondo/babashka/fs/config.edn: -------------------------------------------------------------------------------- 1 | {:lint-as {babashka.fs/with-temp-dir clojure.core/let}} 2 | -------------------------------------------------------------------------------- /.clj-kondo/http-kit/http-kit/config.edn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericdallo/deps-bin/HEAD/.clj-kondo/http-kit/http-kit/config.edn -------------------------------------------------------------------------------- /.clj-kondo/http-kit/http-kit/httpkit/with_channel.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericdallo/deps-bin/HEAD/.clj-kondo/http-kit/http-kit/httpkit/with_channel.clj -------------------------------------------------------------------------------- /.clj-kondo/rewrite-clj/rewrite-clj/config.edn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericdallo/deps-bin/HEAD/.clj-kondo/rewrite-clj/rewrite-clj/config.edn -------------------------------------------------------------------------------- /.dir-locals.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericdallo/deps-bin/HEAD/.dir-locals.el -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericdallo/deps-bin/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericdallo/deps-bin/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericdallo/deps-bin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericdallo/deps-bin/HEAD/README.md -------------------------------------------------------------------------------- /bb.edn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericdallo/deps-bin/HEAD/bb.edn -------------------------------------------------------------------------------- /deps.edn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericdallo/deps-bin/HEAD/deps.edn -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericdallo/deps-bin/HEAD/pom.xml -------------------------------------------------------------------------------- /src/deps_bin/deps_bin.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericdallo/deps-bin/HEAD/src/deps_bin/deps_bin.clj -------------------------------------------------------------------------------- /src/deps_bin/impl/bin.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericdallo/deps-bin/HEAD/src/deps_bin/impl/bin.clj -------------------------------------------------------------------------------- /test/deps_bin/impl/bin_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericdallo/deps-bin/HEAD/test/deps_bin/impl/bin_test.clj -------------------------------------------------------------------------------- /test/test-jar/bb.edn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericdallo/deps-bin/HEAD/test/test-jar/bb.edn -------------------------------------------------------------------------------- /test/test-jar/java/TestJar.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericdallo/deps-bin/HEAD/test/test-jar/java/TestJar.java -------------------------------------------------------------------------------- /test/test-jar/testjar.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ericdallo/deps-bin/HEAD/test/test-jar/testjar.jar --------------------------------------------------------------------------------