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 Chris Okasaki's book,
Purely Functional Data Structures and
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"
                           "leftistheap.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 "Some data structures are more optimized and the library has an
improved documentation"))))
(define version "1.2")
(define scribblings '(("functional-data-structures.scrbl" (multi-page))))