feat: attempt to benchmark another implementation from crates.io

This commit is contained in:
nobody 2025-07-08 18:38:49 -07:00
commit 131d9f3cfe
Signed by: GrocerPublishAgent
GPG key ID: D460CD54A9E3AB86
4 changed files with 300 additions and 8 deletions

View file

@ -9,6 +9,14 @@ rand = "0.8"
log = "0.4"
env_logger = "0.10"
# Target-specific dependencies
[target.'cfg(target_arch = "x86_64")'.dependencies]
# lseq is an implementation from 2018 that uses `rug` for arbitrary precision arithmetic
# It is not a great implementation because it requires building libgmp. Also it requires GPL libraries
# I learned that it might be desirable to change that crate to use https://github.com/cmpute/dashu/blob/HEAD/README.md
# which is a pure rust port of GNU GMP + MPFR
lseq = "0.1"
[dev-dependencies]
criterion = "0.5"