info.rkt
#lang setup/infotab

(define name "Diff")
(define blurb
  (list "This package provides a simple diff-like capabity in Racket. This "
        "includes diffs of arbitrary lists or of text files. It also includes "
        "an implementation of the longest common subsequence (LCS) algorithm, "
        "which is the basis of the diff algorithm."))
(define scribblings '(("diff.scrbl" ())))
(define categories '(devtools io))
(define primary-file "diff.rkt")
(define release-notes
  (list "Initial release of the diff package."))
(define url "http://schematics.sourceforge.net/")
(define repositories '("4.x"))
(define required-core-version "5.0")