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