www

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

info.rkt (910B)


      1 #lang info
      2 (define collection "remember")
      3 (define deps '("base"
      4                "rackunit-lib"
      5                "compatibility-lib"
      6                "scribble-lib"
      7                "typed-racket-lib"
      8                "phc-toolkit"
      9                "hyper-literate"))
     10 (define build-deps '("scribble-lib"
     11                      "racket-doc"
     12                      "typed-racket-doc"
     13                      "scribble-enhanced"))
     14 (define scribblings '(("scribblings/remember.scrbl" ())
     15                       ("remember-implementation.hl.rkt" () (omit-start))))
     16 (define compile-omit-paths '("test/test-error.rkt"))
     17 (define test-omit-paths '("test/test-error.rkt"))
     18 (define pkg-desc (string-append "Compile-time memoize across compilations."
     19                                 " Writes values to a file, so that they will"
     20 				" be remembered during the next compilation."))
     21 (define version "0.9")
     22 (define pkg-authors '(|Suzanne Soy|))