
The libraries moved were: - mzlib/control => racket/control - mzlib/date => racket/date - mzlib/deflate => file/gzip - mzlib/inflate => file/gunzip - mzlib/port => racket/port - mzlib/process => racket/system - mzlib/runtime-path => racket/runtime-path - mzlib/shared => racket/shared - mzlib/unit => racket/unit - mzlib/unit-exptime => racket/unit-exptime - mzlib/zip => file/zip The old modules in mzlib are now pointers to the new modules. These are all modules that were already redirected in the documentation.
9 lines
233 B
Racket
9 lines
233 B
Racket
#lang racket/base
|
|
|
|
;; deprecated library, see `racket/unit`
|
|
|
|
(require racket/unit
|
|
(submod racket/unit compat))
|
|
(provide (except-out (all-from-out racket/unit) struct/ctc)
|
|
(all-from-out (submod racket/unit compat)))
|