Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Python Inject | 422 | 46 | 24 | 2 years ago | 23 | August 17, 2020 | 10 | apache-2.0 | Python | |
Python dependency injection | ||||||||||
Node Tree Sitter | 369 | 116 | 108 | a month ago | 187 | October 26, 2022 | 37 | mit | C++ | |
Node.js bindings for tree-sitter | ||||||||||
Disqus Api Recipes | 271 | 2 years ago | 15 | PHP | ||||||
Cook all the things! | ||||||||||
Zephyr Rust | 162 | 2 months ago | 3 | apache-2.0 | Rust | |||||
API bindings, libstd, and Cargo integration for running Rust applications on a Zephyr kernel | ||||||||||
Discord Webhooks | 147 | 8 days ago | 15 | July 01, 2022 | 9 | apache-2.0 | Java | |||
Provides easy to use bindings for the Discord Webhook API | ||||||||||
Chanl | 145 | 2 years ago | 3 | other | Common Lisp | |||||
Portable channel-based concurrency for Common Lisp | ||||||||||
Croatoan | 136 | 18 days ago | 4 | other | Common Lisp | |||||
Common Lisp bindings for the ncurses terminal library. | ||||||||||
Delphizmq | 111 | 4 years ago | 7 | other | Pascal | |||||
0MQ Delphi binding | ||||||||||
Objc Zmq | 99 | 7 years ago | 3 | mit | C | |||||
Objective-C binding for ZeroMQ. | ||||||||||
Blake3 Py | 87 | 13 | 5 months ago | 13 | January 13, 2022 | 4 | other | Python | ||
Python bindings for the BLAKE3 cryptographic hash function |
To build the package, there is no need to run the configure script. Just use the standard cabal commands:
runhaskell Setup.lhs configure
runhaskell Setup.lhs build
runhaskell Setup.lhs install
The package uses a script to find what BLAS and LAPACK libraries to link with.
To link with a custom BLAS, add the "--with-blas=
runhaskell Setup.lhs configure --configure-option="--with-blas=<lib>"
To build this package from the repository, first run
aclocal -I m4
autoreconf
The thread safety of the library depends on the thread-safety of the underlying LAPACK implementation. You should note that the reference implementation of LAPACK (which is what ATLAS uses) is not thread safe. Any routine which modifies a read-only argument and then restores it is problematic. Potentially dangerous functions which get used in the library include the following: DORMQR, ZUNMQR.