** update pkg deps

This commit is contained in:
ben 2015-12-14 05:44:00 -05:00
parent ad399ef30d
commit a9820bd986
2 changed files with 3 additions and 4 deletions

View File

@ -3,7 +3,7 @@ trivial
[![Build Status](https://travis-ci.org/bennn/trivial.svg)](https://travis-ci.org/bennn/trivial) [![Build Status](https://travis-ci.org/bennn/trivial.svg)](https://travis-ci.org/bennn/trivial)
[![Coverage Status](https://coveralls.io/repos/bennn/trivial/badge.svg?branch=master&service=github)](https://coveralls.io/github/bennn/trivial?branch=master) [![Coverage Status](https://coveralls.io/repos/bennn/trivial/badge.svg?branch=master&service=github)](https://coveralls.io/github/bennn/trivial?branch=master)
This library provides ``smarter'' versions of Typed Racket standard library functions. This library provides "smarter" versions of Typed Racket standard library functions.
For example: For example:
``` ```
@ -13,8 +13,7 @@ For example:
(printf: "hello, ~a") (printf: "hello, ~a")
;; Compiling yields... ;; > raco make test.rkt
;;
;; format:: arity mismatch; ;; format:: arity mismatch;
;; the expected number of arguments does not match the given number ;; the expected number of arguments does not match the given number
;; expected: 1 ;; expected: 1

View File

@ -1,7 +1,7 @@
#lang info #lang info
(define collection 'use-pkg-name) (define collection 'use-pkg-name)
(define deps '("base")) (define deps '("base" "typed-racket-lib"))
(define build-deps '("scribble-lib" "racket-doc" "rackunit-lib")) (define build-deps '("scribble-lib" "racket-doc" "rackunit-lib"))
(define pkg-desc "Strongly-typed macros") (define pkg-desc "Strongly-typed macros")
(define version "0.1") (define version "0.1")