Skip to content

belltoy/crc32c-erl

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

crc32c

An Erlang NIF library written in Rust with hardware accelerated CRC32C instructions with software fallback. Read crc32c crate for more information.

To compile the NIF in Erlang:

Add the following lines to your rebar.config file:

{plugins, [rebar3_rustler]}.

{cargo_opts, [
    {src_dir, "native/crc32c"}
]}.

{provider_hooks, [
    {pre, [
        {compile, {cargo, build}}
    ]},
    {post, [
        {clean, {cargo, clean}},
        {eunit, {cargo, test}}
    ]}
]}.

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors