A Common Lisp implementation of the Apache Avro data serialization system.
The public api is exported through the cl-avro and cl-avro/asdf packages:
to output their documentation, run (documentation (find-package 'cl-avro) t)
or (documentation (find-package 'cl-avro/asdf) t).
Tests can be run either through a lisp repl or docker.
(ql:quickload 'cl-avro/test)
(asdf:test-system 'cl-avro)docker build . -f ./test/Dockerfile.test -t cl-avro:v1
docker run -it --rm cl-avro:v1