racket/pkgs/base/info.rkt
Matthew Flatt 08ca76b741 extend {read,peek}-char-or-special
Support an external implementation of `read-syntax` by exposing
functionality that is currently internal to `read-syntax`: a srcloc
argument to a "special"-producing port function and wrapping special
results to reliably distinguish them from characters.
2017-01-13 08:09:18 -08:00

25 lines
751 B
Racket

#lang info
;; The "base" package exists mainly as a way to declare dependencies
;; on the current Racket core. If the core gets smaller in the
;; future, then "base" can have new dependencies to cover things
;; moved out of the core, while a new "base2" package can represent
;; the new, smaller core.
;; The "base" package also depends on "racket-lib", which ensures that
;; any native libraries needed for a platform are installed along with
;; practically any package installation.
(define collection 'multi)
(define version "6.8.0.2")
(define deps `("racket-lib"
["racket" #:version ,version]))
(define implies '(core))
(define pkg-desc "Racket libraries that are currently always available")
(define pkg-authors '(mflatt))