Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/antoinegagne/crypt3
https://github.com/antoinegagne/crypt3
Last synced: 11 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/antoinegagne/crypt3
- Owner: AntoineGagne
- License: other
- Created: 2020-11-06T20:44:28.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2020-11-15T23:19:15.000Z (about 4 years ago)
- Last Synced: 2024-10-24T23:29:39.229Z (about 2 months ago)
- Language: Erlang
- Size: 14.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# crypt3
A NIF that interfaces with [`crypt(3)`](https://www.man7.org/linux/man-pages/man3/crypt.3.html).
This library is still under development and should _not_ be used in a production system.
## Dependencies
* [OTP 21+](https://www.erlang.org/)
* [`rebar3`](https://www.rebar3.org/)
* [Rust](https://www.rust-lang.org/)## Development
### Building
To compile this library, the following command can be used:
```sh
rebar3 compile
```### Running Checks
To run all the checks, it is possible to use the `check` alias:
```sh
rebar3 check
```This will run all the tests (`eunit`, Common Tests and `proper` tests) along
with `elvis`, `xref`, `dialyzer`, `edoc` and code coverage.### Running Interactively
To run the library inside an interactive Erlang shell, the following command
may be used:```sh
rebar3 shell
```## Licensing
This software is licensed under the BSD3 license.