switch from lein to deps

This commit is contained in:
sorrel 2024-04-04 11:28:48 -04:00
parent 41233ce7cc
commit 20f56f44ff
3 changed files with 4 additions and 7 deletions

1
.gitignore vendored
View file

@ -12,3 +12,4 @@ pom.xml.asc
.hgignore
.hg/
**/**.**~
.cpcache/**

3
deps.edn Normal file
View file

@ -0,0 +1,3 @@
{:paths [:clj-paths]
:aliases
{:clj-paths ["src" "src/prop_net"]}}

View file

@ -1,7 +0,0 @@
(defproject prop-net "0.1.0-SNAPSHOT"
:description "propagation network implementation in Clojure"
:url "https://sorrel.dev/structured/prop-net"
:license {:name ""
:url ""}
:dependencies [[org.clojure/clojure "1.11.1"]]
:repl-options {:init-ns prop-net.core})