Link to cljdoc instead of codox documentation

This commit is contained in:
Joshua Suskalo 2024-11-22 10:22:40 -05:00
parent 7700f3f5e6
commit f7037b7a67
No known key found for this signature in database
GPG key ID: 9B6BA586EFF1B9F0

View file

@ -1,5 +1,6 @@
# coffi
[![Clojars Project](https://img.shields.io/clojars/v/org.suskalo/coffi.svg)](https://clojars.org/org.suskalo/coffi)
[![cljdoc badge](https://cljdoc.org/badge/org.suskalo/coffi)](https://cljdoc.org/d/org.suskalo/coffi)
Coffi is a foreign function interface library for Clojure, using the [Foreign
Function & Memory API](https://openjdk.org/jeps/454) in JDK 22 and later. This
@ -11,8 +12,8 @@ doesn't remove the ability to write systems which minimize the cost of
marshaling data and optimize for performance, to make use of the low-level
access the FF&M API gives us.
- [Getting Started](https://igjoshua.github.io/coffi/01-Getting-Started.html)
- [API Documentation](https://igjoshua.github.io/coffi/)
- [Getting Started](https://cljdoc.org/d/org.suskalo/coffi/CURRENT/doc/getting-started)
- [API Documentation](https://cljdoc.org/d/org.suskalo/coffi)
- [Recent Changes](CHANGELOG.md)
## Installation