-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathweb3.asd
29 lines (27 loc) · 848 Bytes
/
web3.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
#|
This file is a part of web3 project.
Copyright (c) 2018 Nisen ([email protected])
|#
#|
Author: Nisen ([email protected])
|#
(defsystem "web3"
:version "0.1.0"
:author "Nisen"
:license ""
:depends-on (#:alexandria
#:cl-json
#:drakma
#:flexi-streams
#:iolib)
:components ((:file "package")
(:file "src/providers/base" :depends-on ("package"))
(:file "src/providers/http" :depends-on ("package" "src/providers/base"))
(:file "src/providers/ipc" :depends-on ("package" "src/providers/base"))
(:file "src/web3" :depends-on ("package"))
)
:description ""
:long-description
#.(read-file-string
(subpathname *load-pathname* "README.md"))
:in-order-to ((test-op (test-op "web3-test"))))