info.rkt
#lang setup/infotab
(define name "Library of Functional Data Structures in Typed Racket")
(define blurb
  '("A library of purely functional data structures in Typed Racket.
Data structures in the library are based on the book Okasaki's books,
work by Phil Bagwell and others"))
(define primary-file (list "bankers-deque.ss"
                           "bankers-queue.ss"
                           "binaryrandomaccesslist.ss"
                           "skewbinaryrandomaccesslist.ss"
                           "binomialheap.ss"
                           "skewbinomialheap.ss"
                           "bootstrapedheap.ss"
                           "bootstrapedqueue.ss"
                           "catenablelist.ss"
                           "hood-melville-queue.ss"
                           "implicitdeque.ss"
                           "implicitqueue.ss"
                           "lazypairingheap.ss"
                           "pairingheap.ss"
                           "leftistheaps.ss"
                           "physicists-queue.ss"
                           "realtimedeque.ss"
                           "realtimequeue.ss"
                           "redblacktrees.ss"
                           "splayheap.ss"
                           "vlist.ss"
                           "stream.ss"
                           "set.ss"
                           "tries.ss"))
(define categories '(datastructures))
(define can-be-loaded-with 'all)
(define release-notes
  (list '(ul
          (li "Initial release"))))
(define version "1")
(define scribblings '(("functional-data-structures.scrbl" (multi-page))))