From 07997b1989346ab00b192f40c9479a1306ed94cc Mon Sep 17 00:00:00 2001 From: Hero Bird Date: Thu, 15 Feb 2018 14:56:33 +0100 Subject: [PATCH] add apint to README as another alternative The ApInt crate is a pure rust implementation for arbitrary fixed bitwidth modulo arithmetics of integers with a focus on correctness and efficiency - especially for smaller bit widths. It features a generic signless `ApInt` as well as signed counterparts `Int` (signed int) and `UInt` (unsigned int) that are thin wrappers around it. The implementation is unfinished in some parts but that should be fixed over time. --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 9e9c76f1..bd8ed5dc 100644 --- a/README.md +++ b/README.md @@ -42,9 +42,11 @@ table offers a brief comparison to a few alternatives. | [`ramp`] | Apache-2.0 | nightly | rust and inline assembly | | [`rug`] | LGPL-3.0+ | 1.18 | bundles [GMP] via [`gmp-mpfr-sys`] | | [`rust-gmp`] | MIT | stable? | links to [GMP] | +| [`apint`] | MIT/Apache-2.0 | nightly | pure rust (unfinished) | [GMP]: https://gmplib.org/ [`gmp-mpfr-sys`]: https://crates.io/crates/gmp-mpfr-sys [`rug`]: https://crates.io/crates/rug [`rust-gmp`]: https://crates.io/crates/rust-gmp [`ramp`]: https://crates.io/crates/ramp +[`apint`]: https://crates.io/crates/apint