Skip to content

Commit

Permalink
chore(deps): update rustyline requirement from 13.0 to 14.0 (#1212)
Browse files Browse the repository at this point in the history
Updates the requirements on [rustyline](https://github.com/kkawakam/rustyline) to permit the latest version.
- [Release notes](https://github.com/kkawakam/rustyline/releases)
- [Changelog](https://github.com/kkawakam/rustyline/blob/master/History.md)
- [Commits](kkawakam/rustyline@v13.0.0...v14.0.0)

---
updated-dependencies:
- dependency-name: rustyline
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
dependabot[bot] authored Mar 12, 2024
1 parent 7a2f3b2 commit e4bc325
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -77,15 +77,15 @@ pprof = { version = "0.13", optional = true} # only used in tests, under feature
proptest = { workspace = true }
proptest-derive = { workspace = true }
rand = "0.8.5"
rustyline = { version = "13.0", features = [
rustyline = { version = "14.0", features = [
"derive",
"with-file-history",
], default-features = false }
home = "0.5.5"

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

[dev-dependencies]
assert_cmd = "2.0.12"
Expand Down
2 changes: 1 addition & 1 deletion chain-server/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ halo2curves = { version = "0.6.0", features = ["bits", "derive_serde"] }
nova = { git = "https://github.com/lurk-lab/arecibo", branch = "dev", package = "arecibo", features = ["abomonate"]}
once_cell = "1.18.0"
prost = "0.12"
rustyline = "13.0"
rustyline = "14.0"
serde = "1.0"
tokio = { version = "1.0", features = ["macros", "rt-multi-thread"] }
tonic = "0.11"
Expand Down

1 comment on commit e4bc325

@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/8241700864

Benchmark Results

LEM Fibonacci Prove - rc = 100

ref=7a2f3b2c096e6bb20e054ec797ef3f7632e168ca ref=e4bc325367c2ea9e4f70ec2bef63cfc7f41a2f29
num-100 1.45 s (✅ 1.00x) 1.46 s (✅ 1.00x slower)
num-200 2.77 s (✅ 1.00x) 2.77 s (✅ 1.00x slower)

LEM Fibonacci Prove - rc = 600

ref=7a2f3b2c096e6bb20e054ec797ef3f7632e168ca ref=e4bc325367c2ea9e4f70ec2bef63cfc7f41a2f29
num-100 1.85 s (✅ 1.00x) 1.85 s (✅ 1.00x faster)
num-200 3.06 s (✅ 1.00x) 3.05 s (✅ 1.00x faster)

Made with criterion-table

Please sign in to comment.