diff options
| author | 2024-12-26 21:06:10 -0500 | |
|---|---|---|
| committer | 2024-12-26 21:06:10 -0500 | |
| commit | 0c174277206b925555e336a98e4377f1ec771ed6 (patch) | |
| tree | ec6ddcdef9fa90b88113c551a0e2fd377115a63c /container-iterator.egg | |
| parent | use records as exceptions (diff) | |
chicken egg
Diffstat (limited to 'container-iterator.egg')
| -rw-r--r-- | container-iterator.egg | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/container-iterator.egg b/container-iterator.egg new file mode 100644 index 0000000..e1ba9c7 --- /dev/null +++ b/container-iterator.egg @@ -0,0 +1,19 @@ +((author "Peter McGoron") + (version "0.1.0") + (synopsis "Generic iterators over ordered containers") + (category "data") + (license "Apache-2.0") + (dependencies "r7rs") + (test-dependencies "srfi-64") + (components (extension mcgoron.iterator.exceptions + (source "mcgoron.iterator.exceptions.sld") + (csc-options "-R" "r7rs" "-X" "r7rs")) + (extension mcgoron.iterator.base + (source "mcgoron.iterator.base.sld") + (component-dependencies mcgoron.iterator.exceptions) + (csc-options "-R" "r7rs" "-X" "r7rs")) + (extension mcgoron.iterator.string + (source "mcgoron.iterator.string.sld") + (component-dependencies mcgoron.iterator.base + mcgoron.iterator.exceptions) + (csc-options "-R" "r7rs" "-X" "r7rs")))) |
