Skip to content

Commit

Permalink
chore: Update Rust dependencies and Dependabot configuration (#1009)
Browse files Browse the repository at this point in the history
- Updated Dependabot configuration
- Upgraded various package versions including `generic-array`, `itertools`, and `rustyline-derive`
  • Loading branch information
huitseeker authored Jan 3, 2024
1 parent f53cff4 commit 3f7f653
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 6 deletions.
4 changes: 4 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@ updates:
rust-dependencies:
patterns:
- "*"
update-types:
- "minor"
- "patch"

open-pull-requests-limit: 5

- package-ecosystem: "github-actions"
Expand Down
12 changes: 6 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@ config = "0.13.3"
dashmap = "5.5.0"
ff = { workspace = true }
fxhash = "0.2.1"
generic-array = "0.14.7"
generic-array = "1.0"
hex = { version = "0.4.3", features = ["serde"] }
indexmap = { version = "2.1.0", features = ["rayon", "serde"] }
itertools = "0.11"
itertools = "0.12"
lurk-macros = { version = "0.2.0", path = "lurk-macros" }
lurk-metrics = { version = "0.2.0", path = "lurk-metrics" }
metrics = { workspace = true }
Expand All @@ -48,7 +48,7 @@ rand = { workspace = true }
rand_core = { version = "0.6.4", default-features = false }
rand_xorshift = "0.3.0"
rayon = "1.7.0"
rustyline-derive = "0.9.0"
rustyline-derive = "0.10"
serde = { workspace = true, features = ["derive"] }
serde_bytes = "0.11.12"
serde_json = { workspace = true }
Expand Down Expand Up @@ -76,7 +76,7 @@ pasta-msm = { workspace = true }
proptest = { workspace = true }
proptest-derive = { workspace = true }
rand = "0.8.5"
rustyline = { version = "11.0", features = [
rustyline = { version = "13.0", features = [
"derive",
"with-file-history",
], default-features = false }
Expand All @@ -85,7 +85,7 @@ halo2curves = { version = "0.5.0", features = ["bits", "derive_serde"] }

[target.'cfg(target_arch = "wasm32")'.dependencies]
getrandom = { version = "0.2", features = ["js"] }
rustyline = { version = "11.0", features = ["derive"], default-features = false }
rustyline = { version = "13.0", features = ["derive"], default-features = false }
halo2curves = { version = "0.5.0", default-features = false, features = ["bits", "derive_serde"] }

[features]
Expand Down Expand Up @@ -136,7 +136,7 @@ pasta_curves = { git = "https://github.com/lurk-lab/pasta_curves", branch = "dev
pasta-msm = { git = "https://github.com/lurk-lab/pasta-msm", branch = "dev" }
grumpkin-msm = { git = "https://github.com/lurk-lab/grumpkin-msm", branch = "dev", features = ["dont-implement-sort"] }
proptest = "1.2.0"
proptest-derive = "0.3.0"
proptest-derive = "0.3"
rand = "0.8"
serde = "1.0"
serde_json = { version = "1.0" }
Expand Down

1 comment on commit 3f7f653

@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
125.78 GB RAM
Workflow run: https://github.com/lurk-lab/lurk-rs/actions/runs/7398880969

Benchmark Results

LEM Fibonacci Prove - rc = 100

fib-ref=f53cff437a30c7bd5274584e2193b70652857473 fib-ref=3f7f653e6c1313de7495e3aee224ec856a85e765
num-100 2.37 s (✅ 1.00x) 2.37 s (✅ 1.00x slower)
num-200 4.63 s (✅ 1.00x) 4.64 s (✅ 1.00x slower)

LEM Fibonacci Prove - rc = 600

fib-ref=f53cff437a30c7bd5274584e2193b70652857473 fib-ref=3f7f653e6c1313de7495e3aee224ec856a85e765
num-100 1.97 s (✅ 1.00x) 1.98 s (✅ 1.00x slower)
num-200 4.48 s (✅ 1.00x) 4.49 s (✅ 1.00x slower)

Made with criterion-table

Please sign in to comment.