From 73549a5c90c42337d27d7d222546e997a69974e8 Mon Sep 17 00:00:00 2001 From: Simon Brooke Date: Fri, 31 Oct 2025 13:53:54 +0000 Subject: [PATCH] Added dependency on peco, for tokenisation. --- project.clj | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/project.clj b/project.clj index 8349b55..68c9eda 100644 --- a/project.clj +++ b/project.clj @@ -1,9 +1,9 @@ -(defproject elboob "0.1.0-SNAPSHOT" +(defproject cc.journeyman/elboob "0.1.0-SNAPSHOT" :description "FIXME: write description" :url "http://example.com/FIXME" :license {:name "EPL-2.0 OR GPL-2.0-or-later WITH Classpath-exception-2.0" :url "https://www.eclipse.org/legal/epl-2.0/"} :dependencies [[org.clojure/clojure "1.11.1"] [peco "0.1.6"]] - :repl-options {:init-ns elboob.core} + :repl-options {:init-ns cc.journeyman.elboob.core} :source-paths ["src/clj"])