Open antonok-edm opened 1 year ago
Surprisingly, it's extremely difficult to find usable no_std implementations of approximate-membership structures on https://crates.io.
no_std
I've added an on-by-default std feature; when disabled this crate will support no_std.
std
Note that this adds the libm dependency, which is the recommended approach for using methods like std::primitive::f64::{ceil, ln} in no_std contexts.
libm
std::primitive::f64::{ceil, ln}
Surprisingly, it's extremely difficult to find usable
no_std
implementations of approximate-membership structures on https://crates.io.I've added an on-by-default
std
feature; when disabled this crate will supportno_std
.Note that this adds the
libm
dependency, which is the recommended approach for using methods likestd::primitive::f64::{ceil, ln}
inno_std
contexts.