-
Notifications
You must be signed in to change notification settings - Fork 0
/
apis.asd
59 lines (54 loc) · 2.69 KB
/
apis.asd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
;;;; ***********************************************************************
;;;;
;;;; Name: apis.asd
;;;; Project: the apis message-passing system
;;;; Purpose: system definition
;;;; Author: mikel evins
;;;; Copyright: 2024 by mikel evins
;;;;
;;;; ***********************************************************************
(in-package :cl-user)
(require :asdf)
;;; ---------------------------------------------------------------------
;;; apis system
;;; ---------------------------------------------------------------------
;;;; apis.asd
(asdf:defsystem #:apis
:serial t
:description "Apis: swarms of threads and processes passing messages"
:author "mikel evins <[email protected]>"
:license "Apache 2.0"
:version (:read-file-form "version.lisp")
:depends-on (
:cl-base64 ; [BSD] https://github.com/darabi/cl-base64
:cl-store ; [BSD] https://github.com/skypher/cl-store
:closer-mop ; [MIT] https://github.com/pcostanza/closer-mop
:flexi-streams ; [BSD] https://github.com/edicl/flexi-streams
:ip-interfaces ; [LLGPL] https://github.com/elliottslaughter/ip-interfaces
:ironclad ; [BSD] https://github.com/sharplispers/ironclad
:local-time ; [MIT] https://github.com/dlowe-net/local-time?tab=License-1-ov-file#readme
:net.bardcode.ksuid ; [Apache 2.0] https://github.com/mikelevins/net.bardcode.ksuid
:net.bardcode.literals ; [Apache 2.0] https://github.com/mikelevins/net.bardcode.literals
:net.bardcode.nodeid ; [Apache 2.0] https://github.com/mikelevins/net.bardcode.nodeid
:net.bardcode.singleton ; [Apache 2.0] https://github.com/mikelevins/net.bardcode.singleton
:osicat ; [MIT] https://github.com/osicat/osicat
:queues ; [MIT] https://github.com/oconnore/queues
:queues.simple-cqueue ; [MIT] https://github.com/oconnore/queues
:usocket ; [MIT] https://github.com/usocket/usocket
)
:components ((:module "src"
:serial t
:components ((:file "package")
(:file "parameters")
(:file "utils")
(:file "ip-addresses")
(:file "delivery-address")
(:file "message")
(:file "logger")
(:file "dead-messages")
(:file "worker")
(:file "send-receive")
(:file "relayer")
))))
;;; (asdf:load-system :apis)
;;; (ql:quickload :apis)