www

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README

info.rkt (829B)


      1 #lang info
      2 (define collection "xlist")
      3 (define deps '("base"
      4                "rackunit-lib"
      5                "mutable-match-lambda"
      6                "scribble-enhanced"
      7                "multi-id"
      8                "type-expander"
      9                "typed-racket-lib"
     10                "typed-racket-more"
     11                "phc-toolkit"
     12                "reprovide-lang"
     13                "match-string"))
     14 (define build-deps '("scribble-lib"
     15                      "racket-doc"
     16                      "typed-racket-doc"
     17                      "scribble-math"))
     18 (define scribblings '(("scribblings/xlist.scrbl" () ("Data Structures"))))
     19 (define pkg-desc
     20   (string-append "Fancy lists, with bounded or unbounded repetition of"
     21                  " elements. Can be used as a type or match pattern."))
     22 (define version "0.9")
     23 (define pkg-authors '(|Suzanne Soy|))