From dae07aec894d6aa456aca8ad5675b9cd26fa21ce Mon Sep 17 00:00:00 2001 From: Vincent St-Amour Date: Mon, 7 Sep 2015 18:27:52 -0500 Subject: [PATCH] Fix deps. --- 2d-lib/info.rkt | 4 +++- 2d-test/info.rkt | 6 +++++- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/2d-lib/info.rkt b/2d-lib/info.rkt index 7de5637..16b0afc 100644 --- a/2d-lib/info.rkt +++ b/2d-lib/info.rkt @@ -2,6 +2,8 @@ (define collection "2d") (define version "1.0") -(define deps '("base")) +(define deps '("base" + "scribble-lib" + "syntax-color-lib")) (define pkg-desc "Implementation (no documentation) part of \"2d\"") (define pkg-authors '(robby)) diff --git a/2d-test/info.rkt b/2d-test/info.rkt index 4bb8c44..bd71d55 100644 --- a/2d-test/info.rkt +++ b/2d-test/info.rkt @@ -3,6 +3,10 @@ (define collection "2d") (define version "1.0") (define deps '("base" "2d-lib")) -(define build-deps '("rackunit-lib" "unstable-options-lib")) +(define build-deps '("rackunit-lib" + "unstable-options-lib" + "at-exp-lib" + "gui-lib" + "syntax-color-lib")) (define pkg-desc "tests for \"2d\"") (define pkg-authors '(robby))