Skip to content

Commit

Permalink
chore: Refactor dependencies in Cargo.toml (#1090)
Browse files Browse the repository at this point in the history
- Removes several dependencies from Cargo.toml including `ahash`, `metrics`, and `memmap`.
- Fixes #1073.
  • Loading branch information
huitseeker authored Feb 3, 2024
1 parent e20f00a commit d82def2
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ license.workspace = true
rust-version = "1.72" # allows msrv verify to work in CI

[dependencies]
ahash = "0.8.6"
anyhow = { workspace = true }
base32ct = { version = "0.2.0", features = ["std"] }
base-x = "0.2.11"
Expand All @@ -30,7 +29,6 @@ indexmap = { version = "2.1.0", features = ["rayon", "serde"] }
itertools = "0.12"
lurk-macros = { version = "0.2.0", path = "lurk-macros" }
lurk-metrics = { version = "0.2.0", path = "lurk-metrics" }
metrics = { workspace = true }
neptune = { workspace = true, features = ["arity2", "arity4", "arity8", "arity16", "pasta"] }
nom = "7.1.3"
nom_locate = "4.1.0"
Expand Down Expand Up @@ -71,7 +69,7 @@ arc-swap = "1.6.0"
halo2curves = { version = "0.6.0", features = ["bits", "derive_serde"] }

[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
memmap = { version = "0.5.10", package = "memmap2" }
pprof = { version = "0.13", optional = true} # only used in tests, under feature "flamegraph"
proptest = { workspace = true }
proptest-derive = { workspace = true }
rand = "0.8.5"
Expand All @@ -92,7 +90,6 @@ ascii_table = "4.0.2"
criterion = "0.5"
expect-test = "1.4.1"
hex = "0.4.3"
pprof = { version = "0.13" }
statrs = "0.16.0"
structopt = { version = "0.3", default-features = false }
tap = "1.0.1"
Expand Down

1 comment on commit d82def2

@github-actions
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Benchmarks

Table of Contents

Overview

This benchmark report shows the Fibonacci GPU benchmark.
NVIDIA L4
Intel(R) Xeon(R) CPU @ 2.20GHz
32 vCPUs
125 GB RAM
Workflow run: https://github.com/lurk-lab/lurk-rs/actions/runs/7768501234

Benchmark Results

LEM Fibonacci Prove - rc = 100

ref=e20f00a2b006df429d63913a0411ebf775de8365 ref=d82def24cea3573d8a0f30bc53eed01763697274
num-100 1.72 s (✅ 1.00x) 1.72 s (✅ 1.00x slower)
num-200 3.33 s (✅ 1.00x) 3.32 s (✅ 1.00x faster)

LEM Fibonacci Prove - rc = 600

ref=e20f00a2b006df429d63913a0411ebf775de8365 ref=d82def24cea3573d8a0f30bc53eed01763697274
num-100 2.06 s (✅ 1.00x) 2.06 s (✅ 1.00x slower)
num-200 3.40 s (✅ 1.00x) 3.39 s (✅ 1.00x faster)

Made with criterion-table

Please sign in to comment.