Skip to content

Commit

Permalink
[fix] polymorphic-functions/specializing depends on trivial-garbage
Browse files Browse the repository at this point in the history
  • Loading branch information
digikar99 committed Apr 2, 2024
1 parent ab525f8 commit 9127f1b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion polymorphic-functions-lite.asd
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
(asdf:defsystem "polymorphic-functions-lite"
:license "MIT"
:version "0.5.1" ; beta
:version "0.5.2" ; beta
:author "Shubhamkar Ayare ([email protected])"
:description "Variant of polymorphic-functions with no support for static dispatch. This lets it have minimal dependencies."
:depends-on ("alexandria"
Expand Down
5 changes: 3 additions & 2 deletions polymorphic-functions.asd
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
(asdf:defsystem "polymorphic-functions"
:license "MIT"
:version "0.5.1" ; beta
:version "0.5.2" ; beta
:author "Shubhamkar Ayare ([email protected])"
:description "Type based dispatch for Common Lisp"
:depends-on ("polymorphic-functions-lite"
Expand Down Expand Up @@ -29,7 +29,8 @@
(FIVEAM:RUN! :POLYMORPHIC-FUNCTIONS))")))))

(defsystem "polymorphic-functions/specializing"
:depends-on ("polymorphic-functions")
:depends-on ("polymorphic-functions"
"trivial-garbage")
:description "Defines the polymorphic-functions:specializing macro"
:pathname "src/nonlite/"
:components ((:file "specializing")))
Expand Down

0 comments on commit 9127f1b

Please sign in to comment.