Packages

A drop-in replacement for Enum backed by Rust NIFs. Up to 10x faster sorting, 6x faster uniq, and near-zero memory allocation for integer lists.

Current section

Files

Jump to
f_enum native f_enum_nif Cargo.toml
Raw

native/f_enum_nif/Cargo.toml

[package]
name = "f_enum_nif"
version = "0.1.0"
edition = "2021"
[lib]
name = "f_enum_nif"
path = "src/lib.rs"
crate-type = ["cdylib"]
[dependencies]
rustler = "0.37"
rustc-hash = "2"
itoa = "1"
[profile.release]
opt-level = 3
lto = "fat"
codegen-units = 1
panic = "abort"