-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[fix] polymorphic-functions/specializing depends on trivial-garbage
- Loading branch information
Showing
2 changed files
with
4 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
|
@@ -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"))) | ||
|