depend.ss
#lang scheme/base
;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; NET.plt
;;
;; abstraction of common network behaviors and services
;;
;; Bonzai Lab, LLC.  All rights reserved.
;;
;; Licensed under LGPL.
;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; depend.ss - the dependent modules (along with their versions)
;; yc 7/7/2010 - use bzlib/base:1:6 instead of bzlib/base:1:5 to use the newer
;;    version of the registry.ss
(require (planet bzlib/base:1:6)
         (planet bzlib/parseq:1:2)
         (planet bzlib/port:1:2)
         net/base64
         net/qp
         )
(provide (all-from-out (planet bzlib/base:1:6)
                       (planet bzlib/parseq:1:2)
                       (planet bzlib/port:1:2)
                       net/base64
                       net/qp
                       ))