URI: 
       usocket-server.asd - clic - Clic is an command line interactive client for gopher written in Common LISP
  HTML git clone git://bitreich.org/clic/ git://enlrupgkhuxnvlhsf6lc3fziv5h2hhfrinws65d7roiv6bfj7d652fid.onion/clic/
   DIR Log
   DIR Files
   DIR Refs
   DIR Tags
   DIR README
   DIR LICENSE
       ---
       usocket-server.asd (411B)
       ---
            1 ;;;; -*- Mode: Lisp -*-
            2 ;;;;
            3 ;;;; See the LICENSE file for licensing information.
            4 
            5 (in-package :asdf)
            6 
            7 (defsystem usocket-server
            8     :name "usocket (server)"
            9     :author "Chun Tian (binghe)"
           10     :version (:read-file-form "version.sexp")
           11     :licence "MIT"
           12     :description "Universal socket library for Common Lisp (server side)"
           13     :depends-on (:usocket :bordeaux-threads)
           14     :components ((:file "server")))