-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinfo.rkt
53 lines (53 loc) · 2 KB
/
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
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
#lang info
(define collection "phc-thesis")
(define deps '("base"
"rackunit-lib"
("scribble-lib" #:version "1.20")
"typed-racket-lib"))
(define build-deps '("compatibility-lib"
"racket-doc"
"at-exp-lib"
"scribble-enhanced"
"scribble-math"
"phc-toolkit"
"srfi-doc"
"srfi-lite-lib"
"datalog"
"racklog"
"scribble-doc"
"slideshow-doc"
"r5rs-doc"
"r6rs-doc"
"redex-doc"
"turnstile"
"turnstile-doc" ;; was split into a separate package starting from ~racket 7.0 ###REMOVE_BEFORE_7_0###
"extensible-functions"
"zippers"
;; Literate programming dependencies:
;; phc-graph:
"aful"
"delay-pure"
"phc-adt-doc"
"https://github.com/jsmaniac/phc-graph.git#main" ;; "phc-graph"
"stxparse-info"
"subtemplate"
"type-expander"
"typed-racket-doc"
"typed-worklist"
;; phc-adt:
"alexis-util"
"extensible-parser-specifications"
"multi-id"
"remember"
"threading-doc"
"trivial"
"typed-struct-props"
"xlist"
;; remember, multi-id, type-expander:
"auto-syntax-e"
"mutable-match-lambda"
))
(define scribblings '(("scribblings/phc-thesis.scrbl" ())))
(define pkg-desc "Description Here")
(define version "0.0")
(define pkg-authors '(|Suzanne Soy|))