changelog shortlog graph tags branches changeset files revisions annotate raw help

Mercurial > core / lisp/ffi/rustls/rustls.asd

changeset 685: ebe3315b7add
parent: b1f78dffbcdd
author: Richard Westhaver <ellis@rwest.io>
date: Sun, 29 Sep 2024 22:44:52 -0400
permissions: -rw-r--r--
description: evdev/kbd fully operational, rustls and blake3 cleanups
1 ;;; rustls.asd --- RUSTLS FFI bindings
2 
3 ;;
4 
5 ;;; Commentary:
6 
7 ;;
8 
9 ;;; Code:
10 (defsystem :rustls
11  :depends-on (:std)
12  :components ((:file "pkg")
13  (:file "types")
14  (:file "rustls"))
15  :in-order-to ((test-op (test-op "rustls/tests"))))
16 
17 (defsystem :rustls/tests
18  :depends-on (:rt :rustls)
19  :components ((:file "tests"))
20  :perform (test-op (op c) (uiop:symbol-call :rt :do-tests :rustls)))