From 9abb1927eed62b5e701e87bd0f7078d117d0d9b7 Mon Sep 17 00:00:00 2001 From: Vincent St-Amour Date: Fri, 17 Jul 2015 15:31:29 -0500 Subject: [PATCH] Replace uses of unstable/hash with racket/hash. --- typed-racket-lib/info.rkt | 1 - typed-racket-lib/typed-racket/infer/infer-unit.rkt | 4 ++-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/typed-racket-lib/info.rkt b/typed-racket-lib/info.rkt index 9234fd48..6d516da6 100644 --- a/typed-racket-lib/info.rkt +++ b/typed-racket-lib/info.rkt @@ -5,7 +5,6 @@ (define deps '(("base" #:version "6.2.0.2") "pconvert-lib" "unstable-contract-lib" - "unstable-list-lib" "source-syntax" "compatibility-lib" ;; to assign types "string-constants-lib")) diff --git a/typed-racket-lib/typed-racket/infer/infer-unit.rkt b/typed-racket-lib/typed-racket/infer/infer-unit.rkt index eff97b4e..d6896dc4 100644 --- a/typed-racket-lib/typed-racket/infer/infer-unit.rkt +++ b/typed-racket-lib/typed-racket/infer/infer-unit.rkt @@ -25,8 +25,8 @@ (for-syntax racket/base syntax/parse) - unstable/sequence unstable/hash - racket/list) + unstable/sequence + racket/hash racket/list) (import dmap^ constraints^) (export infer^)